[PATCH -next] block: blk-iopoll sysctl iff CONFIG_BLOCK

From: Randy Dunlap
Date: Fri Aug 07 2009 - 14:17:52 EST


From: Randy Dunlap <randy.dunlap@xxxxxxxxxx>

New block-iopoll sysctl should be surrounded by CONFIG_BLOCK to
prevent build error:

kernel/built-in.o:(.data+0x2990): undefined reference to `blk_iopoll_enabled'

Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx>
---
kernel/sysctl.c | 2 ++
1 file changed, 2 insertions(+)

--- linux-next-20090807.orig/kernel/sysctl.c
+++ linux-next-20090807/kernel/sysctl.c
@@ -990,6 +990,7 @@ static struct ctl_table kern_table[] = {
.proc_handler = &proc_dointvec,
},
#endif
+#ifdef CONFIG_BLOCK
{
.ctl_name = CTL_UNNUMBERED,
.procname = "blk_iopoll",
@@ -998,6 +999,7 @@ static struct ctl_table kern_table[] = {
.mode = 0644,
.proc_handler = &proc_dointvec,
},
+#endif
/*
* NOTE: do not add new entries to this table unless you have read
* Documentation/sysctl/ctl_unnumbered.txt


---
~Randy
LPC 2009, Sept. 23-25, Portland, Oregon
http://linuxplumbersconf.org/2009/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/