Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755949AbYHOLK7 (ORCPT ); Fri, 15 Aug 2008 07:10:59 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753030AbYHOLKt (ORCPT ); Fri, 15 Aug 2008 07:10:49 -0400 Received: from mail.ukfsn.org ([77.75.108.10]:53285 "EHLO mail.ukfsn.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752941AbYHOLKs (ORCPT ); Fri, 15 Aug 2008 07:10:48 -0400 Date: Fri, 15 Aug 2008 12:10:45 +0100 From: Nick Warne To: linux-kernel@vger.kernel.org Cc: linux-scsi@vger.kernel.org Subject: [PATCH] Fixup KERN_INFO in tmscsim.c Message-ID: <20080815121045.48ca37e4@sauron.linicks.net> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.9; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/uefwVYMAj+4xtWZJbMG4sXN" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1757 Lines: 51 --MP_/uefwVYMAj+4xtWZJbMG4sXN Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all, Setting up my new AMD64 I noticed a curious one liner in syslogs: ^Iwith "disable_clustering=1" and report to maintainers The attached patch fixes this up so he goes back to his wife in /var/log/messages (or wherever KERN_INFO logs on the system): DC390: clustering now enabled by default. If you get problems load with "disable_clustering=1" and report to maintainers The patch was created on stable 2.6.26.2 git tree. Nick Signed off by: "Nick Warne" -- Free Software Foundation Associate Member 5508 --MP_/uefwVYMAj+4xtWZJbMG4sXN Content-Type: text/x-patch; name=tmscsim_warn.patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=tmscsim_warn.patch --- drivers/scsi/tmscsim.cORIG 2008-08-15 10:30:47.000000000 +0100 +++ drivers/scsi/tmscsim.c 2008-08-15 11:45:01.000000000 +0100 @@ -2573,8 +2573,8 @@ static int __init dc390_module_init(void) { if (!disable_clustering) - printk(KERN_INFO "DC390: clustering now enabled by default. If you get problems load\n" - "\twith \"disable_clustering=1\" and report to maintainers\n"); + printk(KERN_INFO "DC390: clustering now enabled by default. If you get problems load\n"); + printk(KERN_INFO "with \"disable_clustering=1\" and report to maintainers\n"); if (tmscsim[0] == -1 || tmscsim[0] > 15) { tmscsim[0] = 7; --MP_/uefwVYMAj+4xtWZJbMG4sXN-- -- 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/