* [PATCH 1/1] bcache: release the lock before stopping the writeback thread
@ 2018-08-22 7:00 Shan Hai
2018-08-22 7:29 ` Coly Li
0 siblings, 1 reply; 3+ messages in thread
From: Shan Hai @ 2018-08-22 7:00 UTC (permalink / raw)
To: linux-bcache; +Cc: linux-block
The writeback thread would exit with a lock held when the cache device is
detached via sysfs interface, fix it by releasing the held lock before exiting
the thread.
Signed-off-by: Shan Hai <shan.hai@oracle.com>
---
drivers/md/bcache/writeback.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/md/bcache/writeback.c b/drivers/md/bcache/writeback.c
index 481d4cf..adc583f 100644
--- a/drivers/md/bcache/writeback.c
+++ b/drivers/md/bcache/writeback.c
@@ -679,8 +679,10 @@ static int bch_writeback_thread(void *arg)
* data on cache. BCACHE_DEV_DETACHING flag is set in
* bch_cached_dev_detach().
*/
- if (test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags))
+ if (test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags)) {
+ up_write(&dc->writeback_lock);
break;
+ }
}
up_write(&dc->writeback_lock);
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] bcache: release the lock before stopping the writeback thread
2018-08-22 7:00 [PATCH 1/1] bcache: release the lock before stopping the writeback thread Shan Hai
@ 2018-08-22 7:29 ` Coly Li
2018-08-22 7:38 ` Shan Hai
0 siblings, 1 reply; 3+ messages in thread
From: Coly Li @ 2018-08-22 7:29 UTC (permalink / raw)
To: Shan Hai, linux-bcache; +Cc: linux-block
Hi Shan,
On 2018/8/22 3:00 PM, Shan Hai wrote:
> The writeback thread would exit with a lock held when the cache device is
> detached via sysfs interface, fix it by releasing the held lock before exiting
> the thread.
I will change "the thread" to "the while-loop" when I apply this patch.
>
> Signed-off-by: Shan Hai <shan.hai@oracle.com>
Nice catch!
This one should go to stable trees since 4.17 as well. I will CC stable
maintainers when I submit this one for 4.19.
Thank you for the fix.
Coly Li
> ---
> drivers/md/bcache/writeback.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/md/bcache/writeback.c b/drivers/md/bcache/writeback.c
> index 481d4cf..adc583f 100644
> --- a/drivers/md/bcache/writeback.c
> +++ b/drivers/md/bcache/writeback.c
> @@ -679,8 +679,10 @@ static int bch_writeback_thread(void *arg)
> * data on cache. BCACHE_DEV_DETACHING flag is set in
> * bch_cached_dev_detach().
> */
> - if (test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags))
> + if (test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags)) {
> + up_write(&dc->writeback_lock);
> break;
> + }
> }
>
> up_write(&dc->writeback_lock);
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] bcache: release the lock before stopping the writeback thread
2018-08-22 7:29 ` Coly Li
@ 2018-08-22 7:38 ` Shan Hai
0 siblings, 0 replies; 3+ messages in thread
From: Shan Hai @ 2018-08-22 7:38 UTC (permalink / raw)
To: Coly Li, linux-bcache; +Cc: linux-block
Hi Coly,
On 2018年08月22日 15:29, Coly Li wrote:
> Hi Shan,
>
> On 2018/8/22 3:00 PM, Shan Hai wrote:
>> The writeback thread would exit with a lock held when the cache device is
>> detached via sysfs interface, fix it by releasing the held lock before exiting
>> the thread.
> I will change "the thread" to "the while-loop" when I apply this patch.
That's fine, your change is better.
>> Signed-off-by: Shan Hai <shan.hai@oracle.com>
> Nice catch!
>
> This one should go to stable trees since 4.17 as well. I will CC stable
> maintainers when I submit this one for 4.19.
OK, thanks for the quick response.
Regards
Shan Hai
> Thank you for the fix.
>
> Coly Li
>
>> ---
>> drivers/md/bcache/writeback.c | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/md/bcache/writeback.c b/drivers/md/bcache/writeback.c
>> index 481d4cf..adc583f 100644
>> --- a/drivers/md/bcache/writeback.c
>> +++ b/drivers/md/bcache/writeback.c
>> @@ -679,8 +679,10 @@ static int bch_writeback_thread(void *arg)
>> * data on cache. BCACHE_DEV_DETACHING flag is set in
>> * bch_cached_dev_detach().
>> */
>> - if (test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags))
>> + if (test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags)) {
>> + up_write(&dc->writeback_lock);
>> break;
>> + }
>> }
>>
>> up_write(&dc->writeback_lock);
>>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-08-22 11:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-22 7:00 [PATCH 1/1] bcache: release the lock before stopping the writeback thread Shan Hai
2018-08-22 7:29 ` Coly Li
2018-08-22 7:38 ` Shan Hai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).