lkml.org 
[lkml]   [2009]   [Jul]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patches in this message
/
Date
From
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@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>


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>
\
 
 \ /
  Last update: 2009-07-11 03:09    [W:0.044 / U:0.408 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site