From owner-freebsd-stable@FreeBSD.ORG Wed Jan 13 16:44:40 2010 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EEB3C106566B for ; Wed, 13 Jan 2010 16:44:40 +0000 (UTC) (envelope-from spawk@acm.poly.edu) Received: from acm.poly.edu (acm.poly.edu [128.238.9.200]) by mx1.freebsd.org (Postfix) with ESMTP id 8BE308FC0A for ; Wed, 13 Jan 2010 16:44:40 +0000 (UTC) Received: (qmail 74931 invoked from network); 13 Jan 2010 16:44:39 -0000 Received: from unknown (HELO ?10.0.0.158?) (spawk@128.238.64.31) by acm.poly.edu with AES256-SHA encrypted SMTP; 13 Jan 2010 16:44:39 -0000 Message-ID: <4B4DF85F.8070303@acm.poly.edu> Date: Wed, 13 Jan 2010 11:44:15 -0500 From: Boris Kochergin User-Agent: Thunderbird 2.0.0.23 (X11/20091021) MIME-Version: 1.0 To: Christoffer Persson References: <201001131300.13098.doconnor@gsoft.com.au> <201001130945.18190.jhb@freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "freebsd-stable@freebsd.org" Subject: Re: Oddities in dmesg X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jan 2010 16:44:41 -0000 Christoffer Persson wrote: > I've recently rebooted one of our servers running FreeBSD 7.2-RELEASE-p4. I found this oddity in the boot message: > > GEOM_LABEL: Label for provider da0s1a is ufsid/48b6d1673e4caa72. > GEOM_LABEL: Label ufsid/48b6d1673e4caa72 removed. > > GEOM_WLAARBNEILN:G : L/atbmepl wuafss indo/t4 8pbr6odp1e6r7lay3 addi0s1m3odu nrteemdov > ed. > > GEOM_LABEL: Label ufsid/48b6d167a8e1f985 removed. > WARNING: /usr was not properly dismounted > > > Just repeated once, looks like it's a garble between two lines in the boot message. Has anyone seen this happening before > or any idea what made it happen? > > /Christoffer Persson_______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > Yeah, this is due to lack of synchronization between multiple pieces of code wanting to print something in parallel. I don't know if anything can be done about it in 7.x, but the "PRINTF_BUFR_SIZE=128" option in the GENERIC kernel for 8.x takes care of it. -Boris