net: skb->rtable accessor
Define skb_rtable(const struct sk_buff *skb) accessor to get rtable from skb Delete skb->rtable field Setting rtable is not allowed, just set dst instead as rtable is an alias. Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
dfbf97f3ac
commit
511c3f92ad
@@ -258,10 +258,10 @@ META_COLLECTOR(int_rtclassid)
|
||||
|
||||
META_COLLECTOR(int_rtiif)
|
||||
{
|
||||
if (unlikely(skb->rtable == NULL))
|
||||
if (unlikely(skb_rtable(skb) == NULL))
|
||||
*err = -1;
|
||||
else
|
||||
dst->value = skb->rtable->fl.iif;
|
||||
dst->value = skb_rtable(skb)->fl.iif;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
|
Reference in New Issue
Block a user