Lines Matching refs:victim
273 struct dentry *victim = NULL, *child; in simple_recursive_removal() local
279 while ((child = find_next_child(this, victim)) == NULL) { in simple_recursive_removal()
285 victim = this; in simple_recursive_removal()
289 if (simple_positive(victim)) { in simple_recursive_removal()
290 d_invalidate(victim); // avoid lost mounts in simple_recursive_removal()
291 if (d_is_dir(victim)) in simple_recursive_removal()
292 fsnotify_rmdir(inode, victim); in simple_recursive_removal()
294 fsnotify_unlink(inode, victim); in simple_recursive_removal()
296 callback(victim); in simple_recursive_removal()
297 dput(victim); // unpin it in simple_recursive_removal()
299 if (victim == dentry) { in simple_recursive_removal()