linux-bcache.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] bcache: release dc->writeback_lock properly in bch_writeback_thread()
@ 2018-08-22 18:02 Coly Li
  2018-08-22 18:07 ` Coly Li
  0 siblings, 1 reply; 3+ messages in thread
From: Coly Li @ 2018-08-22 18:02 UTC (permalink / raw)
  To: axboe; +Cc: linux-bcache, linux-block, Shan Hai, Coly Li, stable

From: Shan Hai <shan.hai@oracle.com>

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 while-loop.

Fixes: fadd94e05c02 (bcache: quit dc->writeback_thread when BCACHE_DEV_DETACHING is set)
Signed-off-by: Shan Hai <shan.hai@oracle.com>
Signed-off-by: Coly Li <colyli@suse.de>
Tested-by: Shenghui Wang <shhuiw@foxmail.com>
Cc: stable@vger.kernel.org #4.17+
---
Changelog:
v2: add Fixes tag by Coly Li.
v1: initial patch from Shan Hai.

 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 6be05bd7ca67..08c3a9f9676c 100644
--- a/drivers/md/bcache/writeback.c
+++ b/drivers/md/bcache/writeback.c
@@ -685,8 +685,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.18.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] bcache: release dc->writeback_lock properly in bch_writeback_thread()
  2018-08-22 18:02 [PATCH v2] bcache: release dc->writeback_lock properly in bch_writeback_thread() Coly Li
@ 2018-08-22 18:07 ` Coly Li
  2018-08-22 18:13   ` Jens Axboe
  0 siblings, 1 reply; 3+ messages in thread
From: Coly Li @ 2018-08-22 18:07 UTC (permalink / raw)
  To: axboe; +Cc: linux-bcache, linux-block, Shan Hai, stable

On 2018/8/23 2:02 AM, Coly Li wrote:
> From: Shan Hai <shan.hai@oracle.com>
> 
> 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 while-loop.
> 
> Fixes: fadd94e05c02 (bcache: quit dc->writeback_thread when BCACHE_DEV_DETACHING is set)
> Signed-off-by: Shan Hai <shan.hai@oracle.com>
> Signed-off-by: Coly Li <colyli@suse.de>
> Tested-by: Shenghui Wang <shhuiw@foxmail.com>
> Cc: stable@vger.kernel.org #4.17+
> ---
> Changelog:
> v2: add Fixes tag by Coly Li.
> v1: initial patch from Shan Hai.

Hi Jens,

Please pick this patch for your next pull request. The change from Shan
Hai fixes a real issue which is reported and lately verified by Shenghui
Wang.

Thanks in advance.

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 6be05bd7ca67..08c3a9f9676c 100644
> --- a/drivers/md/bcache/writeback.c
> +++ b/drivers/md/bcache/writeback.c
> @@ -685,8 +685,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 v2] bcache: release dc->writeback_lock properly in bch_writeback_thread()
  2018-08-22 18:07 ` Coly Li
@ 2018-08-22 18:13   ` Jens Axboe
  0 siblings, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2018-08-22 18:13 UTC (permalink / raw)
  To: Coly Li; +Cc: linux-bcache, linux-block, Shan Hai, stable

On 8/22/18 12:07 PM, Coly Li wrote:
> On 2018/8/23 2:02 AM, Coly Li wrote:
>> From: Shan Hai <shan.hai@oracle.com>
>>
>> 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 while-loop.
>>
>> Fixes: fadd94e05c02 (bcache: quit dc->writeback_thread when BCACHE_DEV_DETACHING is set)
>> Signed-off-by: Shan Hai <shan.hai@oracle.com>
>> Signed-off-by: Coly Li <colyli@suse.de>
>> Tested-by: Shenghui Wang <shhuiw@foxmail.com>
>> Cc: stable@vger.kernel.org #4.17+
>> ---
>> Changelog:
>> v2: add Fixes tag by Coly Li.
>> v1: initial patch from Shan Hai.
> 
> Hi Jens,
> 
> Please pick this patch for your next pull request. The change from Shan
> Hai fixes a real issue which is reported and lately verified by Shenghui
> Wang.

Applied - but I fixed up the commit message. Please keep lines at
72 characters for git commits.

-- 
Jens Axboe

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-08-22 18:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-22 18:02 [PATCH v2] bcache: release dc->writeback_lock properly in bch_writeback_thread() Coly Li
2018-08-22 18:07 ` Coly Li
2018-08-22 18:13   ` Jens Axboe

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).