The patch titled FDPIC: Define SEEK_* constants in the Linux kernel headers has been added to the -mm tree. Its filename is fdpic-define-seek_-constants-in-the-linux-kernel-headers.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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 files 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 lockdep-add-more-rwsemh-documentation.patch vfs-documentation-tweak.patch git-gfs2.patch binfmt_elf-consistently-use-loff_t.patch fdpic-fix-fdpic-compile-errors-2.patch frv-fix-frv-arch-compile-errors.patch nommu-fix-execution-off-of-ramfs-with-mmap.patch fdpic-adjust-the-elf-fdpic-driver-to-conform-more-to-the-codingstyle.patch fdpic-define-seek_-constants-in-the-linux-kernel-headers.patch fdpic-add-coredump-capability-for-the-elf-fdpic-binfmt.patch frv-introduce-asm-offsets-for-frv-arch.patch ecryptfs-get_sb_dev-fix.patch reiser4-get_sb_dev-fix.patch mutex-subsystem-synchro-test-module.patch frv-fix-frv-arch-compile-errors-4.patch nommu-fix-execution-off-of-ramfs-with-mmap-4.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