Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

quotactl_block(): switch to CLASS(filename)

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

Al Viro ef7282e8 57483461

+1 -2
+1 -2
fs/quota/quota.c
··· 867 867 { 868 868 #ifdef CONFIG_BLOCK 869 869 struct super_block *sb; 870 - struct filename *tmp = getname(special); 870 + CLASS(filename, tmp)(special); 871 871 bool excl = false, thawed = false; 872 872 int error; 873 873 dev_t dev; ··· 875 875 if (IS_ERR(tmp)) 876 876 return ERR_CAST(tmp); 877 877 error = lookup_bdev(tmp->name, &dev); 878 - putname(tmp); 879 878 if (error) 880 879 return ERR_PTR(error); 881 880