* TLB flush for an individual page (even if it has PG_G). * Only works on 486+ CPUs (i386 does not have PG_G). */
| 529 | * Only works on 486+ CPUs (i386 does not have PG_G). |
| 530 | */ |
| 531 | static __inline void |
| 532 | invlpg(u_int addr) |
| 533 | { |
| 534 | |
| 535 | __asm __volatile("invlpg %0" : : "m" (*(char *)addr) : "memory"); |
| 536 | } |
| 537 | |
| 538 | static __inline u_short |
| 539 | rfs(void) |
no outgoing calls
no test coverage detected