From bc5f8c6ef39f190528f111992c6d3a2b273fd960 Mon Sep 17 00:00:00 2001 From: DHE Date: Tue, 19 Nov 2013 19:00:43 -0500 Subject: [PATCH] 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 Signed-off-by: Brian Behlendorf Signed-off-by: Richard Yao Closes #1889 --- config/kernel-bdi.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/kernel-bdi.m4 b/config/kernel-bdi.m4 index aec7b7347888..00bd37539cbe 100644 --- a/config/kernel-bdi.m4 +++ b/config/kernel-bdi.m4 @@ -8,9 +8,9 @@ AC_DEFUN([ZFS_AC_KERNEL_BDI], [ #include static const struct super_block - sb __attribute__ ((unused)) { + sb __attribute__ ((unused)) = { .s_bdi = NULL, - } + }; ],[ ],[ AC_MSG_RESULT(yes)