Lines Matching refs:victim
272 struct dentry *victim = NULL, *child; in simple_recursive_removal() local
278 while ((child = find_next_child(this, victim)) == NULL) { in simple_recursive_removal()
284 victim = this; in simple_recursive_removal()
288 if (simple_positive(victim)) { in simple_recursive_removal()
289 d_invalidate(victim); // avoid lost mounts in simple_recursive_removal()
290 if (d_is_dir(victim)) in simple_recursive_removal()
291 fsnotify_rmdir(inode, victim); in simple_recursive_removal()
293 fsnotify_unlink(inode, victim); in simple_recursive_removal()
295 callback(victim); in simple_recursive_removal()
296 dput(victim); // unpin it in simple_recursive_removal()
298 if (victim == dentry) { in simple_recursive_removal()