Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755333AbbBPAGX (ORCPT ); Sun, 15 Feb 2015 19:06:23 -0500 Received: from smtprelay0168.hostedemail.com ([216.40.44.168]:49340 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755289AbbBPAGW (ORCPT ); Sun, 15 Feb 2015 19:06:22 -0500 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::,RULES_HIT:41:355:379:541:599:960:968:973:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1535:1544:1593:1594:1605:1711:1730:1747:1777:1792:2393:2553:2559:2562:2693:2828:3138:3139:3140:3141:3142:3622:3865:3866:3867:3868:3870:3871:3872:3873:3874:4321:5007:6121:6261:6757:7903:8660:10004:10226:10848:11026:11232:11658:11914:12043:12296:12517:12519:12663:12740:13019:13148:13230:13869:21080,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0 X-HE-Tag: cork52_1a3acf0092749 X-Filterd-Recvd-Size: 5105 Message-ID: <1424045178.8287.1.camel@perches.com> Subject: Re: [PATCH 6/9] nbd: Restructure debugging prints From: Joe Perches To: Markus Pargmann Cc: nbd-general@lists.sourceforge.net, linux-kernel@vger.kernel.org Date: Sun, 15 Feb 2015 16:06:18 -0800 In-Reply-To: <20150215222006.GC28491@pengutronix.de> References: <1423774657-12748-1-git-send-email-mpa@pengutronix.de> <1423774657-12748-7-git-send-email-mpa@pengutronix.de> <1423775328.15343.38.camel@perches.com> <20150213095850.GA10654@pengutronix.de> <1423821927.2795.3.camel@perches.com> <20150213112415.GD14438@pengutronix.de> <1423828086.2795.5.camel@perches.com> <20150215222006.GC28491@pengutronix.de> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.12.7-0ubuntu1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4154 Lines: 102 On Sun, 2015-02-15 at 23:20 +0100, Markus Pargmann wrote: > On Fri, Feb 13, 2015 at 03:48:06AM -0800, Joe Perches wrote: > > On Fri, 2015-02-13 at 12:24 +0100, Markus Pargmann wrote: > > > On Fri, Feb 13, 2015 at 02:05:27AM -0800, Joe Perches wrote: > > > > On Fri, 2015-02-13 at 10:58 +0100, Markus Pargmann wrote: > > > > > On Thu, Feb 12, 2015 at 01:08:48PM -0800, Joe Perches wrote: > > > > > > On Thu, 2015-02-12 at 21:57 +0100, Markus Pargmann wrote: > > > > > > > dprintk has some name collisions with other frameworks and drivers. It > > > > > > > is also not necessary to have these custom debug print filters. Dynamic > > > > > > > debug offers the same amount of filtered debugging. > > > > > > > > > > > > > > This patch replaces all dprintks with dev_dbg(). It also removes the > > > > > > > ioctl dprintk which prints the ingoing ioctls which should be > > > > > > > replaceable by strace or similar stuff. > > > > > > > > > > > > Perhaps add > > > > > > > > > > > > #define nbd_dbg(nbd, fmt, ...) \ > > > > > > dev_dbg(disk_to_dev((nbd)->disk), "%s: " fmt, \ > > > > > > nbd->disk->disk_name, ##__VA_ARGS__) > > > > > > > > > > I am not really happy with those custom debug print macros. What do you > > > > > think about an inline function 'nbd_to_dev' instead? > > > > > > > > Wouldn't that change the output? > > > > What would the output look like? > > > > > > I meant a function that just translates struct nbd_device* to struct > > > device*. That wouldn't change the output. > > > > > > > diff --git a/drivers/block/nbd.c b/drivers/block/nbd.c > > > > > > [] > > > > > > > +static void nbd_end_request(struct nbd_device *nbd, struct request *req) > > > > > > > { > > > > > > > int error = req->errors ? -EIO : 0; > > > > > > > struct request_queue *q = req->q; > > > > > > > unsigned long flags; > > > > > > > > > > > > > > - dprintk(DBG_BLKDEV, "%s: request %p: %s\n", req->rq_disk->disk_name, > > > > > > > - req, error ? "failed" : "done"); > > > > > > > + dev_dbg(disk_to_dev(nbd->disk), "%s: request %p: %s\n", > > > > > > > + req->rq_disk->disk_name, req, error ? "failed" : "done"); > > > > > > > > > > > > so this becomes > > > > > > > > > > > > nbd_dbg(nbd, "request %p: %s\n", > > > > > > req, error ? "failed" : "done"); > > > > > > > > > > so this would be: > > > > > nbd_dbg(nbd_to_dev(nbd), "request %p: %s\n", > > > > > req, error ? "failed" : "done"); > > > > > > > > I don't see much value in that style, > > > > but I don't manage the code either. > > > > > > Oh sorry, I meant to write: > > > dev_dbg(nbd_to_dev(nbd), "request %p: %s\n", > > > req, error ? "failed" : "done"); > > > > > > So the normal dev_dbg call is still there and the expression to get the > > > device from a nbd_device struct is shorter. > > > > Is nbd->disk->disk_name the same string as > > disk_to_dev((nbd)->disk)->name? > > > > What's the output of the conversion in this patch? > > Oh yes, thanks, that's twice the device name then. Will fix that. > > > > > - dprintk(DBG_BLKDEV, "%s: request %p: %s\n", req->rq_disk->disk_name, > > - req, error ? "failed" : "done"); > > + dev_dbg(disk_to_dev(nbd->disk), "%s: request %p: %s\n", > > + req->rq_disk->disk_name, req, error ? "failed" : "done"); > > > > Should this conversion be as you wrote above > > > > dev_dbg(nbd_to_dev(nbd), "request %p: %s\n", > > req, error ? "failed" : "done"); > > > > If so, then there's probably not much use in a > > custom nbd_dbg macro. > > > > There is some value though in classifying blocks of > > debugging output akin to the use of netif_msg_. > > > > That is lost with these conversions. > > It is still possible to enable/disable particular dev_dbg calls using > the dynamic debug interface. Yes, true, but not by type, only all/none/specific. I've previously proposed mechanisms to categorize dynamic debugging output by type. -- 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/