Lines Matching refs:pde
77 static inline bool pde_is_permanent(const struct proc_dir_entry *pde)
79 return pde->flags & PROC_ENTRY_PERMANENT;
82 static inline void pde_make_permanent(struct proc_dir_entry *pde)
84 pde->flags |= PROC_ENTRY_PERMANENT;
88 void pde_free(struct proc_dir_entry *pde);
102 struct proc_dir_entry *pde;
120 return PROC_I(inode)->pde;
195 static inline void pde_get(struct proc_dir_entry *pde)
197 refcount_inc(&pde->refcnt);
201 static inline bool is_empty_pde(const struct proc_dir_entry *pde)
203 return S_ISDIR(pde->mode) && !pde->proc_iops;
314 static inline void pde_force_lookup(struct proc_dir_entry *pde)
317 pde->proc_dops = &proc_net_dentry_ops;