Re: [PATCH net-next] rxrpc: use udp tunnel APIs instead of open code in rxrpc_open_socket

2021-02-08 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sun, 7 Feb 2021 16:23:14 +0800 you wrote: > In rxrpc_open_socket(), now it's using sock_create_kern() and > kernel_bind() to create a udp tunnel socket, and other kernel > APIs to set up it. These code can be replaced w

Re: [PATCH net-next] rxrpc: use udp tunnel APIs instead of open code in rxrpc_open_socket

2021-02-07 Thread Vadim Fedorenko
On 07.02.2021 08:23, Xin Long wrote: In rxrpc_open_socket(), now it's using sock_create_kern() and kernel_bind() to create a udp tunnel socket, and other kernel APIs to set up it. These code can be replaced with udp tunnel APIs udp_sock_create() and setup_udp_tunnel_sock(), and it'll simplify rxr

[PATCH net-next] rxrpc: use udp tunnel APIs instead of open code in rxrpc_open_socket

2021-02-07 Thread Xin Long
In rxrpc_open_socket(), now it's using sock_create_kern() and kernel_bind() to create a udp tunnel socket, and other kernel APIs to set up it. These code can be replaced with udp tunnel APIs udp_sock_create() and setup_udp_tunnel_sock(), and it'll simplify rxrpc_open_socket(). Note that with this