LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* RE: [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB cmds with sense info
@ 2008-02-22 16:17 Yang, Bo
2008-02-22 16:24 ` Matthew Wilcox
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Yang, Bo @ 2008-02-22 16:17 UTC (permalink / raw)
To: Yang, Bo, Matthew Wilcox
Cc: linux-scsi, James.Bottomley, akpm, linux-kernel, Patro, Sumant,
Kolli, Neela
James,
What is the status for this patch? We need to submit more patches based
on the acceptance of this patch.
Thanks.
Bo Yang
-----Original Message-----
From: Yang, Bo
Sent: Thursday, November 29, 2007 1:24 PM
To: 'Matthew Wilcox'
Cc: linux-scsi@vger.kernel.org; James.Bottomley@SteelEye.com;
akpm@osdl.org; linux-kernel@vger.kernel.org; Patro, Sumant; Kolli, Neela
Subject: RE: [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB
cmds with sense info
Matthew,
I think my last email confused you. Here are the points for submitting
this patch:
1. It is only to add the ia64 support to our driver. This is why we add
the ia64 flag.
2. We did not change the implementation for x86 and x86_64. The
implementation for them with u32 * is there from day one.
3. What I wanted to convey in my previous mail is that if one uses a 64
bit application (s)he may need to test for all functionality again.
Regards.
Bo Yang
-----Original Message-----
From: Matthew Wilcox [mailto:matthew@wil.cx]
Sent: Wednesday, November 28, 2007 2:27 PM
To: Yang, Bo
Cc: linux-scsi@vger.kernel.org; James.Bottomley@SteelEye.com;
akpm@osdl.org; linux-kernel@vger.kernel.org; Patro, Sumant; Kolli, Neela
Subject: Re: [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB
cmds with sense info
On Wed, Nov 28, 2007 at 12:08:37PM -0700, Yang, Bo wrote:
> Matthew,
>
> Yes, as I mentioned, our applications are built in 32-bit environment
> (except for ia64).
> We may see a different behavior if we build it in 64-bit for x86-64.
Then this patch isn't acceptable. You need to find a way which works
for both 32-bit and 64-bit applications.
--
Intel are signing my paycheques ... these opinions are still mine "Bill,
look, we understand that you're interested in selling us this operating
system, but compare it to ours. We can't possibly take such a
retrograde step."
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB cmds with sense info
2008-02-22 16:17 [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB cmds with sense info Yang, Bo
@ 2008-02-22 16:24 ` Matthew Wilcox
2008-02-22 16:27 ` James Bottomley
2008-02-22 16:35 ` James Bottomley
2 siblings, 0 replies; 5+ messages in thread
From: Matthew Wilcox @ 2008-02-22 16:24 UTC (permalink / raw)
To: Yang, Bo
Cc: linux-scsi, James.Bottomley, akpm, linux-kernel, Patro, Sumant,
Kolli, Neela
On Fri, Feb 22, 2008 at 09:17:33AM -0700, Yang, Bo wrote:
> James,
>
> What is the status for this patch? We need to submit more patches based
> on the acceptance of this patch.
I've NAKed it. You need to use compat_ioctl. That way your code will
work even if you run a 32-bit x86 application on ia64 (or a 64-bit
application on x86).
--
Intel are signing my paycheques ... these opinions are still mine
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours. We can't possibly take such
a retrograde step."
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB cmds with sense info
2008-02-22 16:17 [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB cmds with sense info Yang, Bo
2008-02-22 16:24 ` Matthew Wilcox
@ 2008-02-22 16:27 ` James Bottomley
2008-02-22 16:35 ` James Bottomley
2 siblings, 0 replies; 5+ messages in thread
From: James Bottomley @ 2008-02-22 16:27 UTC (permalink / raw)
To: Yang, Bo
Cc: Matthew Wilcox, linux-scsi, akpm, linux-kernel, Patro, Sumant,
Kolli, Neela
On Fri, 2008-02-22 at 09:17 -0700, Yang, Bo wrote:
> James,
>
> What is the status for this patch? We need to submit more patches based
> on the acceptance of this patch.
Sorry, I didn't actually get this message because that was in the window
when my email server dropped off the internet.
You'll have to give me time to dig up the threads on marc.info and read
them.
James
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB cmds with sense info
2008-02-22 16:17 [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB cmds with sense info Yang, Bo
2008-02-22 16:24 ` Matthew Wilcox
2008-02-22 16:27 ` James Bottomley
@ 2008-02-22 16:35 ` James Bottomley
2008-02-25 21:30 ` [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDBcmds " Yang, Bo
2 siblings, 1 reply; 5+ messages in thread
From: James Bottomley @ 2008-02-22 16:35 UTC (permalink / raw)
To: Yang, Bo
Cc: Matthew Wilcox, linux-scsi, akpm, linux-kernel, Patro, Sumant,
Kolli, Neela
On Fri, 2008-02-22 at 09:17 -0700, Yang, Bo wrote:
> James,
>
> What is the status for this patch? We need to submit more patches based
> on the acceptance of this patch.
OK, read the thread; Matthew is right. What you propose would pretty
much destroy compat ioctl handling within the driver. You need a compat
handler for MEGASAS_IOC_FW.
With your current patch you'd get a failure both from a 64 bit binary
running on x86-64 and if someone ran the x86 binary on ia64.
The driver already uses the compat infrastructure, it shouldn't be too
hard to add this in the correct manner.
James
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDBcmds with sense info
2008-02-22 16:35 ` James Bottomley
@ 2008-02-25 21:30 ` Yang, Bo
0 siblings, 0 replies; 5+ messages in thread
From: Yang, Bo @ 2008-02-25 21:30 UTC (permalink / raw)
To: James Bottomley
Cc: Matthew Wilcox, linux-scsi, akpm, linux-kernel, Patro, Sumant,
Kolli, Neela
James,
Thanks for the reply. We will resubmit the patch to rollback it to our
original implementation.
Regards.
Bo Yang
-----Original Message-----
From: James Bottomley [mailto:James.Bottomley@HansenPartnership.com]
Sent: Friday, February 22, 2008 11:36 AM
To: Yang, Bo
Cc: Matthew Wilcox; linux-scsi@vger.kernel.org; akpm@osdl.org;
linux-kernel@vger.kernel.org; Patro, Sumant; Kolli, Neela
Subject: RE: [PATCH 1/1] scsi: megaraid_sas - Fix random failure of
DCDBcmds with sense info
On Fri, 2008-02-22 at 09:17 -0700, Yang, Bo wrote:
> James,
>
> What is the status for this patch? We need to submit more patches
> based on the acceptance of this patch.
OK, read the thread; Matthew is right. What you propose would pretty
much destroy compat ioctl handling within the driver. You need a compat
handler for MEGASAS_IOC_FW.
With your current patch you'd get a failure both from a 64 bit binary
running on x86-64 and if someone ran the x86 binary on ia64.
The driver already uses the compat infrastructure, it shouldn't be too
hard to add this in the correct manner.
James
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-02-25 21:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-22 16:17 [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDB cmds with sense info Yang, Bo
2008-02-22 16:24 ` Matthew Wilcox
2008-02-22 16:27 ` James Bottomley
2008-02-22 16:35 ` James Bottomley
2008-02-25 21:30 ` [PATCH 1/1] scsi: megaraid_sas - Fix random failure of DCDBcmds " Yang, Bo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).