diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-08-01 13:40:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-01 18:10:01 -0400 |
commit | 77a63f3d1e0a3e7ede8d10f569e8481b13ff47c5 (patch) | |
tree | f08c0c2dab44348919ec296254c3cc39d34e9f85 /fs/nfs | |
parent | a63ecd835f075b21d7d5cef9580447f5fbb36263 (diff) |
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 'fs/nfs')
-rw-r--r-- | fs/nfs/write.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index bb72ad34d51d..9f81bdd91c55 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c | |||
@@ -1454,11 +1454,6 @@ out_mark_dirty: | |||
1454 | return ret; | 1454 | return ret; |
1455 | } | 1455 | } |
1456 | #else | 1456 | #else |
1457 | int nfs_commit_inode(struct inode *inode, int how) | ||
1458 | { | ||
1459 | return 0; | ||
1460 | } | ||
1461 | |||
1462 | static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc) | 1457 | static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc) |
1463 | { | 1458 | { |
1464 | return 0; | 1459 | return 0; |