1. 29 6月, 2005 1 次提交
    • P
      [NETFILTER]: Fix connection tracking bug in 2.6.12 · 9666dae5
      Patrick McHardy 提交于
      In 2.6.12 we started dropping the conntrack reference when a packet
      leaves the IP layer. This broke connection tracking on a bridge,
      because bridge-netfilter defers calling some NF_IP_* hooks to the bridge
      layer for locally generated packets going out a bridge, where the
      conntrack reference is no longer available. This patch keeps the
      reference in this case as a temporary solution, long term we will
      remove the defered hook calling. No attempt is made to drop the
      reference in the bridge-code when it is no longer needed, tc actions
      could already have sent the packet anywhere.
      Signed-off-by: NPatrick McHardy <kaber@trash.net>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      9666dae5
  2. 22 6月, 2005 1 次提交
  3. 19 5月, 2005 1 次提交
    • H
      [IPV4/IPV6] Ensure all frag_list members have NULL sk · 2fdba6b0
      Herbert Xu 提交于
      Having frag_list members which holds wmem of an sk leads to nightmares
      with partially cloned frag skb's.  The reason is that once you unleash
      a skb with a frag_list that has individual sk ownerships into the stack
      you can never undo those ownerships safely as they may have been cloned
      by things like netfilter.  Since we have to undo them in order to make
      skb_linearize happy this approach leads to a dead-end.
      
      So let's go the other way and make this an invariant:
      
      	For any skb on a frag_list, skb->sk must be NULL.
      
      That is, the socket ownership always belongs to the head skb.
      It turns out that the implementation is actually pretty simple.
      
      The above invariant is actually violated in the following patch
      for a short duration inside ip_fragment.  This is OK because the
      offending frag_list member is either destroyed at the end of the
      slow path without being sent anywhere, or it is detached from
      the frag_list before being sent.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      2fdba6b0
  4. 06 5月, 2005 1 次提交
  5. 04 5月, 2005 1 次提交
  6. 26 4月, 2005 1 次提交
  7. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4