@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux adweb87 2.6.32-754.el6.x86_64 #1 SMP Tue Jun 19 21:26:04 UTC 2018 x86_64
Current Path :
/
lib
/
modules
/
2.6.32-754.el6.x86_64
/
build
/
include
/
linux
/
Path :
Upload File :
New :
File
Dir
//lib/modules/2.6.32-754.el6.x86_64/build/include/linux/file.h
/* * Wrapper functions for accessing the file_struct fd array. */ #ifndef __LINUX_FILE_H #define __LINUX_FILE_H #include <linux/compiler.h> #include <linux/types.h> #include <linux/posix_types.h> struct file; extern void __fput(struct file *); extern void fput(struct file *); extern void fput_pos_unlock(struct file *file); extern void drop_file_write_access(struct file *file); struct file_operations; struct vfsmount; struct dentry; struct path; extern struct file *alloc_file(struct path *, fmode_t mode, const struct file_operations *fop); #define FDPUT_FPUT 1 #define FDPUT_POS_UNLOCK 2 static inline void fput_light(struct file *file, int fput_needed) { if (unlikely(fput_needed & FDPUT_FPUT)) fput(file); } static inline void fput_light_pos(struct file *file, int fput_needed) { if (fput_needed & FDPUT_POS_UNLOCK) fput_pos_unlock(file); fput_light(file, fput_needed); } extern struct file *fget(unsigned int fd); extern struct file *fget_light(unsigned int fd, int *fput_needed); extern struct file *fget_light_pos(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); extern int get_unused_fd(void); extern int get_unused_fd_flags(unsigned flags); extern void put_unused_fd(unsigned int fd); extern void fd_install(unsigned int fd, struct file *file); #endif /* __LINUX_FILE_H */