summaryrefslogtreecommitdiff
path: root/fs/aufs/hfsnotify.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/aufs/hfsnotify.c')
-rw-r--r--fs/aufs/hfsnotify.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/aufs/hfsnotify.c b/fs/aufs/hfsnotify.c
index 6afef3f07..110f8f53c 100644
--- a/fs/aufs/hfsnotify.c
+++ b/fs/aufs/hfsnotify.c
@@ -19,7 +19,7 @@ static void au_hfsn_free_mark(struct fsnotify_mark *mark)
struct au_hnotify *hn = container_of(mark, struct au_hnotify,
hn_mark);
/* AuDbg("here\n"); */
- au_cache_free_hnotify(hn);
+ au_cache_dfree_hnotify(hn);
smp_mb__before_atomic();
if (atomic64_dec_and_test(&au_hfsn_ifree))
wake_up(&au_hfsn_wq);
@@ -143,7 +143,7 @@ static void au_hfsn_free_group(struct fsnotify_group *group)
struct au_br_hfsnotify *hfsn = group->private;
/* AuDbg("here\n"); */
- kfree(hfsn);
+ au_delayed_kfree(hfsn);
}
static int au_hfsn_handle_event(struct fsnotify_group *group,
@@ -237,7 +237,7 @@ static int au_hfsn_init_br(struct au_branch *br, int perm)
goto out; /* success */
out_hfsn:
- kfree(hfsn);
+ au_delayed_kfree(hfsn);
out:
return err;
}