[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1261344092-30700-1-git-send-email-a.beregalov@gmail.com>
Date: Mon, 21 Dec 2009 00:21:32 +0300
From: Alexander Beregalov <a.beregalov@...il.com>
To: viro@...iv.linux.org.uk, arnd@...db.de
Cc: linux-kernel@...r.kernel.org,
Alexander Beregalov <a.beregalov@...il.com>
Subject: [PATCH] fs/compat_ioctl.c: fix build error when !BLOCK
Fix this build error when CONFIG_BLOCK is not set.
fs/compat_ioctl.c:1604: error: 'SG_SET_TRANSFORM' undeclared
Signed-off-by: Alexander Beregalov <a.beregalov@...il.com>
---
fs/compat_ioctl.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c
index 14cbc83..e4d4765 100644
--- a/fs/compat_ioctl.c
+++ b/fs/compat_ioctl.c
@@ -1600,8 +1600,10 @@ static long do_ioctl_trans(int fd, unsigned int cmd,
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:
--
1.6.6.rc3
--
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