[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20091214091005.b4df65d9.randy.dunlap@oracle.com>
Date: Mon, 14 Dec 2009 09:10:05 -0800
From: Randy Dunlap <randy.dunlap@...cle.com>
To: Stephen Rothwell <sfr@...b.auug.org.au>,
Arnd Bergmann <arnd@...db.de>
Cc: linux-next@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH -next] fs: fix compat_ioctl build for CONFIG_BLOCK=n
From: Randy Dunlap <randy.dunlap@...cle.com>
Fix build failure when CONFIG_BLOCK=n:
fs/compat_ioctl.c:1604: error: 'SG_SET_TRANSFORM' undeclared
Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
---
fs/compat_ioctl.c | 2 ++
1 file changed, 2 insertions(+)
--- linux-next-20091214.orig/fs/compat_ioctl.c
+++ linux-next-20091214/fs/compat_ioctl.c
@@ -1600,8 +1600,10 @@ static long do_ioctl_trans(int fd, unsig
case KDSKBMETA:
case KDSKBLED:
case KDSETLED:
+#ifdef CONFIG_BLOCK
/* SG stuff */
case SG_SET_TRANSFORM:
+#endif
/* AUTOFS */
case AUTOFS_IOC_READY:
case AUTOFS_IOC_FAIL:
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists