1. 05 8月, 2005 5 次提交
  2. 04 8月, 2005 24 次提交
  3. 03 8月, 2005 7 次提交
  4. 02 8月, 2005 4 次提交
    • O
      [PATCH] aic byteorder fixes after recent cleanup · f7c80c9f
      Olaf Hering 提交于
      Rebuild the aic7xxx firmware doesn't work anymore after this change
      which appeared int 2.6.13-rc1:
      
         [SCSI] aic7xxx/aic79xx: remove useless byte order macro cruft
      
      Two files did not include byteorder.h, resulting in aic dying with a panic
      
      	"Unknown opcode encountered in seq program"
      
      This fixes it for me.
      Signed-off-by: NOlaf Hering <olh@suse.de>
      Acked-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      f7c80c9f
    • P
      [PATCH] Obvious bugfix for yenta resource allocation · f7d1d23c
      Paul Mackerras 提交于
      Recent changes (well, dating from 12 July) have broken cardbus on my
      powerbook: I get 3 messages saying "no resource of type xxx available,
      trying to continue", and if I plug in my wireless card, it complains
      that there are no resources allocated to the card.  This all worked in
      2.6.12.
      
      Looking at the code in yenta_socket.c, function yenta_allocate_res,
      it's obvious what is wrong: if we get to line 639 (i.e. there wasn't a
      usable preassigned resource), we will always flow through to line 668,
      which is the printk that I was seeing, even if a resource was
      successfully allocated.  It looks to me as though there should be a
      return statement after the two config_writel's in each of the 3
      branches of the if statements, so that the function returns after
      successfully setting up the resource.
      
      The patch below adds these return statements, and with this patch,
      cardbus works on my powerbook once again.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      Acked-by: NDominik Brodowski <linux@dominikbrodowski.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      f7d1d23c
    • L
      Linux v2.6.13-rc5 · 9a351e30
      Linus Torvalds 提交于
      Ok, let's get it right this time
      9a351e30
    • M
      [PATCH] ppc64: POWER 4 fails to boot with NUMA · 96cd5b08
      Mike Kravetz 提交于
      If CONFIG_NUMA is set, some POWER 4 systems will fail to boot.  This is
      because of special processing needed to handle invalid node IDs (0xffff) on
      POWER 4.  My previous patch to handle memory 'holes' within nodes forgot to
      add this special case for POWER 4 in one place.
      
      In reality, I'm not sure that configuring the kernel for NUMA on POWER 4 makes
      much sense.  Are there POWER 4 based systems with NUMA characteristics that
      are presented by the firmware?  But, distros want one kernel for all systems
      so NUMA is on by default in their kernels.  The patch handles those cases.
      Signed-off-by: NMike Kravetz <kravetz@us.ibm.com>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      96cd5b08