]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - net/netfilter/xt_realm.c
net: skb->dst accessors
[net-next-2.6.git] / net / netfilter / xt_realm.c
index 67419287bc7e143003164d2850378066cac6cd41..484d1689bfde167d43474b3eeb35947b073e026c 100644 (file)
@@ -25,7 +25,7 @@ static bool
 realm_mt(const struct sk_buff *skb, const struct xt_match_param *par)
 {
        const struct xt_realm_info *info = par->matchinfo;
-       const struct dst_entry *dst = skb->dst;
+       const struct dst_entry *dst = skb_dst(skb);
 
        return (info->id == (dst->tclassid & info->mask)) ^ info->invert;
 }