Subject: [PATCH] proc: Report the correct function name in debug prints From: Eric W. Biederman Date: 1134672965 -0700 --- fs/proc/inode.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) e0e5233533ace6698b5d03b150f1179ac76dcbfc diff --git a/fs/proc/inode.c b/fs/proc/inode.c index a9b3a73..67a021e 100644 --- a/fs/proc/inode.c +++ b/fs/proc/inode.c @@ -203,7 +203,7 @@ int proc_fill_super(struct super_block * return 0; out_no_root: - printk("proc_read_super: get root inode failed\n"); + printk("%s: get root inode failed\n", __func__); iput(root_inode); return -ENOMEM; } -- 1.0.GIT