Re: [PATCH v3 0/7] lib: string: add functions to case-convert strings

2016-07-10 Thread Chris Metcalf
result. -- Chris Metcalf, Mellanox Technologies http://www.mellanox.com -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] scsi: fc: force inlining of wwn conversion functions

2016-04-28 Thread Chris Metcalf
On 4/28/2016 11:23 AM, Arnd Bergmann wrote: On Thursday 28 April 2016 10:58:43 Chris Metcalf wrote: (Resending as text/plain) On 4/27/2016 5:34 PM, Arnd Bergmann wrote: This won't help on TILE, which is the one architecture that sets ARCH_SUPPORTS_OPTIMIZED_INLINING but does no

Re: [PATCH] scsi: fc: force inlining of wwn conversion functions

2016-04-28 Thread Chris Metcalf
(Resending as text/plain) On 4/27/2016 5:34 PM, Arnd Bergmann wrote: This won't help on TILE, which is the one architecture that sets ARCH_SUPPORTS_OPTIMIZED_INLINING but does not set ARCH_USE_BUILTIN_BSWAP. Chris Metcalf should be able to figure out whether we can jus

Re: [PATCH] mvsas: fix unaligned-access kernel panic under heavy disk testing

2013-07-23 Thread Chris Metcalf
On 7/23/2013 6:33 PM, James Bottomley wrote: > On Tue, 2013-07-23 at 17:17 -0400, Chris Metcalf wrote: >> On 7/23/2013 5:00 PM, James Bottomley wrote: >>> On Tue, 2013-07-23 at 16:50 -0400, Chris Metcalf wrote: >>>>> The slot->response value may not be aligne

Re: [PATCH] mvsas: fix unaligned-access kernel panic under heavy disk testing

2013-07-23 Thread Chris Metcalf
On 7/23/2013 5:00 PM, James Bottomley wrote: > On Tue, 2013-07-23 at 16:50 -0400, Chris Metcalf wrote: >> > The slot->response value may not be aligned, so should be read >> > using the appropriate kernel "unaligned" accessor. > Hm, institutional memory re-pr

[PATCH] mvsas: fix unaligned-access kernel panic under heavy disk testing

2013-07-23 Thread Chris Metcalf
The slot->response value may not be aligned, so should be read using the appropriate kernel "unaligned" accessor. Signed-off-by: Chris Metcalf --- drivers/scsi/mvsas/mv_sas.c | 5 +++-- drivers/scsi/mvsas/mv_sas.h | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --