Commit 1bbc9915 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull dentry leak fix from Al Viro:
 "Dentry leak fix in the qibfs driver that I forgot to send a pull
  request for ;-/

  My apologies - it actually sat in vfs.git#fixes for more than two
  months..."

* tag 'pull-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  qibfs: fix dentry leak
parents 45db3ab7 aa23317d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -439,6 +439,7 @@ static int remove_device_files(struct super_block *sb,
		return PTR_ERR(dir);
	}
	simple_recursive_removal(dir, NULL);
	dput(dir);
	return 0;
}