Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755594Ab1BXA5c (ORCPT ); Wed, 23 Feb 2011 19:57:32 -0500 Received: from mail.perches.com ([173.55.12.10]:3907 "EHLO mail.perches.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755079Ab1BXA5b (ORCPT ); Wed, 23 Feb 2011 19:57:31 -0500 Subject: RE: [PATCH 2/6] Staging: hv: hv.c Removed all DPRINT and debug - using pr_err now From: Joe Perches To: Hank Janssen Cc: Greg KH , "gregkh@suse.de" , "linux-kernel@vger.kernel.org" , "virtualization@lists.osdl.org" , "devel@linuxdriverproject.org" In-Reply-To: <8AFC7968D54FB448A30D8F38F259C56233FAE0E8@TK5EX14MBXC118.redmond.corp.microsoft.com> References: <1298417565-12356-1-git-send-email-hjanssen@microsoft.com> <1298417565-12356-2-git-send-email-hjanssen@microsoft.com> <20110223191533.GB1030@kroah.com> <8AFC7968D54FB448A30D8F38F259C56233FADA94@TK5EX14MBXC118.redmond.corp.microsoft.com> <20110223215658.GB16908@kroah.com> <8AFC7968D54FB448A30D8F38F259C56233FAE0E8@TK5EX14MBXC118.redmond.corp.microsoft.com> Content-Type: text/plain; charset="UTF-8" Date: Wed, 23 Feb 2011 16:57:29 -0800 Message-ID: <1298509049.32283.21.camel@Joe-Laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1496 Lines: 35 On Wed, 2011-02-23 at 23:17 +0000, Hank Janssen wrote: > > -----Original Message----- > > From: Greg KH [mailto:greg@kroah.com] > > Sent: Wednesday, February 23, 2011 1:57 PM > > They where compile and run tested. And syslog was not a mess. What did > > > I mess up here? The amount of printouts now are a fraction of what > > > they where before. > > You forgot to put '\n' at the end of all of your pr_XXX lines, so they will be > > merged with the next one, messing up your syslog. Joe also pointed this > > problem out. > > Take a look at your syslog to see what I am talking about... Greg, there probably isn't any problem with his syslog. Running together of messages without terminating newlines did used to happen though until commit 5fd29d6ccbc98884569d6f3105aeca70858b3e0f ("printk: clean up handling of log-levels and newlines") changed behavior so that newlines are emitted if necessary before every "<.>" loglevel but "". That means that adding trailing newlines to pr_ calls aren't _really_ necessary unless the pr_ is followed by a bare printk without KERN_. I still think it's better from a style perspective to keep adding terminating newlines until most all of the printks are converted to pr_. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/