Message ID | 20230606193845.9627-2-mwilck@suse.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | scsi: fixes for targets with many LUNs | expand |
On Tue, Jun 06, 2023 at 09:38:43PM +0200, mwilck@suse.com wrote: > From: Hannes Reinecke <hare@suse.de> > > Larger setups may need to allocate more than 32k bsg devices, so > increase the number of devices to the full range of minor device > numbers. > > Signed-off-by: Hannes Reinecke <hare@suse.de> Martin, if you send this on it also needs your signoff. Otherwise looks good: Reviewed-by: Christoph Hellwig <hch@lst.de>
diff --git a/block/bsg.c b/block/bsg.c index 7eca43f33d7f..c53f24243bf2 100644 --- a/block/bsg.c +++ b/block/bsg.c @@ -36,7 +36,7 @@ static inline struct bsg_device *to_bsg_device(struct inode *inode) } #define BSG_DEFAULT_CMDS 64 -#define BSG_MAX_DEVS 32768 +#define BSG_MAX_DEVS (1 << MINORBITS) static DEFINE_IDA(bsg_minor_ida); static struct class *bsg_class;