From: Guoqing Jiang <gqjiang@suse.com>
To: NeilBrown <neilb@suse.com>, linux-raid@vger.kernel.org
Cc: shli@kernel.org
Subject: Re: [PATCH V2] md-cluster: make md-cluster also can work when compiled into kernel
Date: Sun, 4 Sep 2016 21:46:48 -0400 [thread overview]
Message-ID: <57CCCE88.4010507@suse.com> (raw)
In-Reply-To: <87zinn9rkc.fsf@notabene.neil.brown.name>
On 09/04/2016 07:24 PM, NeilBrown wrote:
> On Sun, Sep 04 2016, Guoqing Jiang wrote:
>
>> The md-cluster is compiled as module by default,
>> if it is compiled by built-in way, then we can't
>> make md-cluster works.
>>
>> [64782.630008] md/raid1:md127: active with 2 out of 2 mirrors
>> [64782.630528] md-cluster module not found.
>> [64782.630530] md127: Could not setup cluster service (-2)
>>
>> Fixes: edb39c9 ("Introduce md_cluster_operations to handle cluster functions")
>> Cc: stable@vger.kernel.org # v4.1+
> The above results in you sending email to
> stable@vger.kernel.org#v4.1+
> which is not a valid address.
>
> The correct form for comments in email address is to use parentheses.
> e.g.
> Cc: stable@vger.kernel.org (v4.1+)
Thanks for correct it!
>> Cc: NeilBrown <neilb@suse.com>
>> Reported-by: Marc Smith <marc.smith@mcc.edu>
>> Signed-off-by: Guoqing Jiang <gqjiang@suse.com>
>> ---
>> Changes:
>> 1. call try_module_get if md_cluster_ops is already set,
>> otherwise try_module_get/module_put are unbalanced.
>>
>> drivers/md/md.c | 14 +++++---------
>> 1 file changed, 5 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/md/md.c b/drivers/md/md.c
>> index 67642ba..6ac5abe 100644
>> --- a/drivers/md/md.c
>> +++ b/drivers/md/md.c
>> @@ -7610,16 +7610,12 @@ EXPORT_SYMBOL(unregister_md_cluster_operations);
>>
>> int md_setup_cluster(struct mddev *mddev, int nodes)
>> {
>> - int err;
>> -
>> - err = request_module("md-cluster");
>> - if (err) {
>> - pr_err("md-cluster module not found.\n");
>> - return -ENOENT;
>> - }
>> -
>> + if (!md_cluster_ops)
>> + request_module("md-cluster");
>> spin_lock(&pers_lock);
>> - if (!md_cluster_ops || !try_module_get(md_cluster_mod)) {
>> + /* ensure module won't be unloaded */
>> + if (!try_module_get(md_cluster_mod)) {
> Why did you drop the "!md_cluster_ops" test?
>
> What happens if the md-cluster module cannot be loaded?
> md_cluster_ops will be NULL and md_cluster_mod will be NULL.
> try_module_get(NULL) succeeds, so with this patch md_setup_cluster()
> will succeed if the module is needed but fails to load.
Yes, I just find try_module_get(NULL) could return true, it seems not
correct for the return value, maybe it need to be changed to:
return module ? ret : false;
Anyway, I will send v3 with add "!md_cluster_ops" test back.
Thanks,
Guoqing
next prev parent reply other threads:[~2016-09-05 1:46 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-02 10:51 [PATCH] md-cluster: make md-cluster also can work when compiled into kernel Guoqing Jiang
2016-09-02 12:56 ` NeilBrown
2016-09-03 14:03 ` [PATCH V2] " Guoqing Jiang
2016-09-04 23:24 ` NeilBrown
2016-09-05 1:46 ` Guoqing Jiang [this message]
2016-09-05 1:56 ` NeilBrown
2016-09-05 2:17 ` [PATCH V3] " Guoqing Jiang
2016-09-05 2:17 ` Guoqing Jiang
2016-09-05 3:10 ` NeilBrown
2016-09-05 3:10 ` NeilBrown
2016-09-08 18:03 ` Shaohua Li
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=57CCCE88.4010507@suse.com \
--to=gqjiang@suse.com \
--cc=linux-raid@vger.kernel.org \
--cc=neilb@suse.com \
--cc=shli@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.