forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* enable smc module loading and unloading * register new socket family * basic smc socket creation and deletion * use backing TCP socket to run CLC (Connection Layer Control) handshake of SMC protocol * Setup for infiniband traffic is implemented in follow-on patches. For now fallback to TCP socket is always used. Signed-off-by: Ursula Braun <[email protected]> Reviewed-by: Utz Bacher <[email protected]> Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Showing
9 changed files
with
688 additions
and
4 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 |
---|---|---|
|
@@ -10850,6 +10850,13 @@ S: Maintained | |
F: drivers/staging/media/st-cec/ | ||
F: Documentation/devicetree/bindings/media/stih-cec.txt | ||
|
||
SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS | ||
M: Ursula Braun <[email protected]> | ||
L: [email protected] | ||
W: http://www.ibm.com/developerworks/linux/linux390/ | ||
S: Supported | ||
F: net/smc/ | ||
|
||
SYNOPSYS DESIGNWARE DMAC DRIVER | ||
M: Viresh Kumar <[email protected]> | ||
M: Andy Shevchenko <[email protected]> | ||
|
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,11 @@ | ||
config SMC | ||
tristate "SMC socket protocol family" | ||
depends on INET && INFINIBAND | ||
---help--- | ||
SMC-R provides a "sockets over RDMA" solution making use of | ||
RDMA over Converged Ethernet (RoCE) technology to upgrade | ||
AF_INET TCP connections transparently. | ||
The Linux implementation of the SMC-R solution is designed as | ||
a separate socket family SMC. | ||
|
||
Select this option if you want to run SMC socket applications |
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,2 @@ | ||
obj-$(CONFIG_SMC) += smc.o | ||
smc-y := af_smc.o |
Oops, something went wrong.