Re: /proc/partitions broken in 2.5.23

Wayne Whitney (whitney@adsl-209-76-109-63.dsl.snfc21.pacbell.net)
Wed, 19 Jun 2002 10:18:53 -0700


In mailing-lists.linux-kernel, you wrote:

> I changed something here a few weeks ago. The idea was to avoid
> listing partitions of size 0 but do list full devices, regardless of
> size. Especially in case of removable media that is useful.

I traced the change to the part of mainline ChangeSet 1.496 given
below (warning: cut and pasted). It seems to cause every possible
device that a driver could provide to show up in /proc/partitions.
For LVM, that's a zillion devices, and /proc/partitions overflows,
showing some random pages from memory. Reverting the patch below
makes /proc/partitions and LVM happy again.

Cheers,
Wayne

--- a/drivers/block/genhd.c Wed May 8 09:53:06 2002
+++ b/drivers/block/genhd.c Sun Jun 9 18:58:36 2002
@@ -177,9 +177,10 @@
if (sgp == gendisk_head)
seq_puts(part, "major minor #blocks name\n\n");

- /* show all non-0 size partitions of this disk */
+ /* show the full disk and all non-0 size partitions of it */
for (n = 0; n < (sgp->nr_real << sgp->minor_shift); n++) {
- if (sgp->part[n].nr_sects == 0)
+ int minormask = (1<<sgp->minor_shift) - 1;
+ if ((n & minormask) && sgp->part[n].nr_sects == 0)
continue;
seq_printf(part, "%4d %4d %10d %s\n",
sgp->major, n, sgp->sizes[n],
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/