Changeset e7b7be3f in mainline for kernel/arch/ia64/src/mm/tlb.c
- Timestamp:
- 2007-01-22T13:10:08Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f3fc9b
- Parents:
- 62c63fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/mm/tlb.c
r62c63fc re7b7be3f 73 73 for(i = 0; i < count1; i++) { 74 74 for(j = 0; j < count2; j++) { 75 __asm__volatile (75 asm volatile ( 76 76 "ptc.e %0 ;;" 77 77 : … … 180 180 /*cnt+=(page!=va);*/ 181 181 for(; va<(page+cnt*(PAGE_SIZE)); va += (1<<ps)) { 182 __asm__volatile (182 asm volatile ( 183 183 "ptc.l %0,%1;;" 184 184 : … … 245 245 } 246 246 247 __asm__volatile (247 asm volatile ( 248 248 "mov r8=psr;;\n" 249 249 "rsm %0;;\n" /* PSR_IC_MASK */ … … 321 321 } 322 322 323 __asm__volatile (323 asm volatile ( 324 324 "mov r8=psr;;\n" 325 325 "rsm %0;;\n" /* PSR_IC_MASK */ … … 383 383 void dtr_purge(uintptr_t page, count_t width) 384 384 { 385 __asm__volatile ("ptr.d %0, %1\n" : : "r" (page), "r" (width<<2));385 asm volatile ("ptr.d %0, %1\n" : : "r" (page), "r" (width<<2)); 386 386 } 387 387
Note:
See TracChangeset
for help on using the changeset viewer.