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.

user_statfs(): switch to CLASS(filename)

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

Al Viro a0c3d1f3 a4503461

+1 -2
+1 -2
fs/statfs.c
··· 99 99 struct path path; 100 100 int error; 101 101 unsigned int lookup_flags = LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT; 102 - struct filename *name = getname(pathname); 102 + CLASS(filename, name)(pathname); 103 103 retry: 104 104 error = filename_lookup(AT_FDCWD, name, lookup_flags, &path, NULL); 105 105 if (!error) { ··· 110 110 goto retry; 111 111 } 112 112 } 113 - putname(name); 114 113 return error; 115 114 } 116 115