diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-generic/fcntl.h | 4 | ||||
| -rw-r--r-- | include/linux/file.h | 2 | ||||
| -rw-r--r-- | include/linux/fs.h | 3 | 
3 files changed, 9 insertions, 0 deletions
diff --git a/include/asm-generic/fcntl.h b/include/asm-generic/fcntl.h index 0fc16e3f0bf..84793c7025e 100644 --- a/include/asm-generic/fcntl.h +++ b/include/asm-generic/fcntl.h @@ -80,6 +80,10 @@  #define O_SYNC		(__O_SYNC|O_DSYNC)  #endif +#ifndef O_PATH +#define O_PATH		010000000 +#endif +  #ifndef O_NDELAY  #define O_NDELAY	O_NONBLOCK  #endif diff --git a/include/linux/file.h b/include/linux/file.h index e85baebf627..21a79958541 100644 --- a/include/linux/file.h +++ b/include/linux/file.h @@ -29,6 +29,8 @@ static inline void fput_light(struct file *file, int fput_needed)  extern struct file *fget(unsigned int fd);  extern struct file *fget_light(unsigned int fd, int *fput_needed); +extern struct file *fget_raw(unsigned int fd); +extern struct file *fget_raw_light(unsigned int fd, int *fput_needed);  extern void set_close_on_exec(unsigned int fd, int flag);  extern void put_filp(struct file *);  extern int alloc_fd(unsigned start, unsigned flags); diff --git a/include/linux/fs.h b/include/linux/fs.h index f2143e0942c..13df14e2c42 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -102,6 +102,9 @@ struct inodes_stat_t {  /* File is huge (eg. /dev/kmem): treat loff_t as unsigned */  #define FMODE_UNSIGNED_OFFSET	((__force fmode_t)0x2000) +/* File is opened with O_PATH; almost nothing can be done with it */ +#define FMODE_PATH		((__force fmode_t)0x4000) +  /* File was opened by fanotify and shouldn't generate fanotify events */  #define FMODE_NONOTIFY		((__force fmode_t)0x1000000)  |