Re: [PATCH net] net/af_iucv: set correct sk_protocol for child sockets

2020-11-21 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Fri, 20 Nov 2020 11:06:57 +0100 you wrote: > Child sockets erroneously inherit their parent's sk_type (ie. SOCK_*), > instead of the PF_IUCV protocol that the parent was created with in > iucv_sock_create(). > > We're curren

[PATCH net] net/af_iucv: set correct sk_protocol for child sockets

2020-11-20 Thread Julian Wiedmann
Child sockets erroneously inherit their parent's sk_type (ie. SOCK_*), instead of the PF_IUCV protocol that the parent was created with in iucv_sock_create(). We're currently not using sk->sk_protocol ourselves, so this shouldn't have much impact (except eg. getting the output in skb_dump() right)