Changeset 086d4fd in mainline
- Timestamp:
- 2006-02-02T21:16:08Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 14e5d88
- Parents:
- bc504ef2
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/include/mm/page.h
rbc504ef2 r086d4fd 36 36 #endif 37 37 38 #define PAGE_WIDTH FRAME_WIDTH 38 39 #define PAGE_SIZE FRAME_SIZE 39 40 -
arch/ia32/include/mm/page.h
rbc504ef2 r086d4fd 30 30 #define __ia32_PAGE_H__ 31 31 32 #define PAGE_WIDTH FRAME_WIDTH 32 33 #define PAGE_SIZE FRAME_SIZE 33 34 -
arch/mips32/include/mm/page.h
rbc504ef2 r086d4fd 30 30 #define __mips32_PAGE_H__ 31 31 32 #define PAGE_WIDTH FRAME_WIDTH 32 33 #define PAGE_SIZE FRAME_SIZE 33 34 -
arch/mips32/src/mm/tlb.c
rbc504ef2 r086d4fd 367 367 */ 368 368 if (!pte) { 369 printf("No such mapping : %P.\n", badvaddr);369 printf("No such mapping.\n"); 370 370 return NULL; 371 371 } -
arch/ppc32/include/mm/page.h
rbc504ef2 r086d4fd 34 34 #include <arch/types.h> 35 35 36 #define PAGE_WIDTH FRAME_WIDTH 36 37 #define PAGE_SIZE FRAME_SIZE 37 38 -
arch/sparc64/include/mm/page.h
rbc504ef2 r086d4fd 34 34 #include <arch/types.h> 35 35 36 #define PAGE_WIDTH FRAME_WIDTH 36 37 #define PAGE_SIZE FRAME_SIZE 37 38 -
generic/src/mm/slab.c
rbc504ef2 r086d4fd 412 412 413 413 /* Minimum slab order */ 414 cache->order = (cache->size / PAGE_SIZE) + 1;414 cache->order = (cache->size >> PAGE_WIDTH) + 1; 415 415 416 416 while (badness(cache) > SLAB_MAX_BADNESS(cache)) {
Note:
See TracChangeset
for help on using the changeset viewer.