From owner-svn-src-stable-6@FreeBSD.ORG Thu Dec 24 12:31:27 2009 Return-Path: Delivered-To: svn-src-stable-6@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BB1A106566C; Thu, 24 Dec 2009 12:31:27 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 60BA78FC0A; Thu, 24 Dec 2009 12:31:27 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nBOCVR5R030388; Thu, 24 Dec 2009 12:31:27 GMT (envelope-from nyan@svn.freebsd.org) Received: (from nyan@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nBOCVRrS030385; Thu, 24 Dec 2009 12:31:27 GMT (envelope-from nyan@svn.freebsd.org) Message-Id: <200912241231.nBOCVRrS030385@svn.freebsd.org> From: Takahashi Yoshihiro Date: Thu, 24 Dec 2009 12:31:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r200939 - in stable/6/sys/boot: i386/libi386 pc98/libpc98 X-BeenThere: svn-src-stable-6@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 6-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Dec 2009 12:31:27 -0000 Author: nyan Date: Thu Dec 24 12:31:27 2009 New Revision: 200939 URL: http://svn.freebsd.org/changeset/base/200939 Log: MFC: revision 200631 Fix debug messages of bd_io(). Modified: stable/6/sys/boot/i386/libi386/biosdisk.c stable/6/sys/boot/pc98/libpc98/biosdisk.c Directory Properties: stable/6/sys/ (props changed) stable/6/sys/contrib/pf/ (props changed) stable/6/sys/dev/cxgb/ (props changed) Modified: stable/6/sys/boot/i386/libi386/biosdisk.c ============================================================================== --- stable/6/sys/boot/i386/libi386/biosdisk.c Thu Dec 24 12:27:22 2009 (r200938) +++ stable/6/sys/boot/i386/libi386/biosdisk.c Thu Dec 24 12:31:27 2009 (r200939) @@ -1268,11 +1268,11 @@ bd_io(struct open_disk *od, daddr_t dblk } if (write) - DEBUG("%d sectors from %lld to %p (0x%x) %s", x, dblk, p, VTOP(p), - result ? "failed" : "ok"); + DEBUG("Write %d sector(s) from %p (0x%x) to %lld %s", x, + p, VTOP(p), dblk, result ? "failed" : "ok"); else - DEBUG("%d sectors from %p (0x%x) to %lld %s", x, p, VTOP(p), dblk, - result ? "failed" : "ok"); + DEBUG("Read %d sector(s) from %lld to %p (0x%x) %s", x, + dblk, p, VTOP(p), result ? "failed" : "ok"); if (result) { return(-1); } Modified: stable/6/sys/boot/pc98/libpc98/biosdisk.c ============================================================================== --- stable/6/sys/boot/pc98/libpc98/biosdisk.c Thu Dec 24 12:27:22 2009 (r200938) +++ stable/6/sys/boot/pc98/libpc98/biosdisk.c Thu Dec 24 12:31:27 2009 (r200939) @@ -846,11 +846,11 @@ bd_io(struct open_disk *od, daddr_t dblk } if (write) - DEBUG("%d sectors from %lld to %p (0x%x) %s", x, dblk, p, VTOP(p), - result ? "failed" : "ok"); + DEBUG("Write %d sector(s) from %p (0x%x) to %lld %s", x, + p, VTOP(p), dblk, result ? "failed" : "ok"); else - DEBUG("%d sectors from %p (0x%x) to %lld %s", x, p, VTOP(p), dblk, - result ? "failed" : "ok"); + DEBUG("Read %d sector(s) from %lld to %p (0x%x) %s", x, + dblk, p, VTOP(p), result ? "failed" : "ok"); if (result) { return(-1); } From owner-svn-src-stable-6@FreeBSD.ORG Thu Dec 24 20:36:38 2009 Return-Path: Delivered-To: svn-src-stable-6@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C63E106566B; Thu, 24 Dec 2009 20:36:38 +0000 (UTC) (envelope-from roam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1B0258FC0C; Thu, 24 Dec 2009 20:36:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nBOKacw8040731; Thu, 24 Dec 2009 20:36:38 GMT (envelope-from roam@svn.freebsd.org) Received: (from roam@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nBOKabMv040729; Thu, 24 Dec 2009 20:36:37 GMT (envelope-from roam@svn.freebsd.org) Message-Id: <200912242036.nBOKabMv040729@svn.freebsd.org> From: Peter Pentchev Date: Thu, 24 Dec 2009 20:36:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r200964 - stable/6/lib/libc/locale X-BeenThere: svn-src-stable-6@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 6-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Dec 2009 20:36:38 -0000 Author: roam (doc,ports committer) Date: Thu Dec 24 20:36:37 2009 New Revision: 200964 URL: http://svn.freebsd.org/changeset/base/200964 Log: MFC r199244: Fix the grammar in the isgraph(3) description, almost as per the PR. PR: 140455 Submitted by: Jeremy Huddleston Modified: stable/6/lib/libc/locale/isgraph.3 Directory Properties: stable/6/lib/libc/ (props changed) Modified: stable/6/lib/libc/locale/isgraph.3 ============================================================================== --- stable/6/lib/libc/locale/isgraph.3 Thu Dec 24 20:35:41 2009 (r200963) +++ stable/6/lib/libc/locale/isgraph.3 Thu Dec 24 20:36:37 2009 (r200964) @@ -54,7 +54,7 @@ The function tests for any printing character except space .Pq Ql "\ " and other -locale specific space-like characters. +locale-specific space-like characters. For single C .Va char Ns s locales (see