Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
Move the bpf verifier trace check into the new switch statement in HEAD. Resolve the overlapping changes in hinic, where bug fixes overlap the addition of VF support. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -1489,8 +1489,10 @@ static int map_lookup_and_delete_elem(union bpf_attr *attr)
|
||||
if (err)
|
||||
goto free_value;
|
||||
|
||||
if (copy_to_user(uvalue, value, value_size) != 0)
|
||||
if (copy_to_user(uvalue, value, value_size) != 0) {
|
||||
err = -EFAULT;
|
||||
goto free_value;
|
||||
}
|
||||
|
||||
err = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user