Hi Eric, Today's linux-next merge of the fsnotify tree got a conflict in include/linux/fs.h between commit 6d125529c6cbfe570ce3bf9a0728548f087499da ("Fix ACC_MODE() for real") from the vfs tree and commit 8b006ddbcdc223f1053ab98dfa5460cd4ecd27b9 ("vfs: introduce FMODE_NONOTIFY") from the fsnotify tree. Just context changes. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc include/linux/fs.h index 416b8bd,d6190a8..0000000 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@@ -2461,8 -2460,9 +2459,9 @@@ int proc_nr_files(struct ctl_table *tab int __init get_filesystem_list(char *buf); -#define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE]) +#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE]) - #define OPEN_FMODE(flag) ((__force fmode_t)((flag + 1) & O_ACCMODE)) + #define OPEN_FMODE(flag) ((__force fmode_t)(((flag + 1) & O_ACCMODE) | \ + (flag & FMODE_NONOTIFY))) #endif /* __KERNEL__ */ #endif /* _LINUX_FS_H */ -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html