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 branches 'cxgb3', 'ehca', 'ipath', 'ipoib', 'misc', 'mlx4', 'mt…
…hca' and 'nes' into for-linus
- Loading branch information
Showing
50 changed files
with
1,096 additions
and
510 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -439,7 +439,7 @@ F: drivers/hwmon/ams/ | |
AMSO1100 RNIC DRIVER | ||
M: Tom Tucker <[email protected]> | ||
M: Steve Wise <[email protected]> | ||
L: [email protected].org | ||
L: [email protected].org | ||
S: Maintained | ||
F: drivers/infiniband/hw/amso1100/ | ||
|
||
|
@@ -1494,7 +1494,7 @@ F: drivers/net/cxgb3/ | |
|
||
CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | ||
M: Steve Wise <[email protected]> | ||
L: [email protected].org | ||
L: [email protected].org | ||
W: http://www.openfabrics.org | ||
S: Supported | ||
F: drivers/infiniband/hw/cxgb3/ | ||
|
@@ -1868,7 +1868,7 @@ F: fs/efs/ | |
EHCA (IBM GX bus InfiniBand adapter) DRIVER | ||
M: Hoang-Nam Nguyen <[email protected]> | ||
M: Christoph Raisch <[email protected]> | ||
L: [email protected].org | ||
L: [email protected].org | ||
S: Supported | ||
F: drivers/infiniband/hw/ehca/ | ||
|
||
|
@@ -2552,7 +2552,7 @@ INFINIBAND SUBSYSTEM | |
M: Roland Dreier <[email protected]> | ||
M: Sean Hefty <[email protected]> | ||
M: Hal Rosenstock <[email protected]> | ||
L: [email protected].org (moderated for non-subscribers) | ||
L: [email protected].org | ||
W: http://www.openib.org/ | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git | ||
S: Supported | ||
|
@@ -2729,7 +2729,7 @@ F: drivers/net/ipg.c | |
|
||
IPATH DRIVER | ||
M: Ralph Campbell <[email protected]> | ||
L: [email protected].org | ||
L: [email protected].org | ||
T: git git://git.qlogic.com/ipath-linux-2.6 | ||
S: Supported | ||
F: drivers/infiniband/hw/ipath/ | ||
|
@@ -3485,7 +3485,7 @@ F: drivers/scsi/NCR_D700.* | |
NETEFFECT IWARP RNIC DRIVER (IW_NES) | ||
M: Faisal Latif <[email protected]> | ||
M: Chien Tung <[email protected]> | ||
L: [email protected].org | ||
L: [email protected].org | ||
W: http://www.neteffect.com | ||
S: Supported | ||
F: drivers/infiniband/hw/nes/ | ||
|
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
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 |
---|---|---|
|
@@ -52,7 +52,7 @@ | |
#include "ehca_tools.h" | ||
#include "hcp_if.h" | ||
|
||
#define HCAD_VERSION "0028" | ||
#define HCAD_VERSION "0029" | ||
|
||
MODULE_LICENSE("Dual BSD/GPL"); | ||
MODULE_AUTHOR("Christoph Raisch <[email protected]>"); | ||
|
@@ -64,7 +64,7 @@ static int ehca_hw_level = 0; | |
static int ehca_poll_all_eqs = 1; | ||
|
||
int ehca_debug_level = 0; | ||
int ehca_nr_ports = 2; | ||
int ehca_nr_ports = -1; | ||
int ehca_use_hp_mr = 0; | ||
int ehca_port_act_time = 30; | ||
int ehca_static_rate = -1; | ||
|
@@ -95,8 +95,8 @@ MODULE_PARM_DESC(hw_level, | |
"Hardware level (0: autosensing (default), " | ||
"0x10..0x14: eHCA, 0x20..0x23: eHCA2)"); | ||
MODULE_PARM_DESC(nr_ports, | ||
"number of connected ports (-1: autodetect, 1: port one only, " | ||
"2: two ports (default)"); | ||
"number of connected ports (-1: autodetect (default), " | ||
"1: port one only, 2: two ports)"); | ||
MODULE_PARM_DESC(use_hp_mr, | ||
"Use high performance MRs (default: no)"); | ||
MODULE_PARM_DESC(port_act_time, | ||
|
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
Oops, something went wrong.