1. 20 Oct, 2017 14 commits
  2. 19 Oct, 2017 24 commits
  3. 18 Oct, 2017 2 commits
    • Eric Dumazet's avatar
      tcp: fix tcp_xmit_retransmit_queue() after rbtree introduction · b9f1f1ce
      Eric Dumazet authored
      I tried to hard avoiding a call to rb_first() (via tcp_rtx_queue_head)
      in tcp_xmit_retransmit_queue(). But this was probably too bold.
      
      Quoting Yuchung :
      
      We might miss re-arming the RTO if tp->retransmit_skb_hint is not NULL.
      This can happen when RACK marks the first packet lost again and resets
      tp->retransmit_skb_hint for example (tcp_rack_mark_skb_lost())
      
      Fixes: 75c119af ("tcp: implement rb-tree based retransmit queue")
      Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
      Reported-by: default avatarYuchung Cheng <ycheng@google.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      b9f1f1ce
    • David S. Miller's avatar
      Merge branch 'bpf-ctx-info-out-of-verifier' · b082af73
      David S. Miller authored
      Jakub Kicinski says:
      
      ====================
      bpf: move context info out of the verifier
      
      Daniel pointed out during the review of my previous patchset that
      the knowledge about context doesn't really belong directly in the
      verifier.  This patch set takes a bit of a drastic approach to
      move the info out of there.  I want to be able to use different
      set of verifier_ops for program analysis.  To do that, I have
      to first move the test_run callback to a separate structure.  Then
      verifier ops can be declared in the verifier directly and
      different sets can be picked for verification vs analysis.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      b082af73