OSDN Git Service

ppp: unset IFF_XMIT_DST_RELEASE in ppp_setup()
authorEric Dumazet <dada1@cosmosbay.com>
Tue, 19 May 2009 21:24:37 +0000 (14:24 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 19 May 2009 21:24:37 +0000 (14:24 -0700)
Jarek pointed pppoe can call back dev_queue_xmit(), and might need
skb->dst, so its safer to unset IFF_XMIT_DST_RELEASE on ppp devices.

Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ppp_generic.c

index 8ee9142..639d11b 100644 (file)
@@ -1054,6 +1054,7 @@ static void ppp_setup(struct net_device *dev)
        dev->type = ARPHRD_PPP;
        dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
        dev->features |= NETIF_F_NETNS_LOCAL;
+       dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
 }
 
 /*