1. 06 Aug, 2004 2 commits
    • Paul Mackerras's avatar
      [PATCH] Remove ppc32 proc_rtas.c · a081a4a8
      Paul Mackerras authored
      This patch removes proc_rtas.c and error_log.[ch] from
      arch/ppc/platforms.  It turns out that the code in error_log.[ch] is
      completely unused, and the code in proc_rtas.c is buggy, almost
      impossible to understand, and rarely used.
      Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      a081a4a8
    • 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
  2. 05 Aug, 2004 23 commits
  3. 04 Aug, 2004 4 commits
  4. 03 Aug, 2004 6 commits
  5. 02 Aug, 2004 5 commits
    • 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
    • Jens Axboe's avatar
      [PATCH] bio_copy_user() cleanups and fixes · 1737ddec
      Jens Axboe authored
      blk_rq_map_user() is a bit of a hack currently, since it drops back to
      kmalloc() if bio_map_user() fails.  This is unfortunate since it means we
      do no real segment or size checking (and the request segment counts contain
      crap, already found one bug in a scsi lld).  It's also pretty nasty for >
      PAGE_SIZE requests, as we attempt to do higher order page allocations.
      Even worse still, ide-cd will drop back to PIO for non-sg/bio requests. 
      All in all, very suboptimal.
      
      This patch adds bio_copy_user() which simply sets up a bio with kernel
      pages and copies data as needed for reads and writes.  It also changes
      bio_map_user() to return an error pointer like bio_copy_user(), so we can
      return something sane to the user instead of always -ENOMEM.
      Signed-off-by: default avatarJens Axboe <axboe@suse.de>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      1737ddec
    • Linus Torvalds's avatar
      Merge bk://kernel.bkbits.net/davem/net-2.6 · 8e7e3e3e
      Linus Torvalds authored
      into ppc970.osdl.org:/home/torvalds/v2.6/linux
      8e7e3e3e
    • Kumar Gala's avatar
      [PATCH] ppc32: fix e500 SPE saving of context · c9c17aa9
      Kumar Gala authored
      Fix the fact that we were not the signal processing engine status and
      control register (SPEFSCR) on giveup_spe.  Causes problems when the kernel
      tries to read or modify the SPEFSCR.
      Signed-off-by: default avatarKumar Gala <kumar.gala@freescale.com>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      c9c17aa9
    • Stephen Hemminger's avatar
      [TCP]: BIC tcp congestion calculation timestamp · 562d6b23
      Stephen Hemminger authored
      Small change to bictcp based on the BIC 1.1 patches for web100.
      Keep track of last time congestion was computed, and recompute
      if cwnd changes or every 1/32 of a second.
      
      Also changes the initialization location for the parameters.
      Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
      Signed-off-by: default avatarDavid S. Miller <davem@redhat.com>
      562d6b23