mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-09 22:29:18 +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
@ -1629,9 +1629,10 @@ static unsigned short xs_get_random_port(void)
|
|||||||
*/
|
*/
|
||||||
static void xs_sock_set_reuseport(struct socket *sock)
|
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)
|
static unsigned short xs_sock_getport(struct socket *sock)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user