public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nvme/quirk: Add a delay before checking device ready for memblaze device
@ 2016-09-08 16:12 Wenbo Wang
  2016-09-08 16:18 ` Jens Axboe
  0 siblings, 1 reply; 8+ messages in thread
From: Wenbo Wang @ 2016-09-08 16:12 UTC (permalink / raw)
  To: keith.busch, axboe; +Cc: linux-nvme, linux-kernel, Wenbo Wang

From: Wenbo Wang <wenbo.wang@memblaze.com>

Signed-off-by: Wenbo Wang <wenbo.wang@memblaze.com>
---
 drivers/nvme/host/pci.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index 663c40c..2fec23c 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -2141,6 +2141,8 @@ static const struct pci_device_id nvme_id_table[] = {
 		.driver_data = NVME_QUIRK_IDENTIFY_CNS, },
 	{ PCI_DEVICE(0x1c58, 0x0003),	/* HGST adapter */
 		.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
+	{ PCI_DEVICE(0x1c5f, 0x0540),	/* Memblaze Pblaze4 adapter */
+		.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
 	{ PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
 	{ PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
 	{ 0, }
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread
* RE: [PATCH] nvme/quirk: Add a delay before checking device ready for memblaze device
@ 2016-08-15  5:21 Wenbo Wang
  2016-08-15 15:05 ` Keith Busch
  0 siblings, 1 reply; 8+ messages in thread
From: Wenbo Wang @ 2016-08-15  5:21 UTC (permalink / raw)
  To: keith.busch@intel.com, axboe@fb.com
  Cc: linux-nvme@lists.infradead.org, linux-kernel@vger.kernel.org

Keith,

Is this patch accepted? Thanks.

-----Original Message-----
From: Wenbo Wang 
Sent: Tuesday, August 9, 2016 11:18 AM
To: 'keith.busch@intel.com'; 'axboe@fb.com'
Cc: linux-nvme@lists.infradead.org; linux-kernel@vger.kernel.org
Subject: [PATCH] nvme/quirk: Add a delay before checking device ready for memblaze device

Add a delay before checking device ready for memblaze device


Signed-off-by: Wenbo Wang <wenbo.wang@memblaze.com>
---
 drivers/nvme/host/pci.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index c82282f..ab90e5f 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -2154,6 +2154,8 @@ static const struct pci_device_id nvme_id_table[] = {
        .driver_data = NVME_QUIRK_IDENTIFY_CNS, },
    { PCI_DEVICE(0x1c58, 0x0003),   /* HGST adapter */
        .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
+   { PCI_DEVICE(0x1c5f, 0x0540),   /* Memblaze Pblaze4 adapter */
+       .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
    { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
    { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
    { 0, }
--
1.8.3.1

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [PATCH] nvme/quirk: Add a delay before checking device ready for memblaze device
@ 2016-08-09  3:18 Wenbo Wang
  0 siblings, 0 replies; 8+ messages in thread
From: Wenbo Wang @ 2016-08-09  3:18 UTC (permalink / raw)
  To: keith.busch@intel.com, axboe@fb.com
  Cc: linux-nvme@lists.infradead.org, linux-kernel@vger.kernel.org

Add a delay before checking device ready for memblaze device


Signed-off-by: Wenbo Wang <wenbo.wang@memblaze.com>
---
 drivers/nvme/host/pci.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index c82282f..ab90e5f 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -2154,6 +2154,8 @@ static const struct pci_device_id nvme_id_table[] = {
        .driver_data = NVME_QUIRK_IDENTIFY_CNS, },
    { PCI_DEVICE(0x1c58, 0x0003),   /* HGST adapter */
        .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
+   { PCI_DEVICE(0x1c5f, 0x0540),   /* Memblaze Pblaze4 adapter */
+       .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
    { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
    { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
    { 0, }
--
1.8.3.1

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

end of thread, other threads:[~2016-09-08 16:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <CAAZN+A3m4z0uOUBWyonpXb2fQTuFhV3vu68Kuy4mdQYwt6WDgA@mail.gmail.com>
2016-09-08 14:36 ` [PATCH] nvme/quirk: Add a delay before checking device ready for memblaze device Keith Busch
2016-09-08 14:30   ` Jens Axboe
2016-09-08 15:02     ` Jens Axboe
2016-09-08 16:12 Wenbo Wang
2016-09-08 16:18 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2016-08-15  5:21 Wenbo Wang
2016-08-15 15:05 ` Keith Busch
2016-08-09  3:18 Wenbo Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox