Lines Matching refs:proc_dir_entry

30 struct proc_dir_entry {  struct
59 struct proc_dir_entry *parent; argument
70 sizeof(struct proc_dir_entry) < 128 ? 128 : \ argument
71 sizeof(struct proc_dir_entry) < 192 ? 192 : \
72 sizeof(struct proc_dir_entry) < 256 ? 256 : \
73 sizeof(struct proc_dir_entry) < 512 ? 512 : \
75 #define SIZEOF_PDE_INLINE_NAME (SIZEOF_PDE - sizeof(struct proc_dir_entry))
77 static inline bool pde_is_permanent(const struct proc_dir_entry *pde) in pde_is_permanent()
82 static inline void pde_make_permanent(struct proc_dir_entry *pde) in pde_make_permanent()
88 void pde_free(struct proc_dir_entry *pde);
102 struct proc_dir_entry *pde;
118 static inline struct proc_dir_entry *PDE(const struct inode *inode) in PDE()
186 struct proc_dir_entry *proc_create_reg(const char *name, umode_t mode,
187 struct proc_dir_entry **parent, void *data);
188 struct proc_dir_entry *proc_register(struct proc_dir_entry *dir,
189 struct proc_dir_entry *dp);
191 struct dentry *proc_lookup_de(struct inode *, struct dentry *, struct proc_dir_entry *);
193 int proc_readdir_de(struct file *, struct dir_context *, struct proc_dir_entry *);
195 static inline void pde_get(struct proc_dir_entry *pde) in pde_get()
199 extern void pde_put(struct proc_dir_entry *);
201 static inline bool is_empty_pde(const struct proc_dir_entry *pde) in is_empty_pde()
223 extern struct inode *proc_get_inode(struct super_block *, struct proc_dir_entry *);
224 extern void proc_entry_rundown(struct proc_dir_entry *);
280 extern struct proc_dir_entry proc_root;
316 static inline void pde_force_lookup(struct proc_dir_entry *pde) in pde_force_lookup()