public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH rdma-core]bnxt_re bug fix
@ 2017-09-08 18:01 Devesh Sharma
       [not found] ` <1504893687-6101-1-git-send-email-devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Devesh Sharma @ 2017-09-08 18:01 UTC (permalink / raw)
  To: linux-rdma-u79uwXL29TY76Z2rM5mHXA; +Cc: Devesh Sharma

A quick fix to add new PCI IDs to libbnxt_re

Devesh Sharma (1):
  bnxt_re:update and sort pci device id table

 providers/bnxt_re/main.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

-- 
1.8.3.1

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH rdma-core] bnxt_re:update and sort pci device id table
       [not found] ` <1504893687-6101-1-git-send-email-devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
@ 2017-09-08 18:01   ` Devesh Sharma
  2017-09-11 13:00   ` [PATCH rdma-core]bnxt_re bug fix Leon Romanovsky
  1 sibling, 0 replies; 4+ messages in thread
From: Devesh Sharma @ 2017-09-08 18:01 UTC (permalink / raw)
  To: linux-rdma-u79uwXL29TY76Z2rM5mHXA; +Cc: Devesh Sharma

This patch updates and sorts the pci-device id table to
allow new roce device support.

Signed-off-by: Devesh Sharma <devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
---
 providers/bnxt_re/main.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/providers/bnxt_re/main.c b/providers/bnxt_re/main.c
index 29ac7cd..3c21bec 100644
--- a/providers/bnxt_re/main.c
+++ b/providers/bnxt_re/main.c
@@ -60,6 +60,7 @@ static const struct {
 	unsigned int vendor;
 	unsigned int device;
 } cna_table[] = {
+	CNA(BROADCOM, 0x1614),  /* BCM57454 */
 	CNA(BROADCOM, 0x16C0),  /* BCM57417 NPAR */
 	CNA(BROADCOM, 0x16CE),  /* BMC57311 */
 	CNA(BROADCOM, 0x16CF),  /* BMC57312 */
@@ -74,7 +75,10 @@ static const struct {
 	CNA(BROADCOM, 0x16C1),  /* BMC57414 VF */
 	CNA(BROADCOM, 0x16EF),  /* BCM57416 NPAR */
 	CNA(BROADCOM, 0x16ED),  /* BCM57414 NPAR */
-	CNA(BROADCOM, 0x16EB)   /* BCM57412 NPAR */
+	CNA(BROADCOM, 0x16EB),  /* BCM57412 NPAR */
+	CNA(BROADCOM, 0x16F0),  /* BCM58730 */
+	CNA(BROADCOM, 0x16F1),  /* BCM57452 */
+	CNA(BROADCOM, 0xD802)   /* BCM58802 */
 };
 
 static struct ibv_context_ops bnxt_re_cntx_ops = {
-- 
1.8.3.1

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH rdma-core]bnxt_re bug fix
       [not found] ` <1504893687-6101-1-git-send-email-devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
  2017-09-08 18:01   ` [PATCH rdma-core] bnxt_re:update and sort pci device id table Devesh Sharma
@ 2017-09-11 13:00   ` Leon Romanovsky
       [not found]     ` <20170911130034.GJ3405-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
  1 sibling, 1 reply; 4+ messages in thread
From: Leon Romanovsky @ 2017-09-11 13:00 UTC (permalink / raw)
  To: Devesh Sharma; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 590 bytes --]

On Fri, Sep 08, 2017 at 02:01:26PM -0400, Devesh Sharma wrote:
> A quick fix to add new PCI IDs to libbnxt_re
>
> Devesh Sharma (1):
>   bnxt_re:update and sort pci device id table

Thanks, I reworked the commit message and applied.
Please take a look.

>
>  providers/bnxt_re/main.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> --
> 1.8.3.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH rdma-core]bnxt_re bug fix
       [not found]     ` <20170911130034.GJ3405-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
@ 2017-09-11 13:49       ` Devesh Sharma
  0 siblings, 0 replies; 4+ messages in thread
From: Devesh Sharma @ 2017-09-11 13:49 UTC (permalink / raw)
  To: Leon Romanovsky; +Cc: linux-rdma

Thanks Leon.

On Mon, Sep 11, 2017 at 6:30 PM, Leon Romanovsky <leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote:
> On Fri, Sep 08, 2017 at 02:01:26PM -0400, Devesh Sharma wrote:
>> A quick fix to add new PCI IDs to libbnxt_re
>>
>> Devesh Sharma (1):
>>   bnxt_re:update and sort pci device id table
>
> Thanks, I reworked the commit message and applied.
> Please take a look.
>
>>
>>  providers/bnxt_re/main.c | 6 +++++-
>>  1 file changed, 5 insertions(+), 1 deletion(-)
>>
>> --
>> 1.8.3.1
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2017-09-11 13:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-08 18:01 [PATCH rdma-core]bnxt_re bug fix Devesh Sharma
     [not found] ` <1504893687-6101-1-git-send-email-devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
2017-09-08 18:01   ` [PATCH rdma-core] bnxt_re:update and sort pci device id table Devesh Sharma
2017-09-11 13:00   ` [PATCH rdma-core]bnxt_re bug fix Leon Romanovsky
     [not found]     ` <20170911130034.GJ3405-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-09-11 13:49       ` Devesh Sharma

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