* [PATCHv2 7/7] mtd: Raise limit on block device minor numbers
@ 2010-01-12 23:10 Ben Hutchings
2010-01-14 19:19 ` Ben Hutchings
0 siblings, 1 reply; 2+ messages in thread
From: Ben Hutchings @ 2010-01-12 23:10 UTC (permalink / raw)
To: David Woodhouse; +Cc: linux-net-drivers, linux-mtd
add_mtd_blktrans_dev() imposes a maximum of 257 devices per block
translator. This was presumably meant to prevent overflow back in the
days of 8-bit minor numbers. Since we now have 20-bit minor numbers
and can have more than 32 MTDs, change the maximum to MINORMASK.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
---
drivers/mtd/mtd_blkdevs.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/mtd_blkdevs.c b/drivers/mtd/mtd_blkdevs.c
index 85a52b3..5e88b49 100644
--- a/drivers/mtd/mtd_blkdevs.c
+++ b/drivers/mtd/mtd_blkdevs.c
@@ -242,7 +242,7 @@ int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
if (new->devnum == -1)
new->devnum = last_devnum+1;
- if ((new->devnum << tr->part_bits) > 256) {
+ if ((new->devnum << tr->part_bits) > MINORMASK) {
return -EBUSY;
}
--
1.5.5
--
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCHv2 7/7] mtd: Raise limit on block device minor numbers
2010-01-12 23:10 [PATCHv2 7/7] mtd: Raise limit on block device minor numbers Ben Hutchings
@ 2010-01-14 19:19 ` Ben Hutchings
0 siblings, 0 replies; 2+ messages in thread
From: Ben Hutchings @ 2010-01-14 19:19 UTC (permalink / raw)
To: David Woodhouse; +Cc: linux-net-drivers, linux-mtd
On Tue, 2010-01-12 at 23:10 +0000, Ben Hutchings wrote:
> add_mtd_blktrans_dev() imposes a maximum of 257 devices per block
> translator. This was presumably meant to prevent overflow back in the
> days of 8-bit minor numbers. Since we now have 20-bit minor numbers
> and can have more than 32 MTDs, change the maximum to MINORMASK.
>
> Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
> ---
> drivers/mtd/mtd_blkdevs.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/mtd/mtd_blkdevs.c b/drivers/mtd/mtd_blkdevs.c
> index 85a52b3..5e88b49 100644
> --- a/drivers/mtd/mtd_blkdevs.c
> +++ b/drivers/mtd/mtd_blkdevs.c
> @@ -242,7 +242,7 @@ int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
> if (new->devnum == -1)
> new->devnum = last_devnum+1;
>
> - if ((new->devnum << tr->part_bits) > 256) {
> + if ((new->devnum << tr->part_bits) > MINORMASK) {
Actually this still has a boundary error. I think the correct condition
is:
new->devnum > (MINORMASK >> tr->part_bits)
Ben.
> return -EBUSY;
> }
>
> --
> 1.5.5
>
--
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-01-14 19:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-12 23:10 [PATCHv2 7/7] mtd: Raise limit on block device minor numbers Ben Hutchings
2010-01-14 19:19 ` Ben Hutchings
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox