From: "Wangshaobo (bobo)" <bobo.shaobowang@huawei.com>
To: "Christoph Böhmwalder" <christoph.boehmwalder@linbit.com>
Cc: linux-block@vger.kernel.org, axboe@kernel.dk,
liwei391@huawei.com, drbd-dev@lists.linbit.com
Subject: Re: [Drbd-dev] [PATCH] drbd: destroy workqueue when drbd device was freed
Date: Mon, 21 Nov 2022 19:57:53 +0800 [thread overview]
Message-ID: <ff347eb2-d36a-480c-8de7-cb01a2ee35e0@huawei.com> (raw)
In-Reply-To: <3603e71c-cd9d-fd27-7c52-1eed263e8717@linbit.com>
在 2022/11/21 19:51, Christoph Böhmwalder 写道:
> Am 21.11.22 um 12:11 schrieb Wang ShaoBo:
>> A submitter workqueue is dynamically allocated by init_submitter()
>> called by drbd_create_device(), we should destroy it when this
>> device was not needed or destroyed.
>>
>> Fixes: 113fef9e20e0 ("drbd: prepare to queue write requests on a submit worker")
>> Signed-off-by: Wang ShaoBo <bobo.shaobowang@huawei.com>
>> ---
>> drivers/block/drbd/drbd_main.c | 5 +++++
>> 1 file changed, 5 insertions(+)
>>
>> diff --git a/drivers/block/drbd/drbd_main.c b/drivers/block/drbd/drbd_main.c
>> index 8532b839a343..467c498e3add 100644
>> --- a/drivers/block/drbd/drbd_main.c
>> +++ b/drivers/block/drbd/drbd_main.c
>> @@ -2218,6 +2218,9 @@ void drbd_destroy_device(struct kref *kref)
>> kfree(peer_device);
>> }
>> memset(device, 0xfd, sizeof(*device));
>> +
>> + if (device->submit.wq)
>> + destroy_workqueue(device->submit.wq);
>> kfree(device);
>> kref_put(&resource->kref, drbd_destroy_resource);
>> }
>> @@ -2810,6 +2813,8 @@ enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsig
>> put_disk(disk);
>> out_no_disk:
>> kref_put(&resource->kref, drbd_destroy_resource);
>> + if (device->submit.wq)
>> + destroy_workqueue(device->submit.wq);
>> kfree(device);
>> return err;
>> }
> Thanks for the patch.
>
> Unfortunately, (at least) the first hunk is buggy: we memset() the
> device to all 0xfd, and try to access it immediately afterwards.
>
> This obviously leads to invalid memory access.
Hi Christoph,
I found that error, so I have sent a RESEND version, i would be appreciated
if you could help check my patch.^-^
-- Wang ShaoBo
>
prev parent reply other threads:[~2022-11-21 11:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-21 11:11 [Drbd-dev] [PATCH] drbd: destroy workqueue when drbd device was freed Wang ShaoBo
2022-11-21 11:51 ` Christoph Böhmwalder
2022-11-21 11:57 ` Wangshaobo (bobo) [this message]
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=ff347eb2-d36a-480c-8de7-cb01a2ee35e0@huawei.com \
--to=bobo.shaobowang@huawei.com \
--cc=axboe@kernel.dk \
--cc=christoph.boehmwalder@linbit.com \
--cc=drbd-dev@lists.linbit.com \
--cc=linux-block@vger.kernel.org \
--cc=liwei391@huawei.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox