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.

9p: Remove potentially bad parameter from function entry debug print.

Signed-off-by: Duane Griffin <duaneg@dghda.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>

authored by

Duane Griffin and committed by
Eric Van Hensbergen
6ff23207 9a1d1035

+2 -1
+2 -1
fs/9p/vfs_inode.c
··· 1022 1022 { 1023 1023 char *s = nd_get_link(nd); 1024 1024 1025 - P9_DPRINTK(P9_DEBUG_VFS, " %s %s\n", dentry->d_name.name, s); 1025 + P9_DPRINTK(P9_DEBUG_VFS, " %s %s\n", dentry->d_name.name, 1026 + IS_ERR(s) ? "<error>" : s); 1026 1027 if (!IS_ERR(s)) 1027 1028 __putname(s); 1028 1029 }