* Re: [PATCH net-next] net/smc: add support for netdevice in containers. [not found] <20230925023546.9964-1-huangjie.albert@bytedance.com> @ 2023-09-26 10:48 ` Leon Romanovsky 2023-09-26 11:14 ` Alexandra Winter 0 siblings, 1 reply; 5+ messages in thread From: Leon Romanovsky @ 2023-09-26 10:48 UTC (permalink / raw) To: Albert Huang Cc: Karsten Graul, Wenjia Zhang, Jan Karcher, D. Wythe, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni, linux-s390, netdev, linux-kernel, RDMA mailing list, Jason Gunthorpe On Mon, Sep 25, 2023 at 10:35:45AM +0800, Albert Huang wrote: > If the netdevice is within a container and communicates externally > through network technologies like VXLAN, we won't be able to find > routing information in the init_net namespace. To address this issue, > we need to add a struct net parameter to the smc_ib_find_route function. > This allow us to locate the routing information within the corresponding > net namespace, ensuring the correct completion of the SMC CLC interaction. > > Signed-off-by: Albert Huang <huangjie.albert@bytedance.com> > --- > net/smc/af_smc.c | 3 ++- > net/smc/smc_ib.c | 7 ++++--- > net/smc/smc_ib.h | 2 +- > 3 files changed, 7 insertions(+), 5 deletions(-) > > diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c > index bacdd971615e..7a874da90c7f 100644 > --- a/net/smc/af_smc.c > +++ b/net/smc/af_smc.c > @@ -1201,6 +1201,7 @@ static int smc_connect_rdma_v2_prepare(struct smc_sock *smc, > (struct smc_clc_msg_accept_confirm_v2 *)aclc; > struct smc_clc_first_contact_ext *fce = > smc_get_clc_first_contact_ext(clc_v2, false); > + struct net *net = sock_net(&smc->sk); > int rc; > > if (!ini->first_contact_peer || aclc->hdr.version == SMC_V1) > @@ -1210,7 +1211,7 @@ static int smc_connect_rdma_v2_prepare(struct smc_sock *smc, > memcpy(ini->smcrv2.nexthop_mac, &aclc->r0.lcl.mac, ETH_ALEN); > ini->smcrv2.uses_gateway = false; > } else { > - if (smc_ib_find_route(smc->clcsock->sk->sk_rcv_saddr, > + if (smc_ib_find_route(net, smc->clcsock->sk->sk_rcv_saddr, > smc_ib_gid_to_ipv4(aclc->r0.lcl.gid), > ini->smcrv2.nexthop_mac, > &ini->smcrv2.uses_gateway)) > diff --git a/net/smc/smc_ib.c b/net/smc/smc_ib.c > index 9b66d6aeeb1a..89981dbe46c9 100644 > --- a/net/smc/smc_ib.c > +++ b/net/smc/smc_ib.c > @@ -193,7 +193,7 @@ bool smc_ib_port_active(struct smc_ib_device *smcibdev, u8 ibport) > return smcibdev->pattr[ibport - 1].state == IB_PORT_ACTIVE; > } > > -int smc_ib_find_route(__be32 saddr, __be32 daddr, > +int smc_ib_find_route(struct net *net, __be32 saddr, __be32 daddr, > u8 nexthop_mac[], u8 *uses_gateway) > { > struct neighbour *neigh = NULL; > @@ -205,7 +205,7 @@ int smc_ib_find_route(__be32 saddr, __be32 daddr, > > if (daddr == cpu_to_be32(INADDR_NONE)) > goto out; > - rt = ip_route_output_flow(&init_net, &fl4, NULL); > + rt = ip_route_output_flow(net, &fl4, NULL); This patch made me wonder, why doesn't SMC use RDMA-CM like all other in-kernel ULPs which work over RDMA? Thanks ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] net/smc: add support for netdevice in containers. 2023-09-26 10:48 ` [PATCH net-next] net/smc: add support for netdevice in containers Leon Romanovsky @ 2023-09-26 11:14 ` Alexandra Winter 2023-09-26 11:41 ` Leon Romanovsky 0 siblings, 1 reply; 5+ messages in thread From: Alexandra Winter @ 2023-09-26 11:14 UTC (permalink / raw) To: Leon Romanovsky, Albert Huang Cc: Karsten Graul, Wenjia Zhang, Jan Karcher, D. Wythe, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni, linux-s390, netdev, linux-kernel, RDMA mailing list, Jason Gunthorpe On 26.09.23 12:48, Leon Romanovsky wrote: > This patch made me wonder, why doesn't SMC use RDMA-CM like all other > in-kernel ULPs which work over RDMA? > > Thanks The idea behind SMC is that it should look an feel to the applications like TCP sockets. So for connection management it uses TCP over IP; RDMA is just used for the data transfer. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] net/smc: add support for netdevice in containers. 2023-09-26 11:14 ` Alexandra Winter @ 2023-09-26 11:41 ` Leon Romanovsky 2023-09-26 12:09 ` Dust Li 0 siblings, 1 reply; 5+ messages in thread From: Leon Romanovsky @ 2023-09-26 11:41 UTC (permalink / raw) To: Alexandra Winter Cc: Albert Huang, Karsten Graul, Wenjia Zhang, Jan Karcher, D. Wythe, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni, linux-s390, netdev, linux-kernel, RDMA mailing list, Jason Gunthorpe On Tue, Sep 26, 2023 at 01:14:04PM +0200, Alexandra Winter wrote: > > > On 26.09.23 12:48, Leon Romanovsky wrote: > > This patch made me wonder, why doesn't SMC use RDMA-CM like all other > > in-kernel ULPs which work over RDMA? > > > > Thanks > > The idea behind SMC is that it should look an feel to the applications > like TCP sockets. So for connection management it uses TCP over IP; > RDMA is just used for the data transfer. I think that it is not different from other ULPs. For example, RDS works over sockets and doesn't touch or reimplement GID management logic. Thanks ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] net/smc: add support for netdevice in containers. 2023-09-26 11:41 ` Leon Romanovsky @ 2023-09-26 12:09 ` Dust Li 2023-09-26 17:30 ` Leon Romanovsky 0 siblings, 1 reply; 5+ messages in thread From: Dust Li @ 2023-09-26 12:09 UTC (permalink / raw) To: Leon Romanovsky, Alexandra Winter Cc: Albert Huang, Karsten Graul, Wenjia Zhang, Jan Karcher, D. Wythe, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni, linux-s390, netdev, linux-kernel, RDMA mailing list, Jason Gunthorpe On Tue, Sep 26, 2023 at 02:41:04PM +0300, Leon Romanovsky wrote: >On Tue, Sep 26, 2023 at 01:14:04PM +0200, Alexandra Winter wrote: >> >> >> On 26.09.23 12:48, Leon Romanovsky wrote: >> > This patch made me wonder, why doesn't SMC use RDMA-CM like all other >> > in-kernel ULPs which work over RDMA? >> > >> > Thanks >> >> The idea behind SMC is that it should look an feel to the applications >> like TCP sockets. So for connection management it uses TCP over IP; >> RDMA is just used for the data transfer. > >I think that it is not different from other ULPs. For example, RDS works >over sockets and doesn't touch or reimplement GID management logic. I think the difference is SMC socket need to be compatible with TCP socket, so it need a tcp socket to fallback when something is not working. If SMC works with rdmacm, it still need a fallback-to-tcp socket, and the tcp connection has to be established for each SMC socket before the SMC socket got established, that would make rdmacm meaningless. Best regards, Dust > >Thanks ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] net/smc: add support for netdevice in containers. 2023-09-26 12:09 ` Dust Li @ 2023-09-26 17:30 ` Leon Romanovsky 0 siblings, 0 replies; 5+ messages in thread From: Leon Romanovsky @ 2023-09-26 17:30 UTC (permalink / raw) To: Dust Li Cc: Alexandra Winter, Albert Huang, Karsten Graul, Wenjia Zhang, Jan Karcher, D. Wythe, Tony Lu, Wen Gu, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni, linux-s390, netdev, linux-kernel, RDMA mailing list, Jason Gunthorpe On Tue, Sep 26, 2023 at 08:09:03PM +0800, Dust Li wrote: > On Tue, Sep 26, 2023 at 02:41:04PM +0300, Leon Romanovsky wrote: > >On Tue, Sep 26, 2023 at 01:14:04PM +0200, Alexandra Winter wrote: > >> > >> > >> On 26.09.23 12:48, Leon Romanovsky wrote: > >> > This patch made me wonder, why doesn't SMC use RDMA-CM like all other > >> > in-kernel ULPs which work over RDMA? > >> > > >> > Thanks > >> > >> The idea behind SMC is that it should look an feel to the applications > >> like TCP sockets. So for connection management it uses TCP over IP; > >> RDMA is just used for the data transfer. > > > >I think that it is not different from other ULPs. For example, RDS works > >over sockets and doesn't touch or reimplement GID management logic. > > I think the difference is SMC socket need to be compatible with TCP > socket, so it need a tcp socket to fallback when something is not working. > > If SMC works with rdmacm, it still need a fallback-to-tcp socket, and > the tcp connection has to be established for each SMC socket before the > SMC socket got established, that would make rdmacm meaningless. You still need to perform device-GID-route translations [1], which sounds to me very RDMA-CM. I'm not asking you to rewrite the code, but trying to get rationale behind reimplementing part of RDMA subsystem. Thanks [1] 24fb68111d45 ("net/smc: retrieve v2 gid from IB device") > > Best regards, > Dust > > > > >Thanks ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-09-26 17:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20230925023546.9964-1-huangjie.albert@bytedance.com>
2023-09-26 10:48 ` [PATCH net-next] net/smc: add support for netdevice in containers Leon Romanovsky
2023-09-26 11:14 ` Alexandra Winter
2023-09-26 11:41 ` Leon Romanovsky
2023-09-26 12:09 ` Dust Li
2023-09-26 17:30 ` Leon Romanovsky
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox