projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f453ed
)
ceph: don't crash when passed bad mount options
author
Yehuda Sadeh
<yehuda@hq.newdream.net>
Thu, 30 Sep 2010 18:58:31 +0000
(11:58 -0700)
committer
Sage Weil
<sage@newdream.net>
Wed, 20 Oct 2010 22:38:22 +0000
(15:38 -0700)
This only happened when parse_extra_token was not passed
to ceph_parse_option() (hence, only happened in rbd).
Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net>
net/ceph/ceph_common.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ceph/ceph_common.c
b/net/ceph/ceph_common.c
index f6f2eebc0767c8beace04e630dc5bca0bd4f84e9..f3e4a13fea0c8a5337ce5383951fb389ea24144a 100644
(file)
--- a/
net/ceph/ceph_common.c
+++ b/
net/ceph/ceph_common.c
@@
-249,7
+249,7
@@
int ceph_parse_options(struct ceph_options **popt, char *options,
continue;
err = -EINVAL;
token = match_token((char *)c, opt_tokens, argstr);
- if (token < 0) {
+ if (token < 0
&& parse_extra_token
) {
/* extra? */
err = parse_extra_token((char *)c, private);
if (err < 0) {