diff options
| author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-10-19 15:19:19 -0400 |
|---|---|---|
| committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-10-19 15:19:19 -0400 |
| commit | e05dacd71db0a5da7c1a44bcaab2a8a240b9c233 (patch) | |
| tree | 31382cf1c7d62c03126448affb2fc86e8c4aaa8b /include/linux/stat.h | |
| parent | 3ab0b83bf6a1e834f4b884150d8012990c75d25d (diff) | |
| parent | ddffeb8c4d0331609ef2581d84de4d763607bd37 (diff) | |
Merge commit 'v3.7-rc1' into stable/for-linus-3.7
* commit 'v3.7-rc1': (10892 commits)
Linux 3.7-rc1
x86, boot: Explicitly include autoconf.h for hostprogs
perf: Fix UAPI fallout
ARM: config: make sure that platforms are ordered by option string
ARM: config: sort select statements alphanumerically
UAPI: (Scripted) Disintegrate include/linux/byteorder
UAPI: (Scripted) Disintegrate include/linux
UAPI: Unexport linux/blk_types.h
UAPI: Unexport part of linux/ppp-comp.h
perf: Handle new rbtree implementation
procfs: don't need a PATH_MAX allocation to hold a string representation of an int
vfs: embed struct filename inside of names_cache allocation if possible
audit: make audit_inode take struct filename
vfs: make path_openat take a struct filename pointer
vfs: turn do_path_lookup into wrapper around struct filename variant
audit: allow audit code to satisfy getname requests from its names_list
vfs: define struct filename and have getname() return it
btrfs: Fix compilation with user namespace support enabled
userns: Fix posix_acl_file_xattr_userns gid conversion
userns: Properly print bluetooth socket uids
...
Diffstat (limited to 'include/linux/stat.h')
| -rw-r--r-- | include/linux/stat.h | 46 |
1 files changed, 1 insertions, 45 deletions
diff --git a/include/linux/stat.h b/include/linux/stat.h index 46132409a3f7..075cb0c7eb2a 100644 --- a/include/linux/stat.h +++ b/include/linux/stat.h | |||
| @@ -1,52 +1,10 @@ | |||
| 1 | #ifndef _LINUX_STAT_H | 1 | #ifndef _LINUX_STAT_H |
| 2 | #define _LINUX_STAT_H | 2 | #define _LINUX_STAT_H |
| 3 | 3 | ||
| 4 | #ifdef __KERNEL__ | ||
| 5 | 4 | ||
| 6 | #include <asm/stat.h> | 5 | #include <asm/stat.h> |
| 6 | #include <uapi/linux/stat.h> | ||
| 7 | 7 | ||
| 8 | #endif | ||
| 9 | |||
| 10 | #if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) | ||
| 11 | |||
| 12 | #define S_IFMT 00170000 | ||
| 13 | #define S_IFSOCK 0140000 | ||
| 14 | #define S_IFLNK 0120000 | ||
| 15 | #define S_IFREG 0100000 | ||
| 16 | #define S_IFBLK 0060000 | ||
| 17 | #define S_IFDIR 0040000 | ||
| 18 | #define S_IFCHR 0020000 | ||
| 19 | #define S_IFIFO 0010000 | ||
| 20 | #define S_ISUID 0004000 | ||
| 21 | #define S_ISGID 0002000 | ||
| 22 | #define S_ISVTX 0001000 | ||
| 23 | |||
| 24 | #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) | ||
| 25 | #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) | ||
| 26 | #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) | ||
| 27 | #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) | ||
| 28 | #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) | ||
| 29 | #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) | ||
| 30 | #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) | ||
| 31 | |||
| 32 | #define S_IRWXU 00700 | ||
| 33 | #define S_IRUSR 00400 | ||
| 34 | #define S_IWUSR 00200 | ||
| 35 | #define S_IXUSR 00100 | ||
| 36 | |||
| 37 | #define S_IRWXG 00070 | ||
| 38 | #define S_IRGRP 00040 | ||
| 39 | #define S_IWGRP 00020 | ||
| 40 | #define S_IXGRP 00010 | ||
| 41 | |||
| 42 | #define S_IRWXO 00007 | ||
| 43 | #define S_IROTH 00004 | ||
| 44 | #define S_IWOTH 00002 | ||
| 45 | #define S_IXOTH 00001 | ||
| 46 | |||
| 47 | #endif | ||
| 48 | |||
| 49 | #ifdef __KERNEL__ | ||
| 50 | #define S_IRWXUGO (S_IRWXU|S_IRWXG|S_IRWXO) | 8 | #define S_IRWXUGO (S_IRWXU|S_IRWXG|S_IRWXO) |
| 51 | #define S_IALLUGO (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO) | 9 | #define S_IALLUGO (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO) |
| 52 | #define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH) | 10 | #define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH) |
| @@ -77,5 +35,3 @@ struct kstat { | |||
| 77 | }; | 35 | }; |
| 78 | 36 | ||
| 79 | #endif | 37 | #endif |
| 80 | |||
| 81 | #endif | ||
