* [PATCH] fuse: Fix build error
@ 2009-07-11 1:06 Larry Finger
0 siblings, 0 replies; only message in thread
From: Larry Finger @ 2009-07-11 1:06 UTC (permalink / raw)
To: miklos, Linus Torvalds; +Cc: LKML
[-- Attachment #1: Type: text/plain, Size: 2018 bytes --]
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@lwfinger.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>
[-- Attachment #2: fix_fuse_build --]
[-- Type: text/plain, Size: 651 bytes --]
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>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-07-11 1:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-11 1:06 [PATCH] fuse: Fix build error Larry Finger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®