浏览代码

fanotify: Fix FAN_CLOSE comments

The comments for FAN_CLOSE_WRITE and FAN_CLOSE_NOWRITE do not match
FS_CLOSE_WRITE and FS_CLOSE_NOWRITE, respectively.  WRITE is for
writable files while NOWRITE is for non-writable files.

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Eric Paris <eparis@redhat.com>
Stefan Hajnoczi 14 年之前
父节点
当前提交
50e4a98914
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      include/linux/fanotify.h

+ 2 - 2
include/linux/fanotify.h

@@ -6,8 +6,8 @@
 /* the following events that user-space can register for */
 /* the following events that user-space can register for */
 #define FAN_ACCESS		0x00000001	/* File was accessed */
 #define FAN_ACCESS		0x00000001	/* File was accessed */
 #define FAN_MODIFY		0x00000002	/* File was modified */
 #define FAN_MODIFY		0x00000002	/* File was modified */
-#define FAN_CLOSE_WRITE		0x00000008	/* Unwrittable file closed */
-#define FAN_CLOSE_NOWRITE	0x00000010	/* Writtable file closed */
+#define FAN_CLOSE_WRITE		0x00000008	/* Writtable file closed */
+#define FAN_CLOSE_NOWRITE	0x00000010	/* Unwrittable file closed */
 #define FAN_OPEN		0x00000020	/* File was opened */
 #define FAN_OPEN		0x00000020	/* File was opened */
 
 
 #define FAN_Q_OVERFLOW		0x00004000	/* Event queued overflowed */
 #define FAN_Q_OVERFLOW		0x00004000	/* Event queued overflowed */