summaryrefslogtreecommitdiff
path: root/fs/nfs/write.c
diff options
context:
space:
mode:
authorLarry Finger <Larry.Finger@lwfinger.net>2009-07-11 01:06:42 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2009-07-11 02:09:46 (GMT)
commit097041e576ee3a50d92dd643ee8ca65bf6a62e21 (patch)
tree103bb259744701fb702015d539ecb4fe12a0fb83 /fs/nfs/write.c
parent69ca06c9454169c4a9303e8834adae9080f94859 (diff)
downloadlinux-fsl-qoriq-097041e576ee3a50d92dd643ee8ca65bf6a62e21.tar.xz
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/nfs/write.c: In function ‘nfs_set_page_writeback’: fs/nfs/write.c:207: error: ‘BLK_RW_ASYNC’ undeclared (first use in this function) Signed-off-by: Larry Finger@lwfinger.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/nfs/write.c')
-rw-r--r--fs/nfs/write.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c
index 0a0a2ff..35d8131 100644
--- a/fs/nfs/write.c
+++ b/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>