From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id 415FD96 for ; Fri, 31 Jul 2015 17:08:29 +0000 (UTC) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id EEBAB186 for ; Fri, 31 Jul 2015 17:08:27 +0000 (UTC) Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id D0E29207A8 for ; Fri, 31 Jul 2015 13:08:26 -0400 (EDT) Date: Fri, 31 Jul 2015 10:08:25 -0700 From: Greg KH To: Guenter Roeck Message-ID: <20150731170825.GA2721@kroah.com> References: <55BAE39F.9060705@oracle.com> <20150731165915.GA4995@roeck-us.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150731165915.GA4995@roeck-us.net> Cc: Sasha Levin , "ksummit-discuss@lists.linuxfoundation.org" Subject: Re: [Ksummit-discuss] Self nomination List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Fri, Jul 31, 2015 at 09:59:15AM -0700, Guenter Roeck wrote: > Hi Bjorn, > > On Fri, Jul 31, 2015 at 11:27:38AM -0500, Bjorn Helgaas wrote: > > On Thu, Jul 30, 2015 at 9:55 PM, Sasha Levin wrote: > > > Mainly I'd like to talk about improving testing around the kernel, both by catching bugs > > > and by improving the quality of debug output that comes out of the kernel. > > > > What sort of debug output improvements are you interested in? I spend > > a fair amount of time converting to dev_printk and %pR. They make the > > I have been wondering about that, especially since dev_dbg() and > 'dev_printk(KERN_DEBUG, ...)' are semantically different. Any reason > for preferring dev_printk() over dev_dbg() ? The opposite is true, please always use dev_dbg() as it properly ties into the overall kernel-wide dynamic debug infrastructure, providing a unified way to enable/disable debug messages, or even, compiling them out if none are wanted due to size constraints. thanks, greg k-h