1. 15 Apr, 2003 11 commits
    • Rusty Russell's avatar
      [NETFILTER_IPV4]: De-linearization of IP Connection Tracking. · 98fab1e4
      Rusty Russell authored
      This converts connection tracking and all the connection tracking
      modules to handle non-linear skbs.  Enough interfaces have been
      broken in the process that old helpers won't compile.
      
      Interfaces which used to take a "void *data, int len" or
      "struct iphdr *iph, int len" now take the skb itself (and an offset to
      the data in the case of the first interface), which is not
      linearized in any way (although Alexey says after ip_rcv the IP header
      is always linear, so IPv4 netfilter hooks can always assume a linear
      IP hdr).
      
      Helpers which examine data (amanda, FTP, IRC) now copy it into a buffer
      and examine that.
      98fab1e4
    • David S. Miller's avatar
      Merge nuts.ninka.net:/home/davem/src/BK/network-2.5 · 0eb8fea5
      David S. Miller authored
      into nuts.ninka.net:/home/davem/src/BK/net-2.5
      0eb8fea5
    • Linus Torvalds's avatar
      Merge bk://are.twiddle.net/axp-2.5 · a0b2fc70
      Linus Torvalds authored
      into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
      a0b2fc70
    • Richard Henderson's avatar
    • Ulrich Drepper's avatar
      [PATCH] unwinding for vsyscall code · e60ef815
      Ulrich Drepper authored
      Now that the kernel provides code user programs are executing directly
      (I mean the vsyscall code on x86) it is necessary to add unwind
      information for that code as well.  The unwind information is used not
      only in C++ code.
      
      This patch adds a AT_SYSINFO_EH_FRAME ELF aux-table value that points to
      the unwinding block description for the sysinfo frame, and makes sure
      the AT_* value is passed to applications.  It defines the static data
      for the unwind blocks (two, one for int80 and the other for sysenter),
      and finally adds code to copy the data in place.
      e60ef815
    • Linus Torvalds's avatar
      Fix typo (and logic bug that the typo hid) in bit value · 30485186
      Linus Torvalds authored
      testing. 
      
      Found by 'sparse', my source parser tool.
      30485186
    • Matt Reppert's avatar
      [ALPHA] Include module.h for EXPORT_SYMBOL. · a3b4f7f1
      Matt Reppert authored
      a3b4f7f1
    • Ivan Kokshaysky's avatar
      [PATCH] alpha: lynx support · b94ce25b
      Ivan Kokshaysky authored
      Forward port of Jay's 2.4 patch.
      Also I've cleaned up EISA configury - we only need it for
      systems with EISA.
      
      Ivan.
      b94ce25b
    • Ivan Kokshaysky's avatar
      [PATCH] alpha: move_initrd fix (from Jeff Wiedemeier) · d33a9219
      Ivan Kokshaysky authored
      While testing our upcoming kernel update for 7.2 alpha, I've encountered
      a problem with move_initrd. It allocates a page-aligned chunk to move
      the initrd into, but it doesn't allocate the entire last
      page. Subsequent bootmem allocations can then be filled from the last
      page used be the initrd.  This then becomes a problem when the initrd
      memory is released.
      d33a9219
    • Ivan Kokshaysky's avatar
      [PATCH] alpha: execve() fix · 9a357b21
      Ivan Kokshaysky authored
      The 2.5 kernels may hang on execve(). Most easily this can be reproduced
      by submitting forms in mozilla, apparently because it does execve with
      very long argument strings.
      That's what happens in do_execve, I suppose:
      	bprm.mm = mm_alloc();
      	...
      	init_new_context(current, bprm.mm); here we update current ptbr
      					    with new mm->pgd
      	...
      	copy_strings;
      			interrupt -> do_softirq -> switch to ksoftirqd
      			...
      			switch back to do_execve;
      	copy_strings -  immediate page fault in copy_user that we can't
      			handle because the new ptbr has been activated
      			after context switch and current->mm is not
      			valid anymore.
      
      The fix is to not update ptbr for current task in init_new_context(),
      as we do it later in activate_mm() anyway.
      
      With it my (UP) boxes look quite stable so far.
      
      Ivan.
      9a357b21
    • Richard Henderson's avatar
      Merge are.twiddle.net:/home/rth/BK/linus-2.5 · cacc230d
      Richard Henderson authored
      into are.twiddle.net:/home/rth/BK/axp-2.5
      cacc230d
  2. 14 Apr, 2003 29 commits