1. 17 3月, 2011 1 次提交
  2. 05 12月, 2008 1 次提交
    • S
      sparc,sparc64: unify kernel/ · a88b5ba8
      Sam Ravnborg 提交于
      o Move all files from sparc64/kernel/ to sparc/kernel
        - rename as appropriate
      o Update sparc/Makefile to the changes
      o Update sparc/kernel/Makefile to include the sparc64 files
      
      NOTE: This commit changes link order on sparc64!
      
      Link order had to change for either of sparc32 and sparc64.
      And assuming sparc64 see more testing than sparc32 change link
      order on sparc64 where issues will be caught faster.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a88b5ba8
  3. 05 3月, 2006 1 次提交
  4. 29 9月, 2005 1 次提交
  5. 20 9月, 2005 1 次提交
    • D
      [SPARC64]: Handle little-endian unaligned loads/stores correctly. · ff171d8f
      David S. Miller 提交于
      Because we use byte loads/stores to cons up the value
      in and out of registers, we can't expect the ASI endianness
      setting to take care of this for us.  So do it by hand.
      
      This case is triggered by drivers/block/aoe/aoecmd.c in the
      ataid_complete() function where it goes:
      
      		/* word 100: number lba48 sectors */
      		ssize = le64_to_cpup((__le64 *) &id[100<<1]);
      
      This &id[100<<1] address is 4 byte, rather than 8 byte aligned,
      thus triggering the unaligned exception.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      ff171d8f
  6. 20 8月, 2005 1 次提交