[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <4cdee5980dad9980ec8f.1158455371@turing.ams.sunysb.edu>
Date: Sat, 16 Sep 2006 21:09:31 -0400
From: "Josef 'Jeff' Sipek" <jeffpc@...efsipek.net>
To: linux-kernel@...r.kernel.org
Cc: xfs-masters@....sgi.com, akpm@...l.org, dhowells@...hat.com
Subject: [PATCH 5 of 11] XFS: Use SEEK_{SET, CUR,
END} instead of hardcoded values
XFS: Use SEEK_{SET,CUR,END} instead of hardcoded values
Signed-off-by: Josef 'Jeff' Sipek <jeffpc@...efsipek.net>
--
diff -r e2fae9fe7a30 -r 4cdee5980dad fs/xfs/xfs_vnodeops.c
--- a/fs/xfs/xfs_vnodeops.c Sat Sep 16 21:00:45 2006 -0400
+++ b/fs/xfs/xfs_vnodeops.c Sat Sep 16 21:00:45 2006 -0400
@@ -4510,12 +4510,12 @@ xfs_change_file_space(
xfs_iunlock(ip, XFS_ILOCK_SHARED);
switch (bf->l_whence) {
- case 0: /*SEEK_SET*/
+ case SEEK_SET:
break;
- case 1: /*SEEK_CUR*/
+ case SEEK_CUR:
bf->l_start += offset;
break;
- case 2: /*SEEK_END*/
+ case SEEK_END:
bf->l_start += ip->i_d.di_size;
break;
default:
-
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