The patch titled VFS: Use SEEK_{SET, CUR, END} instead of hardcoded values has been added to the -mm tree. Its filename is vfs-use-seek_set-cur.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: VFS: Use SEEK_{SET, CUR, END} instead of hardcoded values From: "Josef 'Jeff' Sipek" <jeffpc@xxxxxxxxxxxxxx> VFS: Use SEEK_{SET,CUR,END} instead of hardcoded values Signed-off-by: Josef 'Jeff' Sipek <jeffpc@xxxxxxxxxxxxxx> Cc: Trond Myklebust <trond.myklebust@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/locks.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff -puN fs/locks.c~vfs-use-seek_set-cur fs/locks.c --- a/fs/locks.c~vfs-use-seek_set-cur +++ a/fs/locks.c @@ -314,13 +314,13 @@ static int flock_to_posix_lock(struct fi off_t start, end; switch (l->l_whence) { - case 0: /*SEEK_SET*/ + case SEEK_SET: start = 0; break; - case 1: /*SEEK_CUR*/ + case SEEK_CUR: start = filp->f_pos; break; - case 2: /*SEEK_END*/ + case SEEK_END: start = i_size_read(filp->f_dentry->d_inode); break; default: @@ -364,13 +364,13 @@ static int flock64_to_posix_lock(struct loff_t start; switch (l->l_whence) { - case 0: /*SEEK_SET*/ + case SEEK_SET: start = 0; break; - case 1: /*SEEK_CUR*/ + case SEEK_CUR: start = filp->f_pos; break; - case 2: /*SEEK_END*/ + case SEEK_END: start = i_size_read(filp->f_dentry->d_inode); break; default: _ Patches currently in -mm which might be from jeffpc@xxxxxxxxxxxxxx are mbcs-use-seek_set-cur.patch eicon-isdn-removed-unused-definitions-for-os_seek_.patch cifs-use-seek_end-instead-of-hardcoded-value.patch nfs-use-seek_end-instead-of-hardcoded-value.patch vfs-use-seek_set-cur.patch sound-core-use-seek_set-cur.patch opl4-use-seek_set-cur.patch gus-use-seek_set-cur.patch mixart-use-seek_set-cur.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html