diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fsnotify.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/linux/fsnotify.h b/include/linux/fsnotify.h index 1cb4935348d8..9db31d251c20 100644 --- a/include/linux/fsnotify.h +++ b/include/linux/fsnotify.h | |||
@@ -68,6 +68,26 @@ static inline void fsnotify_rmdir(struct dentry *dentry, struct inode *inode, | |||
68 | } | 68 | } |
69 | 69 | ||
70 | /* | 70 | /* |
71 | * fsnotify_nameremove - a filename was removed from a directory | ||
72 | */ | ||
73 | static inline void fsnotify_nameremove(struct dentry *dentry, int isdir) | ||
74 | { | ||
75 | if (isdir) | ||
76 | isdir = IN_ISDIR; | ||
77 | dnotify_parent(dentry, DN_DELETE); | ||
78 | inotify_dentry_parent_queue_event(dentry, IN_DELETE|isdir, 0, dentry->d_name.name); | ||
79 | } | ||
80 | |||
81 | /* | ||
82 | * fsnotify_inoderemove - an inode is going away | ||
83 | */ | ||
84 | static inline void fsnotify_inoderemove(struct inode *inode) | ||
85 | { | ||
86 | inotify_inode_queue_event(inode, IN_DELETE_SELF, 0, NULL); | ||
87 | inotify_inode_is_dead(inode); | ||
88 | } | ||
89 | |||
90 | /* | ||
71 | * fsnotify_create - 'name' was linked in | 91 | * fsnotify_create - 'name' was linked in |
72 | */ | 92 | */ |
73 | static inline void fsnotify_create(struct inode *inode, const char *name) | 93 | static inline void fsnotify_create(struct inode *inode, const char *name) |