Changeset b678410 in mainline for kernel/arch
- Timestamp:
- 2011-04-27T20:01:13Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a6dffb8
- Parents:
- 628d548 (diff), 933cadf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- kernel/arch
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/types.h
r628d548 rb678410 40 40 41 41 typedef uint32_t size_t; 42 typedef int32_t ssize_t; 42 43 43 44 typedef uint32_t uintptr_t; -
kernel/arch/amd64/include/types.h
r628d548 rb678410 37 37 38 38 typedef uint64_t size_t; 39 typedef int64_t ssize_t; 39 40 40 41 typedef uint64_t uintptr_t; -
kernel/arch/arm32/include/types.h
r628d548 rb678410 44 44 45 45 typedef uint32_t size_t; 46 typedef int32_t ssize_t; 46 47 47 48 typedef uint32_t uintptr_t; -
kernel/arch/ia32/include/types.h
r628d548 rb678410 37 37 38 38 typedef uint32_t size_t; 39 typedef int32_t ssize_t; 39 40 40 41 typedef uint32_t uintptr_t; -
kernel/arch/ia64/_link.ld.in
r628d548 rb678410 30 30 hardcoded_kdata_size = .; 31 31 QUAD(kdata_end - kdata_start); 32 __gp = .; 32 33 *(.got .got.*) 33 34 *(.sdata) -
kernel/arch/ia64/include/types.h
r628d548 rb678410 37 37 38 38 typedef uint64_t size_t; 39 typedef int64_t ssize_t; 39 40 40 41 typedef uint64_t uintptr_t; -
kernel/arch/ia64/src/ivt.S
r628d548 rb678410 391 391 392 392 /* 10. call handler */ 393 movl r1 = kernel_image_start393 movl r1 = __gp 394 394 395 395 mov b1 = loc2 -
kernel/arch/ia64/src/start.S
r628d548 rb678410 174 174 175 175 # Initialize gp (Global Pointer) register 176 movl gp = kernel_image_start176 movl gp = __gp 177 177 178 # 178 # 179 179 # Initialize bootinfo on BSP. 180 180 # -
kernel/arch/mips32/include/atomic.h
r628d548 rb678410 91 91 " sc %0, %1\n" 92 92 " beqz %0, 1b\n" 93 " nop\n" 93 94 "2:\n" 94 95 : "=&r" (tmp), -
kernel/arch/mips32/include/types.h
r628d548 rb678410 37 37 38 38 typedef uint32_t size_t; 39 typedef int32_t ssize_t; 39 40 40 41 typedef uint32_t uintptr_t; -
kernel/arch/mips32/src/mm/frame.c
r628d548 rb678410 88 88 /* gxemul devices */ 89 89 if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE, 90 0x10000000, M B2SIZE(256)))90 0x10000000, MiB2SIZE(256))) 91 91 return false; 92 92 #endif -
kernel/arch/ppc32/include/types.h
r628d548 rb678410 37 37 38 38 typedef uint32_t size_t; 39 typedef int32_t ssize_t; 39 40 40 41 typedef uint32_t uintptr_t; -
kernel/arch/sparc64/include/cpu.h
r628d548 rb678410 59 59 #include <arch/asm.h> 60 60 61 #ifdef CONFIG_SMP62 #include <arch/mm/cache.h>63 #endif64 65 66 61 #if defined (SUN4U) 67 62 #include <arch/sun4u/cpu.h> -
kernel/arch/sparc64/include/sun4u/cpu.h
r628d548 rb678410 60 60 #include <trace.h> 61 61 62 #ifdef CONFIG_SMP63 #include <arch/mm/cache.h>64 #endif65 66 62 typedef struct { 67 63 uint32_t mid; /**< Processor ID as read from -
kernel/arch/sparc64/include/types.h
r628d548 rb678410 37 37 38 38 typedef uint64_t size_t; 39 typedef int64_t ssize_t; 39 40 40 41 typedef uint64_t uintptr_t;
Note:
See TracChangeset
for help on using the changeset viewer.