]> git.proxmox.com Git - mirror_zfs.git/commitdiff
Fix typos in commit b83e3e48c9b183a80dd00eb6c7431a1cbc7d89c9
authorDHE <git@dehacked.net>
Wed, 20 Nov 2013 00:00:43 +0000 (19:00 -0500)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 20 Nov 2013 23:24:39 +0000 (15:24 -0800)
There's a missing semicolon and equals sign in the first hunk of this
commit in config/kernel-bdi.m4. This results in the test always
failing. The effects were noticed when rrdtool, a tool which modifies
files by mmap() and msync(), would have data never get saved to disk
in spite of the files working while the mounted filesystem remains
mounted.

Signed-off-by: DHE <git@dehacked.net>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Richard Yao <ryao@gentoo.org>
Closes #1889

config/kernel-bdi.m4

index aec7b734788879efc51d74f885bc8d89cdcba4bb..00bd37539cbee7452d67900b2d961157e202b8f8 100644 (file)
@@ -8,9 +8,9 @@ AC_DEFUN([ZFS_AC_KERNEL_BDI], [
                #include <linux/fs.h>
 
                static const struct super_block
-                   sb __attribute__ ((unused)) {
+                   sb __attribute__ ((unused)) {
                        .s_bdi = NULL,
-               }
+               };
        ],[
        ],[
                AC_MSG_RESULT(yes)