1. 04 Sep, 2003 28 commits
  2. 03 Sep, 2003 12 commits
    • David S. Miller's avatar
      Merge nuts.ninka.net:/disk1/davem/BK/net-2.5 · a587017c
      David S. Miller authored
      into kernel.bkbits.net:/home/davem/net-2.5
      a587017c
    • David S. Miller's avatar
      f7d85523
    • David S. Miller's avatar
    • Harald Welte's avatar
      [NETFILTER]: NAT range calculation fix. · 87461060
      Harald Welte authored
      This patch fixes a logic bug in NAT range calculations, which also
      causes a large slowdown when ICMP floods go through NAT.
      
      Author: Karlis Peisenieks
      87461060
    • Andrew Morton's avatar
      [PATCH] MODULE_ALIAS for tty ldisc · 6cea4e9e
      Andrew Morton authored
      From: Rusty Russell <rusty@rustcorp.com.au>
      
      Rather than hardcoded names in modprobe, modules can offer their own
      aliases (which can be overridden by the config file).
      
      Here are the tty-ldisc ones.
      6cea4e9e
    • Andrew Morton's avatar
      [PATCH] cciss error handling cleanup · 80e01029
      Andrew Morton authored
      From: mike.miller@hp.com
      
      Clean up the error handling in cciss_init_one().
      80e01029
    • Andrew Morton's avatar
      [PATCH] hermes.h fails with outw_p() in :? · 74a93fb5
      Andrew Morton authored
      From: Michael Pruznick <michael_pruznick@mvista.com>
      
      build errors:
        hermes.h: In function `hermes_set_irqmask':
        hermes.h:337: parse error before "do"
        hermes.h:337: parse error before ';' token
        hermes.h: In function `hermes_write_words':
      
      In mips, outw_p() is a #define do...while(0) which, in the case of ?:,
      results in a statement being used where an expression is required.
      74a93fb5
    • Andrew Morton's avatar
      [PATCH] drivers/scsi/imm.c build fix · 1f5fd6aa
      Andrew Morton authored
      1f5fd6aa
    • Andrew Morton's avatar
      [PATCH] Remove Documentation/kmod.txt · a07fccd5
      Andrew Morton authored
      From: Rusty Russell <rusty@rustcorp.com.au>
      
      Please delete Documentation/kmod.txt: it's entirely outdated and misleading.
      
      I thought about rewriting it, but there's not much to add beyond what's in
      the CONFIG_KMOD's help text.
      a07fccd5
    • Andrew Morton's avatar
      [PATCH] i8042 free_irq() aliasing fix · f5fe7f06
      Andrew Morton authored
      The same address `i8042_request_irq_cookie' is used in three places for the
      i8042 request_irq() argument.  This means that if someone calls
      i8042_check_mux() or i8042_check_aux() while the IRQ is in use, the
      free_irq() call in there will free the wrong IRQ handler.
      
      So give all three instances of request_irq() in i8042.c a distinct address by
      which to identify the IRQ instance.
      
      (This is probably a non-bug, because the `check' functions are not called
      when the device is open, but it is better this way).
      f5fe7f06
    • Andrew Morton's avatar
      [PATCH] devfs pty fix · 188f11a1
      Andrew Morton authored
      From: Andrew Lunn <andrew@lunn.ch>
      
      Create the pty slaves on init so the behaviour is consistant with 2.4 and 2.6
      without devfs.
      188f11a1
    • Andrew Morton's avatar
      [PATCH] Enable SELinux via boot parameter · de4716fd
      Andrew Morton authored
      From: James Morris <jmorris@redhat.com>
      
      This patch adds an 'selinux' boot parameter which must be used to actually
      enable SELinux.
      
      It follows some internal discussion about deployment issues, where a vendor
      would want to ship a single kernel image with SELinux built-in, without
      requiring the user to use it.
      
      Without specifying selinux=1 as a boot parameter, SELinux will not register
      with LSM and selinuxfs will not be registered as a filesystem.  This causes
      SELinux to be bypassed entirely from then on, and no performance overhead
      is imposed.  Other security modules may then also be loaded if needed.
      de4716fd