Changeset 46d8eb9 in mainline
- Timestamp:
- 2008-07-27T15:14:07Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 113c677
- Parents:
- c32a6f37
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/mm/page.h
rc32a6f37 r46d8eb9 52 52 #define PAGE_WIDTH FRAME_WIDTH 53 53 #define PAGE_SIZE FRAME_SIZE 54 55 #define PAGE_COLOR_BITS 0 /* dummy */56 54 57 55 #ifdef KERNEL -
kernel/arch/arm32/include/mm/page.h
rc32a6f37 r46d8eb9 43 43 #define PAGE_WIDTH FRAME_WIDTH 44 44 #define PAGE_SIZE FRAME_SIZE 45 46 #define PAGE_COLOR_BITS 0 /* dummy */47 45 48 46 #ifndef __ASM__ -
kernel/arch/ia32/include/mm/page.h
rc32a6f37 r46d8eb9 40 40 #define PAGE_WIDTH FRAME_WIDTH 41 41 #define PAGE_SIZE FRAME_SIZE 42 43 #define PAGE_COLOR_BITS 0 /* dummy */44 42 45 43 #ifdef KERNEL -
kernel/arch/ia32xen/include/mm/page.h
rc32a6f37 r46d8eb9 41 41 #define PAGE_SIZE FRAME_SIZE 42 42 43 #define PAGE_COLOR_BITS 0 /* dummy */44 45 43 #ifdef KERNEL 46 44 -
kernel/arch/ia64/include/mm/page.h
rc32a6f37 r46d8eb9 41 41 #define PAGE_SIZE FRAME_SIZE 42 42 #define PAGE_WIDTH FRAME_WIDTH 43 44 #define PAGE_COLOR_BITS 0 /* dummy */45 43 46 44 #ifdef KERNEL -
kernel/arch/mips32/include/mm/page.h
rc32a6f37 r46d8eb9 40 40 #define PAGE_WIDTH FRAME_WIDTH 41 41 #define PAGE_SIZE FRAME_SIZE 42 43 #define PAGE_COLOR_BITS 0 /* dummy */44 42 45 43 #ifndef __ASM__ -
kernel/arch/ppc32/include/mm/page.h
rc32a6f37 r46d8eb9 40 40 #define PAGE_WIDTH FRAME_WIDTH 41 41 #define PAGE_SIZE FRAME_SIZE 42 43 #define PAGE_COLOR_BITS 0 /* dummy */44 42 45 43 #ifdef KERNEL -
kernel/arch/ppc64/include/mm/page.h
rc32a6f37 r46d8eb9 40 40 #define PAGE_WIDTH FRAME_WIDTH 41 41 #define PAGE_SIZE FRAME_SIZE 42 43 #define PAGE_COLOR_BITS 0 /* dummy */44 42 45 43 #ifdef KERNEL -
kernel/arch/sparc64/include/mm/page.h
rc32a6f37 r46d8eb9 54 54 #define MMU_PAGES_PER_PAGE (1 << (PAGE_WIDTH - MMU_PAGE_WIDTH)) 55 55 56 /*57 * With 16K pages, there is only one page color.58 */59 #define PAGE_COLOR_BITS 0 /**< 14 - 14; 2^14 == 16K == alias boundary. */60 61 56 #ifdef KERNEL 62 57 -
kernel/generic/include/mm/page.h
rc32a6f37 r46d8eb9 40 40 #include <memstr.h> 41 41 42 /**43 * Macro for computing page color.44 */45 #define PAGE_COLOR(va) (((va) >> PAGE_WIDTH) & ((1 << PAGE_COLOR_BITS) - 1))46 47 42 /** Operations to manipulate page mappings. */ 48 43 typedef struct { -
uspace/lib/libc/arch/amd64/include/config.h
rc32a6f37 r46d8eb9 37 37 38 38 #define PAGE_WIDTH 12 39 #define PAGE_SIZE (1<<PAGE_WIDTH) 40 #define PAGE_COLOR_BITS 0 /* dummy */ 39 #define PAGE_SIZE (1 << PAGE_WIDTH) 41 40 42 41 #endif -
uspace/lib/libc/arch/arm32/include/config.h
rc32a6f37 r46d8eb9 39 39 #define PAGE_WIDTH 12 40 40 #define PAGE_SIZE (1 << PAGE_WIDTH) 41 #define PAGE_COLOR_BITS 0 /* dummy */42 41 43 42 #endif -
uspace/lib/libc/arch/ia32/include/config.h
rc32a6f37 r46d8eb9 38 38 #define PAGE_WIDTH 12 39 39 #define PAGE_SIZE (1 << PAGE_WIDTH) 40 #define PAGE_COLOR_BITS 0 /* dummy */41 40 42 41 #endif -
uspace/lib/libc/arch/ia64/include/config.h
rc32a6f37 r46d8eb9 37 37 38 38 #define PAGE_WIDTH 14 39 #define PAGE_SIZE (1<<PAGE_WIDTH) 40 #define PAGE_COLOR_BITS 0 /* dummy */ 39 #define PAGE_SIZE (1 << PAGE_WIDTH) 41 40 42 41 #endif -
uspace/lib/libc/arch/mips32/include/config.h
rc32a6f37 r46d8eb9 37 37 38 38 #define PAGE_WIDTH 14 39 #define PAGE_SIZE (1<<PAGE_WIDTH) 40 #define PAGE_COLOR_BITS 0 /* dummy */ 39 #define PAGE_SIZE (1 << PAGE_WIDTH) 41 40 42 41 #endif -
uspace/lib/libc/arch/ppc32/include/config.h
rc32a6f37 r46d8eb9 37 37 38 38 #define PAGE_WIDTH 12 39 #define PAGE_SIZE (1<<PAGE_WIDTH) 40 #define PAGE_COLOR_BITS 0 /* dummy */ 39 #define PAGE_SIZE (1 << PAGE_WIDTH) 41 40 42 41 #endif -
uspace/lib/libc/arch/ppc64/include/config.h
rc32a6f37 r46d8eb9 37 37 38 38 #define PAGE_WIDTH 12 39 #define PAGE_SIZE (1<<PAGE_WIDTH) 40 #define PAGE_COLOR_BITS 0 /* dummy */ 39 #define PAGE_SIZE (1 << PAGE_WIDTH) 41 40 42 41 #endif -
uspace/lib/libc/arch/sparc64/include/config.h
rc32a6f37 r46d8eb9 38 38 #define PAGE_WIDTH 14 39 39 #define PAGE_SIZE (1 << PAGE_WIDTH) 40 #define PAGE_COLOR_BITS 0 /**< Only one page color. */41 40 42 41 #endif
Note:
See TracChangeset
for help on using the changeset viewer.