mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
SUNRPC: Fix stupid typo in xs_sock_set_reuseport
Yes, kernel_setsockopt() hates you for using a char argument. Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
parent
54c0987492
commit
402e23b4ed
1 changed files with 3 additions and 2 deletions
|
@ -1629,9 +1629,10 @@ static unsigned short xs_get_random_port(void)
|
|||
*/
|
||||
static void xs_sock_set_reuseport(struct socket *sock)
|
||||
{
|
||||
char opt = 1;
|
||||
int opt = 1;
|
||||
|
||||
kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt));
|
||||
kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
|
||||
(char *)&opt, sizeof(opt));
|
||||
}
|
||||
|
||||
static unsigned short xs_sock_getport(struct socket *sock)
|
||||
|
|
Loading…
Reference in a new issue