1. 02 Oct, 2009 8 commits
  2. 01 Oct, 2009 30 commits
  3. 30 Sep, 2009 2 commits
    • Jarek Poplawski's avatar
      ax25: Fix possible oops in ax25_make_new · 8c185ab6
      Jarek Poplawski authored
      In ax25_make_new, if kmemdup of digipeat returns an error, there would
      be an oops in sk_free while calling sk_destruct, because sk_protinfo
      is NULL at the moment; move sk->sk_destruct initialization after this.
      
      BTW of reported-by: Bernard Pidoux F6BVP <f6bvp@free.fr>
      Signed-off-by: default avatarJarek Poplawski <jarkao2@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      8c185ab6
    • Eric Dumazet's avatar
      net: restore tx timestamping for accelerated vlans · 81bbb3d4
      Eric Dumazet authored
      Since commit 9b22ea56
      ( net: fix packet socket delivery in rx irq handler )
      
      We lost rx timestamping of packets received on accelerated vlans.
      
      Effect is that tcpdump on real dev can show strange timings, since it gets rx timestamps
      too late (ie at skb dequeueing time, not at skb queueing time)
      
      14:47:26.986871 IP 192.168.20.110 > 192.168.20.141: icmp 64: echo request seq 1
      14:47:26.986786 IP 192.168.20.141 > 192.168.20.110: icmp 64: echo reply seq 1
      
      14:47:27.986888 IP 192.168.20.110 > 192.168.20.141: icmp 64: echo request seq 2
      14:47:27.986781 IP 192.168.20.141 > 192.168.20.110: icmp 64: echo reply seq 2
      
      14:47:28.986896 IP 192.168.20.110 > 192.168.20.141: icmp 64: echo request seq 3
      14:47:28.986780 IP 192.168.20.141 > 192.168.20.110: icmp 64: echo reply seq 3
      Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      81bbb3d4