aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic/fcntl.h
diff options
context:
space:
mode:
authorSigned-off-by: Wu Fengguang <fengguang.wu@intel.com>2010-02-08 12:31:29 -0500
committerEric Paris <eparis@redhat.com>2010-07-28 09:58:54 -0400
commit12ed2e36c98aec6c41559222e311f4aa15d254b6 (patch)
tree0fa2fd70e4b3f6a7315d037d27fde94641c5f204 /include/asm-generic/fcntl.h
parentvfs: introduce FMODE_NONOTIFY (diff)
downloadlinux-dev-12ed2e36c98aec6c41559222e311f4aa15d254b6.tar.xz
linux-dev-12ed2e36c98aec6c41559222e311f4aa15d254b6.zip
fanotify: FMODE_NONOTIFY and __O_SYNC in sparc conflict
sparc used the same value as FMODE_NONOTIFY so change FMODE_NONOTIFY to be something unique. Signed-off-by: Wu Fengguang <fengguang.wu@intel.com> Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'include/asm-generic/fcntl.h')
-rw-r--r--include/asm-generic/fcntl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/fcntl.h b/include/asm-generic/fcntl.h
index 009bd6149d99..e3cbc38bdcc2 100644
--- a/include/asm-generic/fcntl.h
+++ b/include/asm-generic/fcntl.h
@@ -5,7 +5,7 @@
/*
* FMODE_EXEC is 0x20
- * FMODE_NONOTIFY is 0x800000
+ * FMODE_NONOTIFY is 0x1000000
* These cannot be used by userspace O_* until internal and external open
* flags are split.
* -Eric Paris