* [PATCH] MTP FUSION: resending patch to disable MSI interrupt by defualt.
@ 2009-02-22 10:49 Kashyap, Desai
2009-02-22 14:48 ` James Bottomley
0 siblings, 1 reply; 3+ messages in thread
From: Kashyap, Desai @ 2009-02-22 10:49 UTC (permalink / raw)
To: linux-scsi; +Cc: James.Bottomley, Eric.Moore, Sathya.Prakash
This Patch is submitted to with reference to MSI issue with some of LSI
controller. Disabling it by default when module is loaded.
---
Signed-off-by: Kashyap Desai <kadesai@lsi.com>
---
diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c
index 96ac883..ea3aafb 100644
--- a/drivers/message/fusion/mptbase.c
+++ b/drivers/message/fusion/mptbase.c
@@ -91,9 +91,9 @@ MODULE_PARM_DESC(mpt_msi_enable_fc, " Enable MSI Support for FC \
controllers (default=0)");
static int mpt_msi_enable_sas;
-module_param(mpt_msi_enable_sas, int, 1);
+module_param(mpt_msi_enable_sas, int, 0);
MODULE_PARM_DESC(mpt_msi_enable_sas, " Enable MSI Support for SAS \
- controllers (default=1)");
+ controllers (default=0)");
static int mpt_channel_mapping;
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] MTP FUSION: resending patch to disable MSI interrupt by defualt.
2009-02-22 10:49 [PATCH] MTP FUSION: resending patch to disable MSI interrupt by defualt Kashyap, Desai
@ 2009-02-22 14:48 ` James Bottomley
2009-02-23 4:43 ` Desai, Kashyap
0 siblings, 1 reply; 3+ messages in thread
From: James Bottomley @ 2009-02-22 14:48 UTC (permalink / raw)
To: Kashyap, Desai; +Cc: linux-scsi, Eric.Moore, Sathya.Prakash
On Sun, 2009-02-22 at 16:19 +0530, Kashyap, Desai wrote:
> This Patch is submitted to with reference to MSI issue with some of LSI
> controller. Disabling it by default when module is loaded.
Point of order here: this is *not* a resend of a previous patch. This
is a bug fix of a previously sent patch (With a change in intended
behaviour).
> Signed-off-by: Kashyap Desai <kadesai@lsi.com>
> ---
> diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c
> index 96ac883..ea3aafb 100644
> --- a/drivers/message/fusion/mptbase.c
> +++ b/drivers/message/fusion/mptbase.c
> @@ -91,9 +91,9 @@ MODULE_PARM_DESC(mpt_msi_enable_fc, " Enable MSI Support for FC \
> controllers (default=0)");
>
> static int mpt_msi_enable_sas;
> -module_param(mpt_msi_enable_sas, int, 1);
> +module_param(mpt_msi_enable_sas, int, 0);
This is the actual bug fix, which isn't mentioned anywhere in the change
log
> MODULE_PARM_DESC(mpt_msi_enable_sas, " Enable MSI Support for SAS \
> - controllers (default=1)");
> + controllers (default=0)");
This entire patch is also functionally identical to the second patch in
this email from Yinghai Lu:
http://marc.info/?l=linux-scsi&m=123498532419609
Open Source is a co-operative effort: The only thing you get at the end
of the day is kudos for finding (and possibly fixing) a bug, so since
Yinghai Lu did all the heavy lifting in this regard, I'll take this as
an ack of his patch.
James
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] MTP FUSION: resending patch to disable MSI interrupt by defualt.
2009-02-22 14:48 ` James Bottomley
@ 2009-02-23 4:43 ` Desai, Kashyap
0 siblings, 0 replies; 3+ messages in thread
From: Desai, Kashyap @ 2009-02-23 4:43 UTC (permalink / raw)
To: James Bottomley; +Cc: linux-scsi@vger.kernel.org, Moore, Eric, Prakash, Sathya
James,
Sorry for mail id problem. It is Kashyap.desai@lsi.com I used alias instead of SMTP mail id. I will make sure I use SMTP mail id in future.
Patch by Yinghai at http://marc.info/?l=linux-scsi&m=123498532419609
and which I have sent is similar. It is ACK for Yinghai's patch.
Thanks
Kashyap
-----Original Message-----
From: James Bottomley [mailto:James.Bottomley@HansenPartnership.com]
Sent: Sunday, February 22, 2009 8:18 PM
To: Desai, Kashyap
Cc: linux-scsi@vger.kernel.org; Moore, Eric; Prakash, Sathya
Subject: Re: [PATCH] MTP FUSION: resending patch to disable MSI interrupt by defualt.
On Sun, 2009-02-22 at 16:19 +0530, Kashyap, Desai wrote:
> This Patch is submitted to with reference to MSI issue with some of LSI
> controller. Disabling it by default when module is loaded.
Point of order here: this is *not* a resend of a previous patch. This
is a bug fix of a previously sent patch (With a change in intended
behaviour).
> Signed-off-by: Kashyap Desai <kadesai@lsi.com>
> ---
> diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c
> index 96ac883..ea3aafb 100644
> --- a/drivers/message/fusion/mptbase.c
> +++ b/drivers/message/fusion/mptbase.c
> @@ -91,9 +91,9 @@ MODULE_PARM_DESC(mpt_msi_enable_fc, " Enable MSI Support for FC \
> controllers (default=0)");
>
> static int mpt_msi_enable_sas;
> -module_param(mpt_msi_enable_sas, int, 1);
> +module_param(mpt_msi_enable_sas, int, 0);
This is the actual bug fix, which isn't mentioned anywhere in the change
log
> MODULE_PARM_DESC(mpt_msi_enable_sas, " Enable MSI Support for SAS \
> - controllers (default=1)");
> + controllers (default=0)");
This entire patch is also functionally identical to the second patch in
this email from Yinghai Lu:
http://marc.info/?l=linux-scsi&m=123498532419609
Open Source is a co-operative effort: The only thing you get at the end
of the day is kudos for finding (and possibly fixing) a bug, so since
Yinghai Lu did all the heavy lifting in this regard, I'll take this as
an ack of his patch.
James
Internal Virus Database is out of date.
Checked by AVG - http://www.avg.com
Version: 8.0.233 / Virus Database: 270.6.6/1631 - Release Date: 8/24/2008 12:15 PM
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-02-23 4:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-22 10:49 [PATCH] MTP FUSION: resending patch to disable MSI interrupt by defualt Kashyap, Desai
2009-02-22 14:48 ` James Bottomley
2009-02-23 4:43 ` Desai, Kashyap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox