From fbbc785240296e150fe41b8a8495e7c2f94170d0 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Tue, 22 Jul 2008 18:05:50 +0000 Subject: [PATCH] Trivial commit to attempt to diagnose a svn problem. Add comment that Tivo disks are APM, but do not have a DDR record. --- sys/geom/part/g_part_apm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/geom/part/g_part_apm.c b/sys/geom/part/g_part_apm.c index 6ffc58cc5b0..1a6f5261c2d 100644 --- a/sys/geom/part/g_part_apm.c +++ b/sys/geom/part/g_part_apm.c @@ -323,6 +323,7 @@ g_part_apm_probe(struct g_part_table *basetable, struct g_consumer *cp) return (ENOSPC); /* Check that there's a Driver Descriptor Record (DDR). */ + /* XXX Tivo APM drives do not have a DDR */ buf = g_read_data(cp, 0L, pp->sectorsize, &error); if (buf == NULL) return (error);