diff options
author | Steve French <sfrench@us.ibm.com> | 2006-09-23 18:11:07 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-09-23 18:11:07 -0400 |
commit | 0889a9441d98af7951c5377647413d79c84c9efa (patch) | |
tree | 7ded3cbb833750a3a34bd29846cebf0a6e5a070f /fs/cifs/cifsfs.c | |
parent | 3eeab61aa3ddd3c0bedb7449ada1599de22fdb5a (diff) |
CIFS: Use SEEK_END instead of hardcoded value
Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index c3ef1c0d0e68..f5ba41132488 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
@@ -508,7 +508,7 @@ static ssize_t cifs_file_aio_write(struct kiocb *iocb, const char __user *buf, | |||
508 | static loff_t cifs_llseek(struct file *file, loff_t offset, int origin) | 508 | static loff_t cifs_llseek(struct file *file, loff_t offset, int origin) |
509 | { | 509 | { |
510 | /* origin == SEEK_END => we must revalidate the cached file length */ | 510 | /* origin == SEEK_END => we must revalidate the cached file length */ |
511 | if (origin == 2) { | 511 | if (origin == SEEK_END) { |
512 | int retval = cifs_revalidate(file->f_dentry); | 512 | int retval = cifs_revalidate(file->f_dentry); |
513 | if (retval < 0) | 513 | if (retval < 0) |
514 | return (loff_t)retval; | 514 | return (loff_t)retval; |