[PATCH] 2.4.18-rc3 Minor LDM fix

Richard Russon (rich@flatcap.org)
23 Jul 2002 14:06:11 +0100


Hi Marcelo,

Please can you apply this minor patch to fs/partitions/ldm.c
(support for Windows Dynamic Disks)

Cheers,
FlatCap (Rich)
ldm@flatcap.org

Some people have problems reading the end of the LDM database
which is at the end of the physical disk. This patch reduces
a couple of minor checks, to just debug output.

diff -urN linux-2.4.18-rc3/fs/partitions/ldm.c linux-2.4.18-rc3-ldm/fs/partitions/ldm.c
--- linux-2.4.18-rc3/fs/partitions/ldm.c Tue Jul 23 13:19:23 2002
+++ linux-2.4.18-rc3-ldm/fs/partitions/ldm.c Tue Jul 23 13:29:28 2002
@@ -796,7 +796,7 @@
err = parse_privhead(data, ph3);
put_dev_sector(sect);
if (err != 1)
- goto out;
+ printk(LDM_DEBUG "Couldn't read the third PRIVHEAD.\n");
err = compare_privheads(ph1, ph2);
if (err != 1) {
printk(LDM_CRIT "First and second PRIVHEADs don't match.\n");
@@ -804,7 +804,7 @@
}
err = compare_privheads(ph1, ph3);
if (err != 1)
- printk(LDM_CRIT "First and third PRIVHEADs don't match.\n");
+ printk(LDM_DEBUG "First and third PRIVHEADs don't match.\n");
else
/* We _could_ have checked more. */
ldm_debug("Validated PRIVHEADs successfully.\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/