1. 08 Aug, 2004 4 commits
  2. 07 Aug, 2004 1 commit
    • Sam Ravnborg's avatar
      kbuild: Check for undefined symbols in vmlinux · 1d3fa84d
      Sam Ravnborg authored
      At least one bin-utils version for ARM is know to ignore undefined
      symbols when performing the final link of vmlinux.
      Add an explicit check for undefined symbols to catch this.
      The check is made in combination with generating the System.map file
      and the actual algorithm is moved to a small shell script - mksysmap.
      
      External symbols with three leading underscores are ignored - sparc
      uses them for the BTFIXUP logic.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      1d3fa84d
  3. 06 Aug, 2004 1 commit
    • James Morris's avatar
      [PATCH] Re-implemented i586 asm AES · e7bf2031
      James Morris authored
      This code is a rework of the original Gladman AES code, and does not
      include any supposed BSD licensed work by Jari Ruusu. 
      
      Linus converted the Intel asm to Gas format, and made some minor
      alterations.
      
      Fruhwirth's glue module has also been retained, although I rebased the
      table generation and key scheduling back to Gladman's code.  I've tested
      this code with some standard FIPS test vectors, and large FTP transfers
      over IPSec (both locally and over the wire to a system running the
      generic AES implementation).
      Signed-off-by: default avatarJames Morris <jmorris@redhat.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      e7bf2031
  4. 05 Aug, 2004 23 commits
  5. 04 Aug, 2004 4 commits
  6. 03 Aug, 2004 6 commits
  7. 02 Aug, 2004 1 commit
    • Benjamin Herrenschmidt's avatar
      [PATCH] ppc32: Fix problem with spurrious edge interrupts on old · 7588ab97
      Benjamin Herrenschmidt authored
      On old powermacs, it's possible that we get a stale edge interrupt when
      doing request_irq(), that typically happens with the DBDMA controller
      interrupts when the device was used by the firmware for booting.
      
      I just tracked down a nasty memory corruption problem where that was
      causing the bmac driver to try to process packets before the driver
      internal data structures were properly initialized.
      
      While I agree that the driver should (and will) be made more robust to
      such things, Paulus and I decided that it makes little sense to keep
      track of an "old" edge interrupt that happens before a driver does
      request_irq.  (On those powermacs, those are only the DBDMA interrupts
      anyway, and none of the DBDMA users will care). 
      
      This patch implements a "startup" handler for the old Apple PIC that
      will "ack" pending edge interrupts before unmasking, thus preventing
      those stale interrupts to be delivered.
      
      It also "fixes" the ppc32 irq core to call the startup() callback when
      available instead of just calling enable().
      Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      7588ab97