[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <e2fae9fe7a30bec6e6c2.1158455370@turing.ams.sunysb.edu>
Date: Sat, 16 Sep 2006 21:09:30 -0400
From: "Josef 'Jeff' Sipek" <jeffpc@...efsipek.net>
To: linux-kernel@...r.kernel.org
Cc: sfrench@...ba.org, akpm@...l.org, dhowells@...hat.com
Subject: [PATCH 4 of 11] CIFS: Use SEEK_END instead of hardcoded value
CIFS: Use SEEK_END instead of hardcoded value
Signed-off-by: Josef 'Jeff' Sipek <jeffpc@...efsipek.net>
--
diff -r 7d3e8ba1ace3 -r e2fae9fe7a30 fs/cifs/cifsfs.c
--- a/fs/cifs/cifsfs.c Sat Sep 16 21:00:45 2006 -0400
+++ b/fs/cifs/cifsfs.c Sat Sep 16 21:00:45 2006 -0400
@@ -510,7 +510,7 @@ static loff_t cifs_llseek(struct file *f
static loff_t cifs_llseek(struct file *file, loff_t offset, int origin)
{
/* origin == SEEK_END => we must revalidate the cached file length */
- if (origin == 2) {
+ if (origin == SEEK_END) {
int retval = cifs_revalidate(file->f_dentry);
if (retval < 0)
return (loff_t)retval;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists