Changeset f1d1f5d3 in mainline for kernel/arch/sparc64/include/mm/as.h
- Timestamp:
- 2006-09-17T20:10:10Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 57da95c
- Parents:
- 06e1e95
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/mm/as.h
r06e1e95 rf1d1f5d3 36 36 #define KERN_sparc64_AS_H_ 37 37 38 #ifdef CONFIG_TSB 39 #include <arch/mm/tsb.h> 40 #endif 41 38 42 #define KERNEL_ADDRESS_SPACE_SHADOWED_ARCH 1 39 43 … … 45 49 #define USTACK_ADDRESS_ARCH (0xffffffffffffffffULL-(PAGE_SIZE-1)) 46 50 51 typedef struct { 52 #ifdef CONFIG_TSB 53 tsb_entry_t *itsb; 54 tsb_entry_t *dtsb; 55 #endif 56 } as_arch_t; 57 58 #ifdef CONFIG_TSB 59 # define as_invalidate_translation_cache(as, page, cnt) tsb_invalidate(as, page, cnt) 60 #else 61 # define as_invalidate_translation_cache(as, page, cnt) 62 #endif 63 47 64 extern void as_arch_init(void); 48 65 … … 51 68 /** @} 52 69 */ 53
Note:
See TracChangeset
for help on using the changeset viewer.