From owner-svn-src-head@FreeBSD.ORG Sun Aug 12 14:32:31 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 038F4106566B; Sun, 12 Aug 2012 14:32:31 +0000 (UTC) (envelope-from ae@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E37418FC12; Sun, 12 Aug 2012 14:32:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7CEWUQN096201; Sun, 12 Aug 2012 14:32:30 GMT (envelope-from ae@svn.freebsd.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7CEWUR3096199; Sun, 12 Aug 2012 14:32:30 GMT (envelope-from ae@svn.freebsd.org) Message-Id: <201208121432.q7CEWUR3096199@svn.freebsd.org> From: "Andrey V. Elsukov" Date: Sun, 12 Aug 2012 14:32:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r239211 - head/sys/boot/i386/libi386 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2012 14:32:31 -0000 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); }