Lines Matching refs:proc_dir_entry

31 struct proc_dir_entry {  struct
60 struct proc_dir_entry *parent; argument
71 sizeof(struct proc_dir_entry) < 128 ? 128 : \ argument
72 sizeof(struct proc_dir_entry) < 192 ? 192 : \
73 sizeof(struct proc_dir_entry) < 256 ? 256 : \
74 sizeof(struct proc_dir_entry) < 512 ? 512 : \
76 #define SIZEOF_PDE_INLINE_NAME (SIZEOF_PDE - sizeof(struct proc_dir_entry))
78 static inline bool pde_is_permanent(const struct proc_dir_entry *pde) in pde_is_permanent()
83 static inline void pde_make_permanent(struct proc_dir_entry *pde) in pde_make_permanent()
88 static inline bool pde_has_proc_read_iter(const struct proc_dir_entry *pde) in pde_has_proc_read_iter()
93 static inline bool pde_has_proc_compat_ioctl(const struct proc_dir_entry *pde) in pde_has_proc_compat_ioctl()
103 void pde_free(struct proc_dir_entry *pde);
117 struct proc_dir_entry *pde;
133 static inline struct proc_dir_entry *PDE(const struct inode *inode) in PDE()
232 struct proc_dir_entry *proc_create_reg(const char *name, umode_t mode,
233 struct proc_dir_entry **parent, void *data);
234 struct proc_dir_entry *proc_register(struct proc_dir_entry *dir,
235 struct proc_dir_entry *dp);
237 struct dentry *proc_lookup_de(struct inode *, struct dentry *, struct proc_dir_entry *);
239 int proc_readdir_de(struct file *, struct dir_context *, struct proc_dir_entry *);
241 static inline void pde_get(struct proc_dir_entry *pde) in pde_get()
245 extern void pde_put(struct proc_dir_entry *);
247 static inline bool is_empty_pde(const struct proc_dir_entry *pde) in is_empty_pde()
269 extern struct inode *proc_get_inode(struct super_block *, struct proc_dir_entry *);
270 extern void proc_entry_rundown(struct proc_dir_entry *);
326 extern struct proc_dir_entry proc_root;
360 static inline void pde_force_lookup(struct proc_dir_entry *pde) in pde_force_lookup()