forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/g…
…it/roland/infiniband * 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband: IB/mthca: Always fill MTTs from CPU IB/mthca: Merge MR and FMR space on 64-bit systems IB/mthca: Fix access to MTT and MPT tables on non-cache-coherent CPUs IB/mthca: Give reserved MTTs a separate cache line IB/mthca: Fix reserved MTTs calculation on mem-free HCAs RDMA/cxgb3: Add driver for Chelsio T3 RNIC IB: Remove redundant "_wq" from workqueue names RDMA/cma: Increment port number after close to avoid re-use IB/ehca: Fix memleak on module unloading IB/mthca: Work around gcc bug on sparc64 IPoIB: Connected mode experimental support IB/core: Use ARRAY_SIZE macro for mandatory_table IB/mthca: Use correct structure size in call to memset()
- Loading branch information
Showing
46 changed files
with
11,279 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
config INFINIBAND_CXGB3 | ||
tristate "Chelsio RDMA Driver" | ||
depends on CHELSIO_T3 && INFINIBAND && INET | ||
select GENERIC_ALLOCATOR | ||
---help--- | ||
This is an iWARP/RDMA driver for the Chelsio T3 1GbE and | ||
10GbE adapters. | ||
|
||
For general information about Chelsio and our products, visit | ||
our website at <http://www.chelsio.com>. | ||
|
||
For customer support, please visit our customer support page at | ||
<http://www.chelsio.com/support.htm>. | ||
|
||
Please send feedback to <[email protected]>. | ||
|
||
To compile this driver as a module, choose M here: the module | ||
will be called iw_cxgb3. | ||
|
||
config INFINIBAND_CXGB3_DEBUG | ||
bool "Verbose debugging output" | ||
depends on INFINIBAND_CXGB3 | ||
default n | ||
---help--- | ||
This option causes the Chelsio RDMA driver to produce copious | ||
amounts of debug messages. Select this if you are developing | ||
the driver or trying to diagnose a problem. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
EXTRA_CFLAGS += -I$(TOPDIR)/drivers/net/cxgb3 \ | ||
-I$(TOPDIR)/drivers/infiniband/hw/cxgb3/core | ||
|
||
obj-$(CONFIG_INFINIBAND_CXGB3) += iw_cxgb3.o | ||
|
||
iw_cxgb3-y := iwch_cm.o iwch_ev.o iwch_cq.o iwch_qp.o iwch_mem.o \ | ||
iwch_provider.o iwch.o cxio_hal.o cxio_resource.o | ||
|
||
ifdef CONFIG_INFINIBAND_CXGB3_DEBUG | ||
EXTRA_CFLAGS += -DDEBUG | ||
iw_cxgb3-y += cxio_dbg.o | ||
endif |
Oops, something went wrong.