aboutsummaryrefslogtreecommitdiffstats
path: root/config/kernel-bdi.m4
diff options
context:
space:
mode:
authorDHE <[email protected]>2013-11-19 19:00:43 -0500
committerBrian Behlendorf <[email protected]>2013-11-20 15:24:39 -0800
commitfd2366300025ef7b836d80d629bd505c10693b4f (patch)
tree0c109d338578a722ece4e6666eabcf242075f245 /config/kernel-bdi.m4
parent64ad2b26e24ae9f70d3a41c786144552c2e6ac12 (diff)
Fix typos in commit b83e3e48c9b183a80dd00eb6c7431a1cbc7d89c9
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 <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Signed-off-by: Richard Yao <[email protected]> Closes #1889
Diffstat (limited to 'config/kernel-bdi.m4')
-rw-r--r--config/kernel-bdi.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/config/kernel-bdi.m4 b/config/kernel-bdi.m4
index aec7b7347..00bd37539 100644
--- a/config/kernel-bdi.m4
+++ b/config/kernel-bdi.m4
@@ -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)