From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kurt Garloff Subject: Re: lots and lots of disks again Date: Tue, 10 Feb 2004 16:47:51 +0100 Sender: linux-scsi-owner@vger.kernel.org Message-ID: <20040210154751.GH4010@tpkurt.garloff.de> References: <20040204024512.5bf68428.akpm@osdl.org> <20040210110417.GB4010@tpkurt.garloff.de> <20040210112658.GC4010@tpkurt.garloff.de> <20040210133932.A3870@infradead.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zOcTNEe3AzgCmdo9" Return-path: Received: from ns.suse.de ([195.135.220.2]:38307 "EHLO Cantor.suse.de") by vger.kernel.org with ESMTP id S265941AbUBJPrx (ORCPT ); Tue, 10 Feb 2004 10:47:53 -0500 Content-Disposition: inline In-Reply-To: <20040210133932.A3870@infradead.org> List-Id: linux-scsi@vger.kernel.org To: Christoph Hellwig Cc: Andrew Morton , linux-scsi@vger.kernel.org, Badari Pulavarty , Matthew Wilcox , James Bottomley --zOcTNEe3AzgCmdo9 Content-Type: multipart/mixed; boundary="ZY5CS28jBCfb727c" Content-Disposition: inline --ZY5CS28jBCfb727c Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Christoph, On Tue, Feb 10, 2004 at 01:39:32PM +0000, Christoph "Nitpick" Hellwig wrote: > On Tue, Feb 10, 2004 at 12:26:58PM +0100, Kurt Garloff wrote: > > +#ifdef CONFIG_EMBEDDED > > +# define SD_DISKS 256 > > +#else > > +# define SD_DISKS 32768 // we can raise this to 262144 if needed > > +#endif >=20 > Umm, using CONFIG_EMBEDDED doesn't mean no config option - it just mean > another config option which no-one would think of changing the number of > support scsi disks. I don't think a 4k array is too much for any normal machine. Given the overhead that registering the gendisks ... generate. Embedded has special requirements and for them saving 4k is probably worth it. Thus I did them the favour.=20 Of course knowing that you could attack. But you should check for more=20 side-effects of CONFIG_EMBEDDED before you attack this particular one ... and tell us about embedded devices that have access to more than 256 SCSI= =20 disks. Anyway, I can throw it out, and wait if the embedded people complain. > Really, any solution that requires huge static allocations is wrong. The > bitmap either needs to be replaced with a saner algorithm or dynamic > allocation and reallocation on growth. Since when is 4k huge? Sorry, I don't see any benefit in adding complexity to avoid a 4k array. > > +static int inv_sd_major(int major) [...] > > +unsigned int dev_to_sd_nr(unsigned int dev) { [...] > > +unsigned int dev_to_sd_part(unsigned int dev) { [...] >=20 > Maybe I missed something but this seems completely unused? Right, Matthew provided the reverse mapping, despite the fact that we don't need them, as it's just done by pointer deref ... We may need them later though, if we ever go for 64 partitions per disk. So I left them in. Probably we should comment them out, so the compiler does not see them for now. Or stick them in the docu. > Also please follow the coding style guidelines, that is opening brace > for functions on the next line and non-exported functions always static. Will do. Regards, --=20 Kurt Garloff Cologne, DE=20 SUSE LINUX AG, Nuernberg, DE SUSE Labs (Head) --ZY5CS28jBCfb727c Content-Type: text/plain; charset=us-ascii Content-Description: scsi-many-26-2.diff Content-Disposition: attachment; filename="scsi-many-26-2.diff" Content-Transfer-Encoding: quoted-printable --- drivers/scsi/sd.c.orig 2004-01-09 07:59:49.000000000 +0100 +++ drivers/scsi/sd.c 2004-02-10 16:37:59.354806838 +0100 @@ -19,6 +19,9 @@ * not being read in sd_open. Fix problem where removable media=20 * could be ejected after sd_open. * - Douglas Gilbert cleanup for lk 2.5.x + * - Badari Pulavarty , Matthew Wilcox=20 + * , Kurt Garloff :=20 + * Support 256k disks (with potentially 64 partitions, TBD). * * Logging policy (needs CONFIG_SCSI_LOGGING defined): * - setting up transfer: SCSI_LOG_HLQUEUE levels 1 and 2 @@ -61,7 +64,7 @@ * Remaining dev_t-handling stuff */ #define SD_MAJORS 16 -#define SD_DISKS (SD_MAJORS << 4) +#define SD_DISKS 32768 // anything between 256 and 262144 =20 /* * Time out in seconds for disks and Magneto-opticals (which are slower). @@ -121,6 +124,22 @@ .init_command =3D sd_init_command, }; =20 +/* Major / minor to disk mapping, from Matthew Wilcox, corrected + * (mail to linux-scsi@vger.kernel.org from 2003-10-16) + *=20 + * major p2 disc2 disc p1 + * |............|..|..........|....|....| <- dev_t + * 31 20 17 8 7 4 3 0 + *=20 + * We allow 64 partitions per disk, by adding two more bits. + * Inside a major, we have 16k disks, however mapped non- + * contiguously. The first 16 disks are for major0, the next + * ones with major1, ... Disk 256 is for major0 again, disk 272=20 + * for major1, ...=20 + * We can't currently use the partitions beyond 16, as the + * genhd infrastructure expects contiguous minors. + */ + static int sd_major(int major_idx) { switch (major_idx) { @@ -136,6 +155,42 @@ } } =20 +static unsigned int make_sd_dev(unsigned int sd_nr, unsigned int part) +{ + return (part & 0xf) | ((part & 0x30) << 14) | ((sd_nr & 0xf) << 4) | + (sd_major((sd_nr & 0xf0) >> 4) << 20) | (sd_nr & 0x3ff00); +} + +#if 0 +/* Reverse mapping, not needed at the moment */ + +static int inv_sd_major(int major) +{ + switch (major) { + case SCSI_DISK0_MAJOR: + return 0; + case SCSI_DISK1_MAJOR ... SCSI_DISK7_MAJOR: + return major + 1 - SCSI_DISK1_MAJOR; + case SCSI_DISK8_MAJOR ... SCSI_DISK15_MAJOR: + return major + 8 - SCSI_DISK8_MAJOR; + default: + BUG(); + return 0; /* shut up gcc */ + } +} + +static unsigned int dev_to_sd_nr(unsigned int dev)=20 +{ + return ((dev >> 4) & 15) | (inv_sd_major(dev >> 20) << 4) | + (dev & 0x3ff00); +} + +static unsigned int dev_to_sd_part(unsigned int dev)=20 +{ + return (dev & 15) | ((dev >> 14) & 0x30); +} +#endif + #define to_scsi_disk(obj) container_of(obj,struct scsi_disk,kobj); =20 static inline struct scsi_disk *scsi_disk(struct gendisk *disk) @@ -1297,7 +1352,7 @@ struct scsi_disk *sdkp; struct gendisk *gd; u32 index; - int error; + int error, devno; =20 error =3D -ENODEV; if ((sdp->type !=3D TYPE_DISK) && (sdp->type !=3D TYPE_MOD)) @@ -1315,6 +1370,12 @@ kobject_init(&sdkp->kobj); sdkp->kobj.ktype =3D &scsi_disk_kobj_type; =20 + /* Note: We can accomodate 64 partitions, but the genhd code + * assumes partitions allocate consecutive minors, which they don't. + * So for now stay with max 16 partitions and leave two spare bits.=20 + * Later, we may change the genhd code and the alloc_disk() call + * and the ->minors assignment here. KG, 2004-02-10 + */=20 gd =3D alloc_disk(16); if (!gd) goto out_free; @@ -1335,16 +1396,23 @@ sdkp->index =3D index; sdkp->openers =3D 0; =20 - gd->major =3D sd_major(index >> 4); - gd->first_minor =3D (index & 15) << 4; + devno =3D make_sd_dev(index, 0); + gd->major =3D MAJOR(devno); + gd->first_minor =3D MINOR(devno); gd->minors =3D 16; gd->fops =3D &sd_fops; =20 - if (index >=3D 26) { + if (index < 26) { + sprintf(gd->disk_name, "sd%c", 'a' + index % 26); + } else if (index < (26*27)) { sprintf(gd->disk_name, "sd%c%c", - 'a' + index/26-1,'a' + index % 26); + 'a' + index / 26 - 1,'a' + index % 26); } else { - sprintf(gd->disk_name, "sd%c", 'a' + index % 26); + const unsigned int m1 =3D (index / 26 - 1) / 26 - 1; + const unsigned int m2 =3D (index / 26 - 1) % 26; + const unsigned int m3 =3D index % 26; + sprintf(gd->disk_name, "sd%c%c%c", + 'a' + m1, 'a' + m2, 'a' + m3); } =20 strcpy(gd->devfs_name, sdp->devfs_name); --ZY5CS28jBCfb727c-- --zOcTNEe3AzgCmdo9 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (GNU/Linux) iD8DBQFAKP0mxmLh6hyYd04RAklVAJ422ZUz27pEw5FocY8nhEIoJJq+fgCgwyuF +0SFE1+6NePs6mF/qSzkcSU= =zEhO -----END PGP SIGNATURE----- --zOcTNEe3AzgCmdo9--