diff options
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 58ce336d4a6b..98205f680476 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -284,6 +284,7 @@ extern int dir_notify_enable; | |||
284 | #include <linux/pid.h> | 284 | #include <linux/pid.h> |
285 | #include <linux/mutex.h> | 285 | #include <linux/mutex.h> |
286 | #include <linux/sysctl.h> | 286 | #include <linux/sysctl.h> |
287 | #include <linux/capability.h> | ||
287 | 288 | ||
288 | #include <asm/atomic.h> | 289 | #include <asm/atomic.h> |
289 | #include <asm/semaphore.h> | 290 | #include <asm/semaphore.h> |
@@ -990,6 +991,9 @@ enum { | |||
990 | #define put_fs_excl() atomic_dec(¤t->fs_excl) | 991 | #define put_fs_excl() atomic_dec(¤t->fs_excl) |
991 | #define has_fs_excl() atomic_read(¤t->fs_excl) | 992 | #define has_fs_excl() atomic_read(¤t->fs_excl) |
992 | 993 | ||
994 | #define is_owner_or_cap(inode) \ | ||
995 | ((current->fsuid == (inode)->i_uid) || capable(CAP_FOWNER)) | ||
996 | |||
993 | /* not quite ready to be deprecated, but... */ | 997 | /* not quite ready to be deprecated, but... */ |
994 | extern void lock_super(struct super_block *); | 998 | extern void lock_super(struct super_block *); |
995 | extern void unlock_super(struct super_block *); | 999 | extern void unlock_super(struct super_block *); |