All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis
@ 2021-10-28 12:45 Dennis Dalessandro
  2021-10-28 12:46 ` [PATCH for-next 1/3] IB/hfi1: Rebranding of hfi1 driver to Cornelis Networks Dennis Dalessandro
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Dennis Dalessandro @ 2021-10-28 12:45 UTC (permalink / raw)
  To: jgg, dledford; +Cc: linux-rdma

Touch up the Intel related branding strings in our drivers to reflect Cornelis.
Note rdmavt did not need any changes.

---

Scott Breyer (3):
      IB/hfi1: Rebranding of hfi1 driver to Cornelis Networks
      IB/qib: Rebranding of qib driver to Cornelis Networks
      IB/opa_vnic: Rebranding of OPA VNIC driver to Cornelis Networks


 drivers/infiniband/hw/hfi1/Kconfig              |    4 ++--
 drivers/infiniband/hw/hfi1/chip.c               |    5 +++--
 drivers/infiniband/hw/hfi1/driver.c             |    3 ++-
 drivers/infiniband/hw/hfi1/init.c               |    3 ++-
 drivers/infiniband/hw/qib/qib_driver.c          |    5 +++--
 drivers/infiniband/ulp/opa_vnic/Kconfig         |    4 ++--
 drivers/infiniband/ulp/opa_vnic/Makefile        |    3 ++-
 drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c |    7 ++++---
 8 files changed, 20 insertions(+), 14 deletions(-)

--
-Denny

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

* [PATCH for-next 1/3] IB/hfi1: Rebranding of hfi1 driver to Cornelis Networks
  2021-10-28 12:45 [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis Dennis Dalessandro
@ 2021-10-28 12:46 ` Dennis Dalessandro
  2021-10-28 12:46 ` [PATCH for-next 2/3] IB/qib: Rebranding of qib " Dennis Dalessandro
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Dennis Dalessandro @ 2021-10-28 12:46 UTC (permalink / raw)
  To: jgg, dledford; +Cc: linux-rdma, Scott Breyer

From: Scott Breyer <scott.breyer@cornelisnetworks.com>

Changes instances of Intel to Cornelis in identifying strings

Signed-off-by: Scott Breyer <scott.breyer@cornelisnetworks.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
---
 drivers/infiniband/hw/hfi1/Kconfig  |    4 ++--
 drivers/infiniband/hw/hfi1/chip.c   |    5 +++--
 drivers/infiniband/hw/hfi1/driver.c |    3 ++-
 drivers/infiniband/hw/hfi1/init.c   |    3 ++-
 4 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/drivers/infiniband/hw/hfi1/Kconfig b/drivers/infiniband/hw/hfi1/Kconfig
index 519866b..6eb7390 100644
--- a/drivers/infiniband/hw/hfi1/Kconfig
+++ b/drivers/infiniband/hw/hfi1/Kconfig
@@ -1,12 +1,12 @@
 # SPDX-License-Identifier: GPL-2.0-only
 config INFINIBAND_HFI1
-	tristate "Intel OPA Gen1 support"
+	tristate "Cornelis OPX Gen1 support"
 	depends on X86_64 && INFINIBAND_RDMAVT && I2C
 	select MMU_NOTIFIER
 	select CRC32
 	select I2C_ALGOBIT
 	help
-	This is a low-level driver for Intel OPA Gen1 adapter.
+	This is a low-level driver for Cornelis OPX Gen1 adapter.
 config HFI1_DEBUG_SDMA_ORDER
 	bool "HFI1 SDMA Order debug"
 	depends on INFINIBAND_HFI1
diff --git a/drivers/infiniband/hw/hfi1/chip.c b/drivers/infiniband/hw/hfi1/chip.c
index 37273dc..960329f 100644
--- a/drivers/infiniband/hw/hfi1/chip.c
+++ b/drivers/infiniband/hw/hfi1/chip.c
@@ -1,7 +1,8 @@
 // SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
 /*
  * Copyright(c) 2015 - 2020 Intel Corporation.
- */
+ * Copyright(c) 2021 Cornelis Networks.
+  */
 
 /*
  * This file contains all of the code that is specific to the HFI chip
@@ -14918,7 +14919,7 @@ static int obtain_boardname(struct hfi1_devdata *dd)
 {
 	/* generic board description */
 	const char generic[] =
-		"Intel Omni-Path Host Fabric Interface Adapter 100 Series";
+		"Cornelis Omni-Path Host Fabric Interface Adapter 100 Series";
 	unsigned long size;
 	int ret;
 
diff --git a/drivers/infiniband/hw/hfi1/driver.c b/drivers/infiniband/hw/hfi1/driver.c
index de41188..61f341c 100644
--- a/drivers/infiniband/hw/hfi1/driver.c
+++ b/drivers/infiniband/hw/hfi1/driver.c
@@ -1,6 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
 /*
  * Copyright(c) 2015-2020 Intel Corporation.
+ * Copyright(c) 2021 Cornelis Networks.
  */
 
 #include <linux/spinlock.h>
@@ -56,7 +57,7 @@
 MODULE_PARM_DESC(cap_mask, "Bit mask of enabled/disabled HW features");
 
 MODULE_LICENSE("Dual BSD/GPL");
-MODULE_DESCRIPTION("Intel Omni-Path Architecture driver");
+MODULE_DESCRIPTION("Cornelis Omni-Path Express driver");
 
 /*
  * MAX_PKT_RCV is the max # if packets processed per receive interrupt.
diff --git a/drivers/infiniband/hw/hfi1/init.c b/drivers/infiniband/hw/hfi1/init.c
index e3679d0..dbd1c31 100644
--- a/drivers/infiniband/hw/hfi1/init.c
+++ b/drivers/infiniband/hw/hfi1/init.c
@@ -1,6 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
 /*
  * Copyright(c) 2015 - 2020 Intel Corporation.
+ * Copyright(c) 2021 Cornelis Networks.
  */
 
 #include <linux/pci.h>
@@ -1342,7 +1343,7 @@ void hfi1_disable_after_error(struct hfi1_devdata *dd)
 static int init_one(struct pci_dev *, const struct pci_device_id *);
 static void shutdown_one(struct pci_dev *);
 
-#define DRIVER_LOAD_MSG "Intel " DRIVER_NAME " loaded: "
+#define DRIVER_LOAD_MSG "Cornelis " DRIVER_NAME " loaded: "
 #define PFX DRIVER_NAME ": "
 
 const struct pci_device_id hfi1_pci_tbl[] = {


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

* [PATCH for-next 2/3] IB/qib: Rebranding of qib driver to Cornelis Networks
  2021-10-28 12:45 [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis Dennis Dalessandro
  2021-10-28 12:46 ` [PATCH for-next 1/3] IB/hfi1: Rebranding of hfi1 driver to Cornelis Networks Dennis Dalessandro
@ 2021-10-28 12:46 ` Dennis Dalessandro
  2021-10-28 12:53   ` Doug Ledford
  2021-10-28 12:46 ` [PATCH for-next 3/3] IB/opa_vnic: Rebranding of OPA VNIC " Dennis Dalessandro
  2021-10-29 16:32 ` [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis Jason Gunthorpe
  3 siblings, 1 reply; 8+ messages in thread
From: Dennis Dalessandro @ 2021-10-28 12:46 UTC (permalink / raw)
  To: jgg, dledford; +Cc: linux-rdma, Scott Breyer

From: Scott Breyer <scott.breyer@cornelisnetworks.com>

Changes instances of Intel to Cornelis in identifying strings

Signed-off-by: Scott Breyer <scott.breyer@cornelisnetworks.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
---
 drivers/infiniband/hw/qib/qib_driver.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/infiniband/hw/qib/qib_driver.c b/drivers/infiniband/hw/qib/qib_driver.c
index 84fc4dc..bf3fa12 100644
--- a/drivers/infiniband/hw/qib/qib_driver.c
+++ b/drivers/infiniband/hw/qib/qib_driver.c
@@ -1,4 +1,5 @@
 /*
+ * Copyright (c) 2021 Cornelis Networks. All rights reserved.
  * Copyright (c) 2013 Intel Corporation. All rights reserved.
  * Copyright (c) 2006, 2007, 2008, 2009 QLogic Corporation. All rights reserved.
  * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
@@ -62,8 +63,8 @@
 		 "Attempt pre-IBTA 1.2 DDR speed negotiation");
 
 MODULE_LICENSE("Dual BSD/GPL");
-MODULE_AUTHOR("Intel <ibsupport@intel.com>");
-MODULE_DESCRIPTION("Intel IB driver");
+MODULE_AUTHOR("Cornelis <support@cornelisnetworks.com>");
+MODULE_DESCRIPTION("Cornelis IB driver");
 
 /*
  * QIB_PIO_MAXIBHDR is the max IB header size allowed for in our


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

* [PATCH for-next 3/3] IB/opa_vnic: Rebranding of OPA VNIC driver to Cornelis Networks
  2021-10-28 12:45 [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis Dennis Dalessandro
  2021-10-28 12:46 ` [PATCH for-next 1/3] IB/hfi1: Rebranding of hfi1 driver to Cornelis Networks Dennis Dalessandro
  2021-10-28 12:46 ` [PATCH for-next 2/3] IB/qib: Rebranding of qib " Dennis Dalessandro
@ 2021-10-28 12:46 ` Dennis Dalessandro
  2021-10-29 16:32 ` [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis Jason Gunthorpe
  3 siblings, 0 replies; 8+ messages in thread
From: Dennis Dalessandro @ 2021-10-28 12:46 UTC (permalink / raw)
  To: jgg, dledford; +Cc: linux-rdma, Scott Breyer

From: Scott Breyer <scott.breyer@cornelisnetworks.com>

Changes instances of Intel to Cornelis in identifying strings

Signed-off-by: Scott Breyer <scott.breyer@cornelisnetworks.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
---
 drivers/infiniband/ulp/opa_vnic/Kconfig         |    4 ++--
 drivers/infiniband/ulp/opa_vnic/Makefile        |    3 ++-
 drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c |    7 ++++---
 3 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/drivers/infiniband/ulp/opa_vnic/Kconfig b/drivers/infiniband/ulp/opa_vnic/Kconfig
index e842485..4d43d05 100644
--- a/drivers/infiniband/ulp/opa_vnic/Kconfig
+++ b/drivers/infiniband/ulp/opa_vnic/Kconfig
@@ -1,9 +1,9 @@
 # SPDX-License-Identifier: GPL-2.0-only
 config INFINIBAND_OPA_VNIC
-	tristate "Intel OPA VNIC support"
+	tristate "Cornelis OPX VNIC support"
 	depends on X86_64 && INFINIBAND
 	help
-	This is Omni-Path (OPA) Virtual Network Interface Controller (VNIC)
+	This is Omni-Path Express (OPX) Virtual Network Interface Controller (VNIC)
 	driver for Ethernet over Omni-Path feature. It implements the HW
 	independent VNIC functionality. It interfaces with Linux stack for
 	data path and IB MAD for the control path.
diff --git a/drivers/infiniband/ulp/opa_vnic/Makefile b/drivers/infiniband/ulp/opa_vnic/Makefile
index a8c21d1..1961838 100644
--- a/drivers/infiniband/ulp/opa_vnic/Makefile
+++ b/drivers/infiniband/ulp/opa_vnic/Makefile
@@ -1,6 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0-only
-# Makefile - Intel Omni-Path Virtual Network Controller driver
+# Makefile - Cornelis Omni-Path Express Virtual Network Controller driver
 # Copyright(c) 2017, Intel Corporation.
+# Copyright(c) 2021, Cornelis Networks.
 #
 obj-$(CONFIG_INFINIBAND_OPA_VNIC) += opa_vnic.o
 
diff --git a/drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c b/drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c
index cecf0f7..21c6cea 100644
--- a/drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c
+++ b/drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c
@@ -1,5 +1,6 @@
 /*
  * Copyright(c) 2017 Intel Corporation.
+ * Copyright(c) 2021 Cornelis Networks.
  *
  * This file is provided under a dual BSD/GPLv2 license.  When using or
  * redistributing this file, you may do so under either license.
@@ -46,7 +47,7 @@
  */
 
 /*
- * This file contains OPA Virtual Network Interface Controller (VNIC)
+ * This file contains OPX Virtual Network Interface Controller (VNIC)
  * Ethernet Management Agent (EMA) driver
  */
 
@@ -1051,5 +1052,5 @@ static void opa_vnic_deinit(void)
 module_exit(opa_vnic_deinit);
 
 MODULE_LICENSE("Dual BSD/GPL");
-MODULE_AUTHOR("Intel Corporation");
-MODULE_DESCRIPTION("Intel OPA Virtual Network driver");
+MODULE_AUTHOR("Cornelis Networks");
+MODULE_DESCRIPTION("Cornelis OPX Virtual Network driver");


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

* Re: [PATCH for-next 2/3] IB/qib: Rebranding of qib driver to Cornelis Networks
  2021-10-28 12:46 ` [PATCH for-next 2/3] IB/qib: Rebranding of qib " Dennis Dalessandro
@ 2021-10-28 12:53   ` Doug Ledford
  2021-10-28 13:25     ` Dennis Dalessandro
  0 siblings, 1 reply; 8+ messages in thread
From: Doug Ledford @ 2021-10-28 12:53 UTC (permalink / raw)
  To: Dennis Dalessandro; +Cc: Jason Gunthorpe, RDMA mailing list, Scott Breyer

Do you guys actually still support the qib driver and/or hardware?
That's old 40gig stuff. Is it still in use?

On Thu, Oct 28, 2021 at 8:46 AM Dennis Dalessandro
<dennis.dalessandro@cornelisnetworks.com> wrote:
>
> From: Scott Breyer <scott.breyer@cornelisnetworks.com>
>
> Changes instances of Intel to Cornelis in identifying strings
>
> Signed-off-by: Scott Breyer <scott.breyer@cornelisnetworks.com>
> Signed-off-by: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
> ---
>  drivers/infiniband/hw/qib/qib_driver.c |    5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/infiniband/hw/qib/qib_driver.c b/drivers/infiniband/hw/qib/qib_driver.c
> index 84fc4dc..bf3fa12 100644
> --- a/drivers/infiniband/hw/qib/qib_driver.c
> +++ b/drivers/infiniband/hw/qib/qib_driver.c
> @@ -1,4 +1,5 @@
>  /*
> + * Copyright (c) 2021 Cornelis Networks. All rights reserved.
>   * Copyright (c) 2013 Intel Corporation. All rights reserved.
>   * Copyright (c) 2006, 2007, 2008, 2009 QLogic Corporation. All rights reserved.
>   * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
> @@ -62,8 +63,8 @@
>                  "Attempt pre-IBTA 1.2 DDR speed negotiation");
>
>  MODULE_LICENSE("Dual BSD/GPL");
> -MODULE_AUTHOR("Intel <ibsupport@intel.com>");
> -MODULE_DESCRIPTION("Intel IB driver");
> +MODULE_AUTHOR("Cornelis <support@cornelisnetworks.com>");
> +MODULE_DESCRIPTION("Cornelis IB driver");
>
>  /*
>   * QIB_PIO_MAXIBHDR is the max IB header size allowed for in our
>


-- 
Doug Ledford <dledford@redhat.com>
GPG KeyID: B826A3330E572FDD
Key fingerprint = AE6B 1BDA 122B 23B4 265B  1274 B826 A333 0E57 2FDD


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

* Re: [PATCH for-next 2/3] IB/qib: Rebranding of qib driver to Cornelis Networks
  2021-10-28 12:53   ` Doug Ledford
@ 2021-10-28 13:25     ` Dennis Dalessandro
  2021-10-28 13:40       ` Doug Ledford
  0 siblings, 1 reply; 8+ messages in thread
From: Dennis Dalessandro @ 2021-10-28 13:25 UTC (permalink / raw)
  To: Doug Ledford; +Cc: Jason Gunthorpe, RDMA mailing list, Scott Breyer

On 10/28/21 8:53 AM, Doug Ledford wrote:
> Do you guys actually still support the qib driver and/or hardware?
> That's old 40gig stuff. Is it still in use?

As long as it's in the kernel we support it from an open source perspective.
Meaning we'll make sure it keeps on building and fix problems that people
encounter. There actually are people out there still using it.

-Denny

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

* Re: [PATCH for-next 2/3] IB/qib: Rebranding of qib driver to Cornelis Networks
  2021-10-28 13:25     ` Dennis Dalessandro
@ 2021-10-28 13:40       ` Doug Ledford
  0 siblings, 0 replies; 8+ messages in thread
From: Doug Ledford @ 2021-10-28 13:40 UTC (permalink / raw)
  To: Dennis Dalessandro; +Cc: Jason Gunthorpe, RDMA mailing list, Scott Breyer

Ok.  Was just curious ;-)

On Thu, Oct 28, 2021 at 9:26 AM Dennis Dalessandro
<dennis.dalessandro@cornelisnetworks.com> wrote:
>
> On 10/28/21 8:53 AM, Doug Ledford wrote:
> > Do you guys actually still support the qib driver and/or hardware?
> > That's old 40gig stuff. Is it still in use?
>
> As long as it's in the kernel we support it from an open source perspective.
> Meaning we'll make sure it keeps on building and fix problems that people
> encounter. There actually are people out there still using it.
>
> -Denny
>


-- 
Doug Ledford <dledford@redhat.com>
GPG KeyID: B826A3330E572FDD
Key fingerprint = AE6B 1BDA 122B 23B4 265B  1274 B826 A333 0E57 2FDD


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

* Re: [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis
  2021-10-28 12:45 [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis Dennis Dalessandro
                   ` (2 preceding siblings ...)
  2021-10-28 12:46 ` [PATCH for-next 3/3] IB/opa_vnic: Rebranding of OPA VNIC " Dennis Dalessandro
@ 2021-10-29 16:32 ` Jason Gunthorpe
  3 siblings, 0 replies; 8+ messages in thread
From: Jason Gunthorpe @ 2021-10-29 16:32 UTC (permalink / raw)
  To: Dennis Dalessandro; +Cc: dledford, linux-rdma

On Thu, Oct 28, 2021 at 08:45:55AM -0400, Dennis Dalessandro wrote:
> Touch up the Intel related branding strings in our drivers to reflect Cornelis.
> Note rdmavt did not need any changes.
> 
> ---
> 
> Scott Breyer (3):
>       IB/hfi1: Rebranding of hfi1 driver to Cornelis Networks
>       IB/qib: Rebranding of qib driver to Cornelis Networks
>       IB/opa_vnic: Rebranding of OPA VNIC driver to Cornelis Networks

Applied to for-next, thanks

Jason

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

end of thread, other threads:[~2021-10-29 16:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-28 12:45 [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis Dennis Dalessandro
2021-10-28 12:46 ` [PATCH for-next 1/3] IB/hfi1: Rebranding of hfi1 driver to Cornelis Networks Dennis Dalessandro
2021-10-28 12:46 ` [PATCH for-next 2/3] IB/qib: Rebranding of qib " Dennis Dalessandro
2021-10-28 12:53   ` Doug Ledford
2021-10-28 13:25     ` Dennis Dalessandro
2021-10-28 13:40       ` Doug Ledford
2021-10-28 12:46 ` [PATCH for-next 3/3] IB/opa_vnic: Rebranding of OPA VNIC " Dennis Dalessandro
2021-10-29 16:32 ` [PATCH for-next 0/3] Rebrand hfi1 from Intel to Cornelis Jason Gunthorpe

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.