]> Git Repo - linux.git/commit
net/smc: Introduce IPPROTO_SMC
authorD. Wythe <[email protected]>
Thu, 13 Jun 2024 18:00:30 +0000 (02:00 +0800)
committerDavid S. Miller <[email protected]>
Mon, 17 Jun 2024 12:14:09 +0000 (13:14 +0100)
commitd25a92ccae6bed02327b63d138e12e7806830f78
treed2648151ef19251c559aa1f6a6790b7759d08d50
parent13543d02c90d6195b31bef8fb51dfeff77c0b368
net/smc: Introduce IPPROTO_SMC

This patch allows to create smc socket via AF_INET,
similar to the following code,

/* create v4 smc sock */
v4 = socket(AF_INET, SOCK_STREAM, IPPROTO_SMC);

/* create v6 smc sock */
v6 = socket(AF_INET6, SOCK_STREAM, IPPROTO_SMC);

There are several reasons why we believe it is appropriate here:

1. For smc sockets, it actually use IPv4 (AF-INET) or IPv6 (AF-INET6)
address. There is no AF_SMC address at all.

2. Create smc socket in the AF_INET(6) path, which allows us to reuse
the infrastructure of AF_INET(6) path, such as common ebpf hooks.
Otherwise, smc have to implement it again in AF_SMC path.

Signed-off-by: D. Wythe <[email protected]>
Reviewed-by: Wenjia Zhang <[email protected]>
Reviewed-by: Dust Li <[email protected]>
Tested-by: Niklas Schnelle <[email protected]>
Tested-by: Wenjia Zhang <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
include/uapi/linux/in.h
net/smc/Makefile
net/smc/af_smc.c
net/smc/smc_inet.c [new file with mode: 0644]
net/smc/smc_inet.h [new file with mode: 0644]
This page took 0.059313 seconds and 4 git commands to generate.