aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomohiro Kusumi <[email protected]>2016-10-11 13:52:59 -0700
committerLinus Torvalds <[email protected]>2016-10-11 15:06:31 -0700
commitb6e3795a06c2fe837e7d0319a923e8978276ec4c (patch)
treeb7c99a8ea54e41e9927d3ed9c9f24aaf00b4301a
parentbf72eda5f9c593495127a34d3444b2ec5939e837 (diff)
autofs: fix pr_debug() message
This isn't a return value, so change the message to indicate the status is the result of may_umount(). (or locate pr_debug() after put_user() with the same message) Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Tomohiro Kusumi <[email protected]> Signed-off-by: Ian Kent <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--fs/autofs4/root.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c
index 2eebeae75288..a11f73174877 100644
--- a/fs/autofs4/root.c
+++ b/fs/autofs4/root.c
@@ -840,7 +840,7 @@ static inline int autofs4_ask_umount(struct vfsmount *mnt, int __user *p)
if (may_umount(mnt))
status = 1;
- pr_debug("returning %d\n", status);
+ pr_debug("may umount %d\n", status);
status = put_user(status, p);