[IPV6]: Clear up user copy warning in flowlabel code.
We are intentionally ignoring the copy_to_user() value, make it clear to the compiler too. Noted by Jeff Garzik. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
69f6a0fafc
commit
6c94d3611b
1 changed files with 6 additions and 4 deletions
|
@ -535,10 +535,12 @@ release:
|
||||||
if (err)
|
if (err)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
/* Do not check for fault */
|
if (!freq.flr_label) {
|
||||||
if (!freq.flr_label)
|
if (copy_to_user(&((struct in6_flowlabel_req __user *) optval)->flr_label,
|
||||||
copy_to_user(&((struct in6_flowlabel_req __user *) optval)->flr_label,
|
&fl->label, sizeof(fl->label))) {
|
||||||
&fl->label, sizeof(fl->label));
|
/* Intentionally ignore fault. */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
sfl1->fl = fl;
|
sfl1->fl = fl;
|
||||||
sfl1->next = np->ipv6_fl_list;
|
sfl1->next = np->ipv6_fl_list;
|
||||||
|
|
Loading…
Add table
Reference in a new issue