linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] bcache: release the allocated id, not its multiple of BCACHE_MINORS
@ 2017-06-23  7:15 Liang Chen
  2017-06-23  7:30 ` Coly Li
       [not found] ` <OF8F24365F.31FA34A2-ON48258148.00287923-48258148.002900E3@zte.com.cn>
  0 siblings, 2 replies; 4+ messages in thread
From: Liang Chen @ 2017-06-23  7:15 UTC (permalink / raw)
  To: linux-bcache; +Cc: linux-kernel, colyli, bcache, Liang Chen

The id passed to ida_simple_remove has to be the one originally
allocated with ida_simple_get, not the one after multipling by
BCACHE_MINORS.

Signed-off-by: Liang Chen <liangchen.linux@gmail.com>
---
 drivers/md/bcache/super.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
index e57353e..9f64477 100644
--- a/drivers/md/bcache/super.c
+++ b/drivers/md/bcache/super.c
@@ -734,7 +734,8 @@ static void bcache_device_free(struct bcache_device *d)
 	if (d->disk && d->disk->queue)
 		blk_cleanup_queue(d->disk->queue);
 	if (d->disk) {
-		ida_simple_remove(&bcache_minor, d->disk->first_minor);
+		ida_simple_remove(&bcache_minor,
+				d->disk->first_minor / BCACHE_MINORS);
 		put_disk(d->disk);
 	}
 
@@ -784,7 +785,7 @@ static int bcache_device_init(struct bcache_device *d, unsigned block_size,
 
 	if (!(d->bio_split = bioset_create(4, offsetof(struct bbio, bio))) ||
 	    !(d->disk = alloc_disk(BCACHE_MINORS))) {
-		ida_simple_remove(&bcache_minor, minor);
+		ida_simple_remove(&bcache_minor, minor / BCACHE_MINORS);
 		return -ENOMEM;
 	}
 
-- 
1.8.3.1

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

* Re: [PATCH] bcache: release the allocated id, not its multiple of BCACHE_MINORS
  2017-06-23  7:15 [PATCH] bcache: release the allocated id, not its multiple of BCACHE_MINORS Liang Chen
@ 2017-06-23  7:30 ` Coly Li
  2017-06-23 11:36   ` Liang Chen
       [not found] ` <OF8F24365F.31FA34A2-ON48258148.00287923-48258148.002900E3@zte.com.cn>
  1 sibling, 1 reply; 4+ messages in thread
From: Coly Li @ 2017-06-23  7:30 UTC (permalink / raw)
  To: Liang Chen; +Cc: linux-bcache, linux-kernel, colyli, bcache

On 2017/6/23 下午3:15, Liang Chen wrote:
> The id passed to ida_simple_remove has to be the one originally
> allocated with ida_simple_get, not the one after multipling by
> BCACHE_MINORS.
> 
> Signed-off-by: Liang Chen <liangchen.linux@gmail.com>
> ---
>  drivers/md/bcache/super.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
> index e57353e..9f64477 100644
> --- a/drivers/md/bcache/super.c
> +++ b/drivers/md/bcache/super.c
> @@ -734,7 +734,8 @@ static void bcache_device_free(struct bcache_device *d)
>  	if (d->disk && d->disk->queue)
>  		blk_cleanup_queue(d->disk->queue);
>  	if (d->disk) {
> -		ida_simple_remove(&bcache_minor, d->disk->first_minor);
> +		ida_simple_remove(&bcache_minor,
> +				d->disk->first_minor / BCACHE_MINORS);
>  		put_disk(d->disk);
>  	}
>  
> @@ -784,7 +785,7 @@ static int bcache_device_init(struct bcache_device *d, unsigned block_size,
>  
>  	if (!(d->bio_split = bioset_create(4, offsetof(struct bbio, bio))) ||
>  	    !(d->disk = alloc_disk(BCACHE_MINORS))) {
> -		ida_simple_remove(&bcache_minor, minor);
> +		ida_simple_remove(&bcache_minor, minor / BCACHE_MINORS);
>  		return -ENOMEM;
>  	}
>  
> 

Hi Liang,

Junhui fixes it already, the patch is submitted to Jens Axboe already.
Maybe the patch will show up in next merge window.


-- 
Coly Li

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

* Re: [PATCH] bcache: release the allocated id, not its multiple of BCACHE_MINORS
  2017-06-23  7:30 ` Coly Li
@ 2017-06-23 11:36   ` Liang Chen
  0 siblings, 0 replies; 4+ messages in thread
From: Liang Chen @ 2017-06-23 11:36 UTC (permalink / raw)
  To: Coly Li; +Cc: linux-bcache, linux-kernel, colyli, bcache

Hi Coly,
Thanks for letting me know.  Glad to see it's fixed.

Thanks,
Liang

On Fri, Jun 23, 2017 at 3:30 PM, Coly Li <i@coly.li> wrote:
> On 2017/6/23 下午3:15, Liang Chen wrote:
>> The id passed to ida_simple_remove has to be the one originally
>> allocated with ida_simple_get, not the one after multipling by
>> BCACHE_MINORS.
>>
>> Signed-off-by: Liang Chen <liangchen.linux@gmail.com>
>> ---
>>  drivers/md/bcache/super.c | 5 +++--
>>  1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
>> index e57353e..9f64477 100644
>> --- a/drivers/md/bcache/super.c
>> +++ b/drivers/md/bcache/super.c
>> @@ -734,7 +734,8 @@ static void bcache_device_free(struct bcache_device *d)
>>       if (d->disk && d->disk->queue)
>>               blk_cleanup_queue(d->disk->queue);
>>       if (d->disk) {
>> -             ida_simple_remove(&bcache_minor, d->disk->first_minor);
>> +             ida_simple_remove(&bcache_minor,
>> +                             d->disk->first_minor / BCACHE_MINORS);
>>               put_disk(d->disk);
>>       }
>>
>> @@ -784,7 +785,7 @@ static int bcache_device_init(struct bcache_device *d, unsigned block_size,
>>
>>       if (!(d->bio_split = bioset_create(4, offsetof(struct bbio, bio))) ||
>>           !(d->disk = alloc_disk(BCACHE_MINORS))) {
>> -             ida_simple_remove(&bcache_minor, minor);
>> +             ida_simple_remove(&bcache_minor, minor / BCACHE_MINORS);
>>               return -ENOMEM;
>>       }
>>
>>
>
> Hi Liang,
>
> Junhui fixes it already, the patch is submitted to Jens Axboe already.
> Maybe the patch will show up in next merge window.
>
>
> --
> Coly Li

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

* Re: [PATCH] bcache: release the allocated id, not its multiple of BCACHE_MINORS
       [not found] ` <OF8F24365F.31FA34A2-ON48258148.00287923-48258148.002900E3@zte.com.cn>
@ 2017-06-23 11:39   ` Liang Chen
  0 siblings, 0 replies; 4+ messages in thread
From: Liang Chen @ 2017-06-23 11:39 UTC (permalink / raw)
  To: tang.junhui
  Cc: bcache, colyli, linux-bcache, linux-bcache-owner, linux-kernel

Sure! I will find you there:)

On Fri, Jun 23, 2017 at 3:28 PM,  <tang.junhui@zte.com.cn> wrote:
> Hello Liang chen:
>
> Please see this patch:
>
> http://www.spinics.net/lists/linux-bcache/msg04572.html
>
> Do you have a wechat account? please add me: tangjunhui1984
>
> We can talk more about bcache.
>
> Thanks.
>
>
>
> 发件人:         Liang Chen <liangchen.linux@gmail.com>
> 收件人:         linux-bcache@vger.kernel.org,
> 抄送:        linux-kernel@vger.kernel.org, colyli@suse.de,
> bcache@linux.ewheeler.net, Liang Chen <liangchen.linux@gmail.com>
> 日期:         2017/06/23 15:16
> 主题:        [PATCH] bcache: release the allocated id, not its multiple of
> BCACHE_MINORS
> 发件人:        linux-bcache-owner@vger.kernel.org
> ________________________________
>
>
>
> The id passed to ida_simple_remove has to be the one originally
> allocated with ida_simple_get, not the one after multipling by
> BCACHE_MINORS.
>
> Signed-off-by: Liang Chen <liangchen.linux@gmail.com>
> ---
> drivers/md/bcache/super.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
> index e57353e..9f64477 100644
> --- a/drivers/md/bcache/super.c
> +++ b/drivers/md/bcache/super.c
> @@ -734,7 +734,8 @@ static void bcache_device_free(struct bcache_device *d)
>                  if (d->disk && d->disk->queue)
>                                   blk_cleanup_queue(d->disk->queue);
>                  if (d->disk) {
> -                                  ida_simple_remove(&bcache_minor,
> d->disk->first_minor);
> +                                  ida_simple_remove(&bcache_minor,
> +
> d->disk->first_minor / BCACHE_MINORS);
>                                   put_disk(d->disk);
>                  }
>
> @@ -784,7 +785,7 @@ static int bcache_device_init(struct bcache_device *d,
> unsigned block_size,
>
>                  if (!(d->bio_split = bioset_create(4, offsetof(struct bbio,
> bio))) ||
>                      !(d->disk = alloc_disk(BCACHE_MINORS))) {
> -                                  ida_simple_remove(&bcache_minor, minor);
> +                                  ida_simple_remove(&bcache_minor, minor /
> BCACHE_MINORS);
>                                   return -ENOMEM;
>                  }
>
> --
> 1.8.3.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bcache" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>

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

end of thread, other threads:[~2017-06-23 11:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-23  7:15 [PATCH] bcache: release the allocated id, not its multiple of BCACHE_MINORS Liang Chen
2017-06-23  7:30 ` Coly Li
2017-06-23 11:36   ` Liang Chen
     [not found] ` <OF8F24365F.31FA34A2-ON48258148.00287923-48258148.002900E3@zte.com.cn>
2017-06-23 11:39   ` Liang Chen

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