]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: make use of pre-calculated len
authorMarcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Mon, 8 Jan 2018 21:02:29 +0000 (19:02 -0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 10 Jan 2018 19:53:22 +0000 (14:53 -0500)
commit9944044392971bd75a21a704791d85740c7dad1c
treeda82823b2b3fa04568f7ab98c984476728ea6cbc
parent541ebcc12aaa6ec9f1d3ddff2c13d6db70bc7126
sctp: make use of pre-calculated len

Some sockopt handling functions were calculating the length of the
buffer to be written to userspace and then calculating it again when
actually writing the buffer, which could lead to some write not using
an up-to-date length.

This patch updates such places to just make use of the len variable.

Also, replace some sizeof(type) to sizeof(var).

Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/socket.c