aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fsnotify.h
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2009-12-17 21:24:24 -0500
committerEric Paris <eparis@redhat.com>2010-07-28 09:58:53 -0400
commite61ce86737b4d60521e4e71f9892fe4bdcfb688b (patch)
treea1aba411504ac028d4ead6f28ca05bd024c74142 /include/linux/fsnotify.h
parent72acc854427948efed7a83da27f7dc3239ac9afc (diff)
fsnotify: rename fsnotify_mark_entry to just fsnotify_mark
The name is long and it serves no real purpose. So rename fsnotify_mark_entry to just fsnotify_mark. Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'include/linux/fsnotify.h')
-rw-r--r--include/linux/fsnotify.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/linux/fsnotify.h b/include/linux/fsnotify.h
index 06d296d85ebf..62e93a9dd115 100644
--- a/include/linux/fsnotify.h
+++ b/include/linux/fsnotify.h
@@ -19,10 +19,10 @@
19 * fsnotify_d_instantiate - instantiate a dentry for inode 19 * fsnotify_d_instantiate - instantiate a dentry for inode
20 * Called with dcache_lock held. 20 * Called with dcache_lock held.
21 */ 21 */
22static inline void fsnotify_d_instantiate(struct dentry *entry, 22static inline void fsnotify_d_instantiate(struct dentry *dentry,
23 struct inode *inode) 23 struct inode *inode)
24{ 24{
25 __fsnotify_d_instantiate(entry, inode); 25 __fsnotify_d_instantiate(dentry, inode);
26} 26}
27 27
28/* Notify this dentry's parent about a child's events. */ 28/* Notify this dentry's parent about a child's events. */
@@ -35,16 +35,16 @@ static inline void fsnotify_parent(struct path *path, struct dentry *dentry, __u
35} 35}
36 36
37/* 37/*
38 * fsnotify_d_move - entry has been moved 38 * fsnotify_d_move - dentry has been moved
39 * Called with dcache_lock and entry->d_lock held. 39 * Called with dcache_lock and dentry->d_lock held.
40 */ 40 */
41static inline void fsnotify_d_move(struct dentry *entry) 41static inline void fsnotify_d_move(struct dentry *dentry)
42{ 42{
43 /* 43 /*
44 * On move we need to update entry->d_flags to indicate if the new parent 44 * On move we need to update dentry->d_flags to indicate if the new parent
45 * cares about events from this entry. 45 * cares about events from this dentry.
46 */ 46 */
47 __fsnotify_update_dcache_flags(entry); 47 __fsnotify_update_dcache_flags(dentry);
48} 48}
49 49
50/* 50/*