Roland,
This is the QLogic Virtual NIC driver patch series which has been tested
against your for-2.6.26 and for-2.6.27 branches. We intended these patches to
make it to the 2.6.26 kernel, but if it is too late for the 2.6.26 merge window
please consider them for 2.6.27.
This patch series adds the QLogic Virtual NIC (VNIC) driver which works in
conjunction with the the QLogic Ethernet Virtual I/O Controller (EVIC) hardware.
The VNIC driver along with the QLogic EVIC's two 10 Gigabit ethernet ports,
enables Infiniband clusters to connect to Ethernet networks. This driver also
works with the earlier version of the I/O Controller, the VEx.
The QLogic VNIC driver creates virtual ethernet interfaces and tunnels the
Ethernet data to/from the EVIC over Infiniband using an Infiniband reliable
connection.
The driver compiles cleanly with sparse endianness checking enabled. We have
also tested the driver with lockdep checking enabled.
We have run these patches through checkpatch.pl and the only warnings are
related to lines slightly longer than 80 columns in some of the statements.
The driver itself has has been tested with long duration iperf, netperf TCP,
UDP streams.
---
[PATCH 01/13] QLogic VNIC: Driver - netdev implementation
[PATCH 02/13] QLogic VNIC: Netpath - abstraction of connection to EVIC/VEx
[PATCH 03/13] QLogic VNIC: Implementation of communication protocol with EVIC/VEx
[PATCH 04/13] QLogic VNIC: Implementation of Control path of communication protocol
[PATCH 05/13] QLogic VNIC: Implementation of Data path of communication protocol
[PATCH 06/13] QLogic VNIC: IB core stack interaction
[PATCH 07/13] QLogic VNIC: Handling configurable parameters of the driver
[PATCH 08/13] QLogic VNIC: sysfs interface implementation for the driver
[PATCH 09/13] QLogic VNIC: IB Multicast for Ethernet broadcast/multicast
[PATCH 10/13] QLogic VNIC: Driver Statistics collection
[PATCH 11/13] QLogic VNIC: Driver utility file - implements various utility macros
[PATCH 12/13] QLogic VNIC: Driver Kconfig and Makefile.
[PATCH 13/13] QLogic VNIC: Modifications to IB Kconfig and Makefile
drivers/infiniband/Kconfig | 2
drivers/infiniband/Makefile | 1
drivers/infiniband/ulp/qlgc_vnic/Kconfig | 28
drivers/infiniband/ulp/qlgc_vnic/Makefile | 13
drivers/infiniband/ulp/qlgc_vnic/vnic_config.c | 380 +++
drivers/infiniband/ulp/qlgc_vnic/vnic_config.h | 242 ++
drivers/infiniband/ulp/qlgc_vnic/vnic_control.c | 2288 ++++++++++++++++++++
drivers/infiniband/ulp/qlgc_vnic/vnic_control.h | 180 ++
.../infiniband/ulp/qlgc_vnic/vnic_control_pkt.h | 368 +++
drivers/infiniband/ulp/qlgc_vnic/vnic_data.c | 1473 +++++++++++++
drivers/infiniband/ulp/qlgc_vnic/vnic_data.h | 206 ++
drivers/infiniband/ulp/qlgc_vnic/vnic_ib.c | 1046 +++++++++
drivers/infiniband/ulp/qlgc_vnic/vnic_ib.h | 206 ++
drivers/infiniband/ulp/qlgc_vnic/vnic_main.c | 1052 +++++++++
drivers/infiniband/ulp/qlgc_vnic/vnic_main.h | 167 +
drivers/infiniband/ulp/qlgc_vnic/vnic_multicast.c | 332 +++
drivers/infiniband/ulp/qlgc_vnic/vnic_multicast.h | 76 +
drivers/infiniband/ulp/qlgc_vnic/vnic_netpath.c | 112 +
drivers/infiniband/ulp/qlgc_vnic/vnic_netpath.h | 80 +
drivers/infiniband/ulp/qlgc_vnic/vnic_stats.c | 234 ++
drivers/infiniband/ulp/qlgc_vnic/vnic_stats.h | 497 ++++
drivers/infiniband/ulp/qlgc_vnic/vnic_sys.c | 1127 ++++++++++
drivers/infiniband/ulp/qlgc_vnic/vnic_sys.h | 62 +
drivers/infiniband/ulp/qlgc_vnic/vnic_trailer.h | 103 +
drivers/infiniband/ulp/qlgc_vnic/vnic_util.h | 251 ++
drivers/infiniband/ulp/qlgc_vnic/vnic_viport.c | 1233 +++++++++++
drivers/infiniband/ulp/qlgc_vnic/vnic_viport.h | 176 ++
27 files changed, 11935 insertions(+), 0 deletions(-)
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/Kconfig
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/Makefile
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_config.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_config.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_control.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_control.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_control_pkt.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_data.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_data.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_ib.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_ib.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_main.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_main.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_multicast.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_multicast.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_netpath.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_netpath.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_stats.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_stats.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_sys.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_sys.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_trailer.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_util.h
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_viport.c
create mode 100644 drivers/infiniband/ulp/qlgc_vnic/vnic_viport.h
--
Regards,
Ram
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
| Karl Meyer | PROBLEM: 2.6.23-rc "NETDEV WATCHDOG: eth0: transmit timed out" |
| Greg Kroah-Hartman | [PATCH 040/196] kobject: add kobject_add_ng function |
| Steven Rostedt | [RFC PATCH v4] Unified trace buffer |
| Dave Airlie | [git pull] drm patches for 2.6.27 final |
| Krzysztof Halasa | Re: [PATCH v2] Re: WAN: new PPP code for generic HDLC |
| David Miller | Re: [PATCH] Expose netdevice dev_id through sysfs |
| Jay Cliburn | Re: atl1 64-bit => 32-bit DMA borkage (reproducible, bisected) |
| Evgeniy Polyakov | [resend take 2 0/4] Distributed storage. |
git: | |
| Andrew Morton | Untracked working tree files |
| Miklos Vajna | [rfc] git submodules howto |
| Ben Collins | Re: [kernel.org users] [RFD] On deprecating "git-foo" for builtins |
| Jon Smirl | ! [rejected] master -> master (non-fast forward) |
| rancor | How to copy/pipe console buffert to file? |
| Pieter Verberne | File collision while using pkg_add |
| Greg Thomas | Re: Is it possible to fix a stale NFS hadle without rebooting? |
| Didier Wiroth | win32-codecs, avi and amd64 question |
| Netfilter kernel module | 9 hours ago | Linux kernel |
| serial driver xmit problem | 12 hours ago | Linux kernel |
| Why Windows is better than Linux | 12 hours ago | Linux general |
| How can I see my kernel messages in vt12? | 19 hours ago | Linux kernel |
| Grub | 1 day ago | Linux general |
| vmalloc_fault handling in x86_64 | 1 day ago | Linux kernel |
| epoll_wait()ing on epoll FD | 1 day ago | Linux kernel |
| Framebuffer in x86_64 causes problems to multiseat | 1 day ago | Linux kernel |
| Difference between 2.4 and 2.6 regarding thread creation | 1 day ago | Linux general |
| Compiling gfs2 on kernel 2.6.27 | 2 days ago | Linux kernel |
