All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] hpsa: limit transfer length to 1MB
@ 2017-06-23  9:40 Yadan Fan
  2017-06-23  9:40 ` [PATCH v2 2/2] smartpqi: " Yadan Fan
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Yadan Fan @ 2017-06-23  9:40 UTC (permalink / raw)
  To: don.brace, martin.petersen, jejb
  Cc: esc.storagedev, linux-scsi, linux-kernel, Yadan Fan

The hpsa firmware will bypass the cache for any request larger
than 1MB, so we should cap the request size to avoid any
performance degradation in kernels later than v4.3

This degradation is caused from d2be537c3ba3568acd79cd178327b842e60d035e,
which changed max_sectors_kb to 1280k, but the hardware is able to
work fine with it, so the true fix should be from hpsa driver.

Signed-off-by: Yadan Fan <ydfan@suse.com>
---

Changes: 
 Reduced SUSE distribution info and internal bug id reference.

 drivers/scsi/hpsa.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 73daace478cb..b4c0bbea680c 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -952,7 +952,7 @@ static struct scsi_host_template hpsa_driver_template = {
 #endif
 	.sdev_attrs = hpsa_sdev_attrs,
 	.shost_attrs = hpsa_shost_attrs,
-	.max_sectors = 8192,
+	.max_sectors = 1024,
 	.no_write_same = 1,
 };
 
-- 
2.12.3

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v2 2/2] smartpqi: limit transfer length to 1MB
  2017-06-23  9:40 [PATCH v2 1/2] hpsa: limit transfer length to 1MB Yadan Fan
@ 2017-06-23  9:40 ` Yadan Fan
  2017-06-23 13:01   ` Johannes Thumshirn
  2017-07-12 21:27   ` Martin K. Petersen
  2017-06-23 13:01 ` [PATCH v2 1/2] hpsa: " Johannes Thumshirn
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 7+ messages in thread
From: Yadan Fan @ 2017-06-23  9:40 UTC (permalink / raw)
  To: don.brace, martin.petersen, jejb
  Cc: esc.storagedev, linux-scsi, linux-kernel, Yadan Fan

The smartpqi firmware will bypass the cache for any request larger
than 1MB, so we should cap the request size to avoid any
performance degradation in kernels later than v4.3

This degradation is caused from d2be537c3ba3568acd79cd178327b842e60d035e,
which changed max_sectors_kb to 1280k, but the hardware is able to
work fine with it, so the true fix should be from smartpqi driver.

Signed-off-by: Yadan Fan <ydfan@suse.com>
---
 drivers/scsi/smartpqi/smartpqi.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/smartpqi/smartpqi.h b/drivers/scsi/smartpqi/smartpqi.h
index b673825f46b5..9513357bd472 100644
--- a/drivers/scsi/smartpqi/smartpqi.h
+++ b/drivers/scsi/smartpqi/smartpqi.h
@@ -630,7 +630,7 @@ struct pqi_encryption_info {
 };
 
 #define PQI_MAX_OUTSTANDING_REQUESTS	((u32)~0)
-#define PQI_MAX_TRANSFER_SIZE		(4 * 1024U * 1024U)
+#define PQI_MAX_TRANSFER_SIZE		(1024U * 1024U)
 
 #define RAID_MAP_MAX_ENTRIES		1024
 
-- 
2.12.3

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 1/2] hpsa: limit transfer length to 1MB
  2017-06-23  9:40 [PATCH v2 1/2] hpsa: limit transfer length to 1MB Yadan Fan
  2017-06-23  9:40 ` [PATCH v2 2/2] smartpqi: " Yadan Fan
@ 2017-06-23 13:01 ` Johannes Thumshirn
  2017-06-26 17:35 ` Martin K. Petersen
  2017-07-18  2:57 ` Martin K. Petersen
  3 siblings, 0 replies; 7+ messages in thread
From: Johannes Thumshirn @ 2017-06-23 13:01 UTC (permalink / raw)
  To: Yadan Fan
  Cc: don.brace, martin.petersen, jejb, esc.storagedev, linux-scsi,
	linux-kernel

On Fri, Jun 23, 2017 at 05:40:05PM +0800, Yadan Fan wrote:
> The hpsa firmware will bypass the cache for any request larger
> than 1MB, so we should cap the request size to avoid any
> performance degradation in kernels later than v4.3
> 
> This degradation is caused from d2be537c3ba3568acd79cd178327b842e60d035e,
> which changed max_sectors_kb to 1280k, but the hardware is able to
> work fine with it, so the true fix should be from hpsa driver.
> 
> Signed-off-by: Yadan Fan <ydfan@suse.com>
> ---

Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
-- 
Johannes Thumshirn                                          Storage
jthumshirn@suse.de                                +49 911 74053 689
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: Felix Imendörffer, Jane Smithard, Graham Norton
HRB 21284 (AG Nürnberg)
Key fingerprint = EC38 9CAB C2C4 F25D 8600 D0D0 0393 969D 2D76 0850

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 2/2] smartpqi: limit transfer length to 1MB
  2017-06-23  9:40 ` [PATCH v2 2/2] smartpqi: " Yadan Fan
@ 2017-06-23 13:01   ` Johannes Thumshirn
  2017-07-12 21:27   ` Martin K. Petersen
  1 sibling, 0 replies; 7+ messages in thread
From: Johannes Thumshirn @ 2017-06-23 13:01 UTC (permalink / raw)
  To: Yadan Fan
  Cc: don.brace, martin.petersen, jejb, esc.storagedev, linux-scsi,
	linux-kernel

On Fri, Jun 23, 2017 at 05:40:06PM +0800, Yadan Fan wrote:
> The smartpqi firmware will bypass the cache for any request larger
> than 1MB, so we should cap the request size to avoid any
> performance degradation in kernels later than v4.3
> 
> This degradation is caused from d2be537c3ba3568acd79cd178327b842e60d035e,
> which changed max_sectors_kb to 1280k, but the hardware is able to
> work fine with it, so the true fix should be from smartpqi driver.
> 
> Signed-off-by: Yadan Fan <ydfan@suse.com>
> ---

Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
-- 
Johannes Thumshirn                                          Storage
jthumshirn@suse.de                                +49 911 74053 689
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: Felix Imendörffer, Jane Smithard, Graham Norton
HRB 21284 (AG Nürnberg)
Key fingerprint = EC38 9CAB C2C4 F25D 8600 D0D0 0393 969D 2D76 0850

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 1/2] hpsa: limit transfer length to 1MB
  2017-06-23  9:40 [PATCH v2 1/2] hpsa: limit transfer length to 1MB Yadan Fan
  2017-06-23  9:40 ` [PATCH v2 2/2] smartpqi: " Yadan Fan
  2017-06-23 13:01 ` [PATCH v2 1/2] hpsa: " Johannes Thumshirn
@ 2017-06-26 17:35 ` Martin K. Petersen
  2017-07-18  2:57 ` Martin K. Petersen
  3 siblings, 0 replies; 7+ messages in thread
From: Martin K. Petersen @ 2017-06-26 17:35 UTC (permalink / raw)
  To: don.brace
  Cc: Yadan Fan, martin.petersen, jejb, esc.storagedev, linux-scsi,
	linux-kernel


Don,

> The hpsa firmware will bypass the cache for any request larger than
> 1MB, so we should cap the request size to avoid any performance
> degradation in kernels later than v4.3

I assume you guys are OK with this change?

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 2/2] smartpqi: limit transfer length to 1MB
  2017-06-23  9:40 ` [PATCH v2 2/2] smartpqi: " Yadan Fan
  2017-06-23 13:01   ` Johannes Thumshirn
@ 2017-07-12 21:27   ` Martin K. Petersen
  1 sibling, 0 replies; 7+ messages in thread
From: Martin K. Petersen @ 2017-07-12 21:27 UTC (permalink / raw)
  To: don.brace
  Cc: Yadan Fan, martin.petersen, jejb, esc.storagedev, linux-scsi,
	linux-kernel


Don,

> The smartpqi firmware will bypass the cache for any request larger
> than 1MB, so we should cap the request size to avoid any
> performance degradation in kernels later than v4.3

Ping on these...

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 1/2] hpsa: limit transfer length to 1MB
  2017-06-23  9:40 [PATCH v2 1/2] hpsa: limit transfer length to 1MB Yadan Fan
                   ` (2 preceding siblings ...)
  2017-06-26 17:35 ` Martin K. Petersen
@ 2017-07-18  2:57 ` Martin K. Petersen
  3 siblings, 0 replies; 7+ messages in thread
From: Martin K. Petersen @ 2017-07-18  2:57 UTC (permalink / raw)
  To: Yadan Fan
  Cc: don.brace, martin.petersen, jejb, esc.storagedev, linux-scsi,
	linux-kernel


Yadan,

> The hpsa firmware will bypass the cache for any request larger
> than 1MB, so we should cap the request size to avoid any
> performance degradation in kernels later than v4.3

Applied to 4.13/scsi-fixes. Thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-07-18  2:57 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-23  9:40 [PATCH v2 1/2] hpsa: limit transfer length to 1MB Yadan Fan
2017-06-23  9:40 ` [PATCH v2 2/2] smartpqi: " Yadan Fan
2017-06-23 13:01   ` Johannes Thumshirn
2017-07-12 21:27   ` Martin K. Petersen
2017-06-23 13:01 ` [PATCH v2 1/2] hpsa: " Johannes Thumshirn
2017-06-26 17:35 ` Martin K. Petersen
2017-07-18  2:57 ` Martin K. Petersen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.