aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h33
1 files changed, 17 insertions, 16 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index d8721e818b45..527b9e482f99 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -320,22 +320,23 @@ typedef void (dio_iodone_t)(struct kiocb *iocb, loff_t offset,
320 * Attribute flags. These should be or-ed together to figure out what 320 * Attribute flags. These should be or-ed together to figure out what
321 * has been changed! 321 * has been changed!
322 */ 322 */
323#define ATTR_MODE 1 323#define ATTR_MODE (1 << 0)
324#define ATTR_UID 2 324#define ATTR_UID (1 << 1)
325#define ATTR_GID 4 325#define ATTR_GID (1 << 2)
326#define ATTR_SIZE 8 326#define ATTR_SIZE (1 << 3)
327#define ATTR_ATIME 16 327#define ATTR_ATIME (1 << 4)
328#define ATTR_MTIME 32 328#define ATTR_MTIME (1 << 5)
329#define ATTR_CTIME 64 329#define ATTR_CTIME (1 << 6)
330#define ATTR_ATIME_SET 128 330#define ATTR_ATIME_SET (1 << 7)
331#define ATTR_MTIME_SET 256 331#define ATTR_MTIME_SET (1 << 8)
332#define ATTR_FORCE 512 /* Not a change, but a change it */ 332#define ATTR_FORCE (1 << 9) /* Not a change, but a change it */
333#define ATTR_ATTR_FLAG 1024 333#define ATTR_ATTR_FLAG (1 << 10)
334#define ATTR_KILL_SUID 2048 334#define ATTR_KILL_SUID (1 << 11)
335#define ATTR_KILL_SGID 4096 335#define ATTR_KILL_SGID (1 << 12)
336#define ATTR_FILE 8192 336#define ATTR_FILE (1 << 13)
337#define ATTR_KILL_PRIV 16384 337#define ATTR_KILL_PRIV (1 << 14)
338#define ATTR_OPEN 32768 /* Truncating from open(O_TRUNC) */ 338#define ATTR_OPEN (1 << 15) /* Truncating from open(O_TRUNC) */
339#define ATTR_TIMES_SET (1 << 16)
339 340
340/* 341/*
341 * This is the Inode Attributes structure, used for notify_change(). It 342 * This is the Inode Attributes structure, used for notify_change(). It