Lines Matching refs:victim
274 struct dentry *victim = NULL, *child; in simple_recursive_removal() local
280 while ((child = find_next_child(this, victim)) == NULL) { in simple_recursive_removal()
286 victim = this; in simple_recursive_removal()
290 if (simple_positive(victim)) { in simple_recursive_removal()
291 d_invalidate(victim); // avoid lost mounts in simple_recursive_removal()
292 if (d_is_dir(victim)) in simple_recursive_removal()
293 fsnotify_rmdir(inode, victim); in simple_recursive_removal()
295 fsnotify_unlink(inode, victim); in simple_recursive_removal()
297 callback(victim); in simple_recursive_removal()
298 dput(victim); // unpin it in simple_recursive_removal()
300 if (victim == dentry) { in simple_recursive_removal()