diff options
author | Trond Myklebust | 2010-08-01 19:40:40 +0200 |
---|---|---|
committer | Linus Torvalds | 2010-08-02 00:10:01 +0200 |
commit | 77a63f3d1e0a3e7ede8d10f569e8481b13ff47c5 (patch) | |
tree | f08c0c2dab44348919ec296254c3cc39d34e9f85 /include/linux | |
parent | Merge master.kernel.org:/home/rmk/linux-2.6-arm (diff) | |
download | kernel-qcow2-linux-77a63f3d1e0a3e7ede8d10f569e8481b13ff47c5.tar.gz kernel-qcow2-linux-77a63f3d1e0a3e7ede8d10f569e8481b13ff47c5.tar.xz kernel-qcow2-linux-77a63f3d1e0a3e7ede8d10f569e8481b13ff47c5.zip |
NFS: Fix a typo in include/linux/nfs_fs.h
nfs_commit_inode() needs to be defined irrespectively of whether or not
we are supporting NFSv3 and NFSv4.
Allow the compiler to optimise away code in the NFSv2-only case by
converting it into an inlined stub function.
Reported-and-tested-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/nfs_fs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h index f6e2455f13d1..bad4d121b16e 100644 --- a/include/linux/nfs_fs.h +++ b/include/linux/nfs_fs.h @@ -496,6 +496,12 @@ extern int nfs_wb_page_cancel(struct inode *inode, struct page* page); extern int nfs_commit_inode(struct inode *, int); extern struct nfs_write_data *nfs_commitdata_alloc(void); extern void nfs_commit_free(struct nfs_write_data *wdata); +#else +static inline int +nfs_commit_inode(struct inode *inode, int how) +{ + return 0; +} #endif static inline int |