diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/dcache.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index 167ec0934049..d2d50249b7b2 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h | |||
| @@ -507,6 +507,11 @@ static inline bool d_really_is_positive(const struct dentry *dentry) | |||
| 507 | return dentry->d_inode != NULL; | 507 | return dentry->d_inode != NULL; |
| 508 | } | 508 | } |
| 509 | 509 | ||
| 510 | static inline int simple_positive(struct dentry *dentry) | ||
| 511 | { | ||
| 512 | return d_really_is_positive(dentry) && !d_unhashed(dentry); | ||
| 513 | } | ||
| 514 | |||
| 510 | extern void d_set_fallthru(struct dentry *dentry); | 515 | extern void d_set_fallthru(struct dentry *dentry); |
| 511 | 516 | ||
| 512 | static inline bool d_is_fallthru(const struct dentry *dentry) | 517 | static inline bool d_is_fallthru(const struct dentry *dentry) |
