[<prev] [next>] [day] [month] [year] [list]
Message-ID: <4A57E5A2.8060907@lwfinger.net>
Date: Fri, 10 Jul 2009 20:06:42 -0500
From: Larry Finger <Larry.Finger@...inger.net>
To: miklos@...redi.hu, Linus Torvalds <torvalds@...ux-foundation.org>
CC: LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH] fuse: Fix build error
When building v2.6.31-rc2-344-g69ca06c, the following build errors are
found due to missing includes:
CC [M] fs/fuse/dev.o
fs/fuse/dev.c: In function ‘request_end’:
fs/fuse/dev.c:289: error: ‘BLK_RW_SYNC’ undeclared (first use in this
function)
fs/fuse/dev.c:289: error: (Each undeclared identifier is reported only
once
fs/fuse/dev.c:289: error: for each function it appears in.)
fs/fuse/dev.c:290: error: ‘BLK_RW_ASYNC’ undeclared (first use in this
function)
fs/fuse/dev.c: In function ‘fuse_request_send_nowait_locked’:
fs/fuse/dev.c:417: error: ‘BLK_RW_SYNC’ undeclared (first use in this
function)
fs/fuse/dev.c:418: error: ‘BLK_RW_ASYNC’ undeclared (first use in this
function)
make[2]: *** [fs/fuse/dev.o] Error 1
fs/nfs/write.c: In function ‘nfs_set_page_writeback’:
fs/nfs/write.c:207: error: ‘BLK_RW_ASYNC’ undeclared (first use in
this function)
fs/nfs/write.c:207: error: (Each undeclared identifier is reported
only once
fs/nfs/write.c:207: error: for each function it appears in.)
fs/nfs/write.c: In function ‘nfs_end_page_writeback’:
fs/nfs/write.c:220: error: ‘BLK_RW_ASYNC’ undeclared (first use in
this function)
CC lib/dump_stack.o
make[2]: *** [fs/nfs/write.o] Error 1
Signed-off-by: Larry Finger@...inger.net>
---
fuse/dev.c | 1 +
nfs/write.c | 1 +
2 files changed, 2 insertions(+)
Index: linux-2.6/fs/fuse/dev.c
===================================================================
--- linux-2.6.orig/fs/fuse/dev.c
+++ linux-2.6/fs/fuse/dev.c
@@ -16,6 +16,7 @@
#include <linux/pagemap.h>
#include <linux/file.h>
#include <linux/slab.h>
+#include <linux/blkdev.h>
MODULE_ALIAS_MISCDEV(FUSE_MINOR);
Index: linux-2.6/fs/nfs/write.c
===================================================================
--- linux-2.6.orig/fs/nfs/write.c
+++ linux-2.6/fs/nfs/write.c
@@ -19,6 +19,7 @@
#include <linux/nfs_mount.h>
#include <linux/nfs_page.h>
#include <linux/backing-dev.h>
+#include <linux/blkdev.h>
#include <asm/uaccess.h>
View attachment "fix_fuse_build" of type "text/plain" (651 bytes)
Powered by blists - more mailing lists