svn commit: r239211 - head/sys/boot/i386/libi386

Andrey V. Elsukov ae at FreeBSD.org
Sun Aug 12 14:32:31 UTC 2012


Author: ae
Date: Sun Aug 12 14:32:30 2012
New Revision: 239211
URL: http://svn.freebsd.org/changeset/base/239211

Log:
  Add another debug message.

Modified:
  head/sys/boot/i386/libi386/biosdisk.c

Modified: head/sys/boot/i386/libi386/biosdisk.c
==============================================================================
--- head/sys/boot/i386/libi386/biosdisk.c	Sun Aug 12 14:16:21 2012	(r239210)
+++ head/sys/boot/i386/libi386/biosdisk.c	Sun Aug 12 14:32:30 2012	(r239211)
@@ -240,6 +240,8 @@ bd_int13probe(struct bdinfo *bd)
 		bd->bd_sectors = params.sectors;
 		bd->bd_sectorsize = params.sector_size;
 	}
+	DEBUG("unit 0x%x flags %x, sectors %llu, sectorsize %u",
+	    bd->bd_unit, bd->bd_flags, bd->bd_sectors, bd->bd_sectorsize);
 	return (1);
 }
 


More information about the svn-src-all mailing list