diff options
Diffstat (limited to 'net/sctp/protocol.c')
-rw-r--r-- | net/sctp/protocol.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c index 8d9d929f6cea..1afef08f6c1d 100644 --- a/net/sctp/protocol.c +++ b/net/sctp/protocol.c | |||
@@ -363,7 +363,7 @@ static int sctp_v4_addr_valid(union sctp_addr *addr, | |||
363 | return 0; | 363 | return 0; |
364 | 364 | ||
365 | /* Is this a broadcast address? */ | 365 | /* Is this a broadcast address? */ |
366 | if (skb && ((struct rtable *)skb->dst)->rt_flags & RTCF_BROADCAST) | 366 | if (skb && skb->rtable->rt_flags & RTCF_BROADCAST) |
367 | return 0; | 367 | return 0; |
368 | 368 | ||
369 | return 1; | 369 | return 1; |
@@ -539,7 +539,7 @@ static void sctp_v4_get_saddr(struct sctp_association *asoc, | |||
539 | /* What interface did this skb arrive on? */ | 539 | /* What interface did this skb arrive on? */ |
540 | static int sctp_v4_skb_iif(const struct sk_buff *skb) | 540 | static int sctp_v4_skb_iif(const struct sk_buff *skb) |
541 | { | 541 | { |
542 | return ((struct rtable *)skb->dst)->rt_iif; | 542 | return skb->rtable->rt_iif; |
543 | } | 543 | } |
544 | 544 | ||
545 | /* Was this packet marked by Explicit Congestion Notification? */ | 545 | /* Was this packet marked by Explicit Congestion Notification? */ |
@@ -828,8 +828,8 @@ static inline int sctp_v4_xmit(struct sk_buff *skb, | |||
828 | SCTP_DEBUG_PRINTK("%s: skb:%p, len:%d, " | 828 | SCTP_DEBUG_PRINTK("%s: skb:%p, len:%d, " |
829 | "src:%u.%u.%u.%u, dst:%u.%u.%u.%u\n", | 829 | "src:%u.%u.%u.%u, dst:%u.%u.%u.%u\n", |
830 | __FUNCTION__, skb, skb->len, | 830 | __FUNCTION__, skb, skb->len, |
831 | NIPQUAD(((struct rtable *)skb->dst)->rt_src), | 831 | NIPQUAD(skb->rtable->rt_src), |
832 | NIPQUAD(((struct rtable *)skb->dst)->rt_dst)); | 832 | NIPQUAD(skb->rtable->rt_dst)); |
833 | 833 | ||
834 | SCTP_INC_STATS(SCTP_MIB_OUTSCTPPACKS); | 834 | SCTP_INC_STATS(SCTP_MIB_OUTSCTPPACKS); |
835 | return ip_queue_xmit(skb, ipfragok); | 835 | return ip_queue_xmit(skb, ipfragok); |