summaryrefslogtreecommitdiff
path: root/net/ceph
diff options
context:
space:
mode:
authorIlya Dryomov <idryomov@gmail.com>2018-06-27 16:38:13 +0200
committerIlya Dryomov <idryomov@gmail.com>2018-08-02 21:26:11 +0200
commit2f56b6bae73b2d65ef4816ca89341facc53d3361 (patch)
tree30c4eb51affe028036234b4a3b21614b0fab647c /net/ceph
parent17173c82e3daa28742bf7732520e9bc2e0cb977d (diff)
libceph: amend "bad option arg" error message
Don't mention "mount" -- in the rbd case it is "mapping". Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'net/ceph')
-rw-r--r--net/ceph/ceph_common.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ceph/ceph_common.c b/net/ceph/ceph_common.c
index 1677a6132034..6ebd7d953ee0 100644
--- a/net/ceph/ceph_common.c
+++ b/net/ceph/ceph_common.c
@@ -396,8 +396,7 @@ ceph_parse_options(char *options, const char *dev_name,
if (token < Opt_last_int) {
err = match_int(&argstr[0], &intval);
if (err < 0) {
- pr_err("bad mount option arg (not int) "
- "at '%s'\n", c);
+ pr_err("bad option arg (not int) at '%s'\n", c);
goto out;
}
dout("got int token %d val %d\n", token, intval);