mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 16:14:13 +08:00
[NETFILTER]: fix compat_nf_sockopt typo
It should pass opt to the ->get/->set functions, not ops. Tested-by: Luca Tettamanti <kronos.it@gmail.com> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
dab6ba3688
commit
6452a5fde0
@ -143,12 +143,12 @@ static int compat_nf_sockopt(struct sock *sk, int pf, int val,
|
||||
if (ops->compat_get)
|
||||
ret = ops->compat_get(sk, val, opt, len);
|
||||
else
|
||||
ret = ops->get(sk, val, ops, len);
|
||||
ret = ops->get(sk, val, opt, len);
|
||||
} else {
|
||||
if (ops->compat_set)
|
||||
ret = ops->compat_set(sk, val, ops, *len);
|
||||
ret = ops->compat_set(sk, val, opt, *len);
|
||||
else
|
||||
ret = ops->set(sk, val, ops, *len);
|
||||
ret = ops->set(sk, val, opt, *len);
|
||||
}
|
||||
|
||||
module_put(ops->owner);
|
||||
|
Loading…
Reference in New Issue
Block a user