mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-03 19:24:02 +08:00
ipv6: use ipv6_addr_scope() helper
ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK could be replaced by ipv6_addr_scope(), which is slightly faster. Cc: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> Cc: David S. Miller <davem@davemloft.net> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7996c799ae
commit
8892475386
@ -1126,8 +1126,7 @@ retry:
|
||||
|
||||
ift = !max_addresses ||
|
||||
ipv6_count_addresses(idev) < max_addresses ?
|
||||
ipv6_add_addr(idev, &addr, tmp_plen,
|
||||
ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
|
||||
ipv6_add_addr(idev, &addr, tmp_plen, ipv6_addr_scope(&addr),
|
||||
addr_flags) : NULL;
|
||||
if (IS_ERR_OR_NULL(ift)) {
|
||||
in6_ifa_put(ifp);
|
||||
|
Loading…
Reference in New Issue
Block a user