aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJosef 'Jeff' Sipek <jeffpc@josefsipek.net>2006-09-16 21:09:32 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2006-09-22 23:25:04 -0400
commitaec5e175288c711cbe44750276f61efa3fa3d370 (patch)
treeb793c3da94887f25e26b6627959a8bb5cb3b10dc /fs
parentNFSv4: When mounting with a port=0 argument, substitute port=2049 (diff)
downloadlinux-dev-aec5e175288c711cbe44750276f61efa3fa3d370.tar.xz
linux-dev-aec5e175288c711cbe44750276f61efa3fa3d370.zip
NFS: Use SEEK_END instead of hardcoded value
Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfs/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/file.c b/fs/nfs/file.c
index a146ed338534..be997d649127 100644
--- a/fs/nfs/file.c
+++ b/fs/nfs/file.c
@@ -157,7 +157,7 @@ force_reval:
static loff_t nfs_file_llseek(struct file *filp, loff_t offset, int origin)
{
/* origin == SEEK_END => we must revalidate the cached file length */
- if (origin == 2) {
+ if (origin == SEEK_END) {
struct inode *inode = filp->f_mapping->host;
int retval = nfs_revalidate_file_size(inode, filp);
if (retval < 0)