Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0c56310 authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller
Browse files

em_meta: fix sparse warning



gfp_t needs to be cast to integer.

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ea18fd95
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -401,7 +401,7 @@ META_COLLECTOR(int_sk_sndbuf)
META_COLLECTOR(int_sk_alloc)
{
	SKIP_NONLOCAL(skb);
	dst->value = skb->sk->sk_allocation;
	dst->value = (__force int) skb->sk->sk_allocation;
}

META_COLLECTOR(int_sk_route_caps)