Re: [PATCH net-next] scm: fix a typo in put_cmsg()

2021-04-16 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Fri, 16 Apr 2021 11:35:38 -0700 you wrote: > From: Eric Dumazet > > We need to store cmlen instead of len in cm->cmsg_len. > > Fixes: 38ebcf5096a8 ("scm: optimize put_cmsg()") > Signed-off-by: Eric Dumazet > Reported

Re: [PATCH net-next] scm: fix a typo in put_cmsg()

2021-04-16 Thread Jakub Kicinski
On Fri, 16 Apr 2021 11:35:38 -0700 Eric Dumazet wrote: > From: Eric Dumazet > > We need to store cmlen instead of len in cm->cmsg_len. > > Fixes: 38ebcf5096a8 ("scm: optimize put_cmsg()") > Signed-off-by: Eric Dumazet > Reported-by: Jakub Kicinski FWIW can confirm it fixes the issue: Tested-

Re: [PATCH net-next] scm: fix a typo in put_cmsg()

2021-04-16 Thread Ido Schimmel
On Fri, Apr 16, 2021 at 11:35:38AM -0700, Eric Dumazet wrote: > From: Eric Dumazet > > We need to store cmlen instead of len in cm->cmsg_len. > > Fixes: 38ebcf5096a8 ("scm: optimize put_cmsg()") > Signed-off-by: Eric Dumazet > Reported-by: Jakub Kicinski Tested-by: Ido Schimmel (I was about

[PATCH net-next] scm: fix a typo in put_cmsg()

2021-04-16 Thread Eric Dumazet
From: Eric Dumazet We need to store cmlen instead of len in cm->cmsg_len. Fixes: 38ebcf5096a8 ("scm: optimize put_cmsg()") Signed-off-by: Eric Dumazet Reported-by: Jakub Kicinski --- net/core/scm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/core/scm.c b/net/core/s