The patch titled FDPIC: Define SEEK_* constants in the Linux kernel headers has been removed from the -mm tree. Its filename is fdpic-define-seek_-constants-in-the-linux-kernel-headers.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: FDPIC: Define SEEK_* constants in the Linux kernel headers From: David Howells <dhowells@xxxxxxxxxx> Add definitions for SEEK_SET, SEEK_CUR and SEEK_END to the kernel header files. Signed-off-by: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/fs.h | 4 ++++ 1 file changed, 4 insertions(+) diff -puN include/linux/fs.h~fdpic-define-seek_-constants-in-the-linux-kernel-headers include/linux/fs.h --- a/include/linux/fs.h~fdpic-define-seek_-constants-in-the-linux-kernel-headers +++ a/include/linux/fs.h @@ -27,6 +27,10 @@ #define BLOCK_SIZE_BITS 10 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS) +#define SEEK_SET 0 /* seek relative to beginning of file */ +#define SEEK_CUR 1 /* seek relative to current file position */ +#define SEEK_END 2 /* seek relative to end of file */ + /* And dynamically-tunable limits and defaults: */ struct files_stat_struct { int nr_files; /* read only */ _ Patches currently in -mm which might be from dhowells@xxxxxxxxxx are origin.patch git-gfs2.patch binfmt_elf-consistently-use-loff_t.patch nommu-export-two-symbols-for-drivers-to-use.patch ecryptfs-get_sb_dev-fix.patch reiser4-get_sb_dev-fix.patch mutex-subsystem-synchro-test-module.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