* [PATCH] nvme/quirk: Add a delay before checking device ready for memblaze device
[not found] <CAAZN+A3m4z0uOUBWyonpXb2fQTuFhV3vu68Kuy4mdQYwt6WDgA@mail.gmail.com>
@ 2016-09-08 14:36 ` Keith Busch
2016-09-08 14:30 ` Jens Axboe
0 siblings, 1 reply; 7+ messages in thread
From: Keith Busch @ 2016-09-08 14:36 UTC (permalink / raw)
On Thu, Sep 08, 2016@11:36:34AM +0800, Wang Weber wrote:
> Hi Jens,
>
> The following email was sent before, but it seems to be blocked since I
> received some messages about sending failure. So resend it with Google
> email account.
You're still sending non plain text email, so it's going to be rejected
by the mailing list filter. It also mangles your patch such that it
won't cleanly apply. You have to use plain text for this to work well.
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH] nvme/quirk: Add a delay before checking device ready for memblaze device
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
0 siblings, 1 reply; 7+ messages in thread
From: Jens Axboe @ 2016-09-08 14:30 UTC (permalink / raw)
On 09/08/2016 08:36 AM, Keith Busch wrote:
> On Thu, Sep 08, 2016@11:36:34AM +0800, Wang Weber wrote:
>> Hi Jens,
>>
>> The following email was sent before, but it seems to be blocked since I
>> received some messages about sending failure. So resend it with Google
>> email account.
>
> You're still sending non plain text email, so it's going to be rejected
> by the mailing list filter. It also mangles your patch such that it
> won't cleanly apply. You have to use plain text for this to work well.
Indeed. And in addition to it being rejected by the reflector, it also
means your patch is mangled.
--
Jens Axboe
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] nvme/quirk: Add a delay before checking device ready for memblaze device
2016-09-08 14:30 ` Jens Axboe
@ 2016-09-08 15:02 ` Jens Axboe
0 siblings, 0 replies; 7+ messages in thread
From: Jens Axboe @ 2016-09-08 15:02 UTC (permalink / raw)
On 09/08/2016 08:30 AM, Jens Axboe wrote:
> On 09/08/2016 08:36 AM, Keith Busch wrote:
>> On Thu, Sep 08, 2016@11:36:34AM +0800, Wang Weber wrote:
>>> Hi Jens,
>>>
>>> The following email was sent before, but it seems to be blocked since I
>>> received some messages about sending failure. So resend it with Google
>>> email account.
>>
>> You're still sending non plain text email, so it's going to be rejected
>> by the mailing list filter. It also mangles your patch such that it
>> won't cleanly apply. You have to use plain text for this to work well.
>
> Indeed. And in addition to it being rejected by the reflector, it also
> means your patch is mangled.
I guess Keith already made that point too on the patch mangling, needs
more coffee. Also, it mangles the patch.
--
Jens Axboe
^ permalink raw reply [flat|nested] 7+ messages in thread
* [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; 7+ messages in thread
From: Wenbo Wang @ 2016-09-08 16:12 UTC (permalink / raw)
From: Wenbo Wang <wenbo.wang@memblaze.com>
Signed-off-by: Wenbo Wang <wenbo.wang at 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] 7+ messages in thread* [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, 0 replies; 7+ messages in thread
From: Jens Axboe @ 2016-09-08 16:18 UTC (permalink / raw)
On 09/08/2016 10:12 AM, Wenbo Wang wrote:
> From: Wenbo Wang <wenbo.wang at memblaze.com>
>
> Signed-off-by: Wenbo Wang <wenbo.wang at 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, }
Thanks, applied for 4.8.
--
Jens Axboe
^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <BJXPR01MB1987EA2313E2F2FAD8D0F8FE0120@BJXPR01MB198.CHNPR01.prod.partner.outlook.cn>]
* [PATCH] nvme/quirk: Add a delay before checking device ready for memblaze device
@ 2016-08-09 3:18 Wenbo Wang
0 siblings, 0 replies; 7+ messages in thread
From: Wenbo Wang @ 2016-08-09 3:18 UTC (permalink / raw)
Add a delay before checking device ready for memblaze device
Signed-off-by: Wenbo Wang <wenbo.wang at 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] 7+ messages in thread
end of thread, other threads:[~2016-09-08 16:18 UTC | newest]
Thread overview: 7+ 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
[not found] <BJXPR01MB1987EA2313E2F2FAD8D0F8FE0120@BJXPR01MB198.CHNPR01.prod.partner.outlook.cn>
2016-08-15 15:05 ` Keith Busch
-- strict thread matches above, loose matches on Subject: below --
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;
as well as URLs for NNTP newsgroup(s).