Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752588AbYAOFD4 (ORCPT ); Tue, 15 Jan 2008 00:03:56 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751366AbYAOFDr (ORCPT ); Tue, 15 Jan 2008 00:03:47 -0500 Received: from pentafluge.infradead.org ([213.146.154.40]:43649 "EHLO pentafluge.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751315AbYAOFDq (ORCPT ); Tue, 15 Jan 2008 00:03:46 -0500 Message-ID: <478C3E81.3020007@torque.net> Date: Tue, 15 Jan 2008 00:02:57 -0500 From: Douglas Gilbert Reply-To: dougg@torque.net User-Agent: Thunderbird 2.0.0.9 (X11/20071115) MIME-Version: 1.0 To: Andi Kleen CC: James Bottomley , linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Only print SCSI data direction warning once for a command References: <200801020703.01180.ak@suse.de> <1200166584.3656.36.camel@localhost.localdomain> <200801131741.43173.ak@suse.de> In-Reply-To: <200801131741.43173.ak@suse.de> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2490 Lines: 69 Andi Kleen wrote: >> to the log because they come from printk_ratelimit(). So all you've >> done is halved the volume of flow to the logs and left a dangling printk >> suppressed message that keeps spewing, so I don't think the patch even >> does what you describe it as doing ... if you reverse the order of the >> operands in the if() it will ... > > Here's an updated patch with the reversed order. > > -Andi > > --- > > Only print SCSI data direction warning once for a command v2 > > When I use cdparanoia my logs get spammed a lot by > > printk: 464 messages suppressed. > sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--guessing data in; > program cdparanoia not setting count and/or reply_len properly > printk: 1078 messages suppressed. > > and many more of those. With this patch the message is only printed once > for a command in a row. > > v1->v2: Prevent rate limit messages too (pointed out by jejb) > > Signed-off-by: Andi Kleen > > --- > drivers/scsi/sg.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > Index: linux/drivers/scsi/sg.c > =================================================================== > --- linux.orig/drivers/scsi/sg.c > +++ linux/drivers/scsi/sg.c > @@ -602,8 +602,9 @@ sg_write(struct file *filp, const char _ > * but is is possible that the app intended SG_DXFER_TO_DEV, because there > * is a non-zero input_size, so emit a warning. > */ > - if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) > - if (printk_ratelimit()) > + if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) { > + static char cmd[TASK_COMM_LEN]; > + if (strcmp(current->comm, cmd) && printk_ratelimit()) { > printk(KERN_WARNING > "sg_write: data in/out %d/%d bytes for SCSI command 0x%x--" > "guessing data in;\n" KERN_WARNING " " > @@ -611,6 +612,9 @@ sg_write(struct file *filp, const char _ > old_hdr.reply_len - (int)SZ_SG_HEADER, > input_size, (unsigned int) cmnd[0], > current->comm); > + strcpy(cmd, current->comm); > + } > + } > k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking); > return (k < 0) ? k : count; > } > > Signed-off-by: Douglas Gilbert -- 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/