The patch titled Subject: vfs: discard ATTR_ATTR_FLAG has been added to the -mm tree. Its filename is vfs-discard-attr_attr_flag.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/vfs-discard-attr_attr_flag.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/vfs-discard-attr_attr_flag.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: NeilBrown <neilb@xxxxxxxx> Subject: vfs: discard ATTR_ATTR_FLAG This flag was introduce in 2.1.37pre1 and the only place it was tested was removed in 2.1.43pre1. The flag was never set. Let's discard it properly. Link: http://lkml.kernel.org/r/877en0hewz.fsf@xxxxxxxxxxxxxxxxxxxxxxxx Signed-off-by: NeilBrown <neilb@xxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/hostfs/hostfs.h | 2 +- include/linux/fs.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff -puN fs/hostfs/hostfs.h~vfs-discard-attr_attr_flag fs/hostfs/hostfs.h --- a/fs/hostfs/hostfs.h~vfs-discard-attr_attr_flag +++ a/fs/hostfs/hostfs.h @@ -19,7 +19,7 @@ #define HOSTFS_ATTR_ATIME_SET 128 #define HOSTFS_ATTR_MTIME_SET 256 -/* These two are unused by hostfs. */ +/* This one is unused by hostfs. */ #define HOSTFS_ATTR_FORCE 512 /* Not a change, but a change it */ #define HOSTFS_ATTR_ATTR_FLAG 1024 diff -puN include/linux/fs.h~vfs-discard-attr_attr_flag include/linux/fs.h --- a/include/linux/fs.h~vfs-discard-attr_attr_flag +++ a/include/linux/fs.h @@ -178,7 +178,6 @@ typedef int (dio_iodone_t)(struct kiocb #define ATTR_ATIME_SET (1 << 7) #define ATTR_MTIME_SET (1 << 8) #define ATTR_FORCE (1 << 9) /* Not a change, but a change it */ -#define ATTR_ATTR_FLAG (1 << 10) #define ATTR_KILL_SUID (1 << 11) #define ATTR_KILL_SGID (1 << 12) #define ATTR_FILE (1 << 13) _ Patches currently in -mm which might be from neilb@xxxxxxxx are vfs-discard-attr_attr_flag.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