Age | Commit message (Expand) | Author |
2007-11-22 | Remove the cpu parameter from cmmu_set_sapr(), since it is only invoked | Miod Vallat |
2007-11-22 | Remove explicit tlb flush from vmapbuf(), since pmap_enter() will take | Miod Vallat |
2007-11-22 | Add an extra parameter to pmap_remove_pte() to control whether it will | Miod Vallat |
2007-11-22 | Move the cmmu lock to 88200-specific code. 88110 MP code will use ipis | Miod Vallat |
2007-11-21 | Typo | Miod Vallat |
2007-11-21 | Don't bother flushing caches in pmap_{copy,zero}_page(), since our caches | Miod Vallat |
2007-11-21 | Move pmap_set_modify() prototype to a header file | Miod Vallat |
2007-11-21 | Move external interrupt and ast handling from m881[01]0_trap() to their | Miod Vallat |
2007-11-21 | A really horrible fix for sigreturn on 88110. This will probably be replaced | Miod Vallat |
2007-11-20 | A line got lost while hand-editing diffs... | Miod Vallat |
2007-11-20 | On 88110, use a shorter path in pmap_is_modified(), since we perform | Miod Vallat |
2007-11-20 | Move 88110 trap-on-write processing from two duplicated sections in trap.c to | Miod Vallat |
2007-11-20 | Fix MP locking issues when processing data access faults on 88110, similar | Miod Vallat |
2007-11-20 | Overhaul of the pmap debug messages. They now provide slightly better | Miod Vallat |
2007-11-20 | Fix setregs() on 88110, so that binaries do not skip their first instruction. | Miod Vallat |
2007-11-20 | In data_access_emulation(), make sure that if we want the pipeline replay | Miod Vallat |
2007-11-17 | Replace many ``unsigned'' variables with ``unsigned int'', ``u_int'' or other | Miod Vallat |
2007-11-17 | Rework {get,set,raise}ipl() to minimize psr modification, especially on | Miod Vallat |
2007-11-15 | Check for curcpu()->ci_softintr being nonzero before invoking dosoftint(), | Miod Vallat |
2007-11-15 | Make a few end-of-trap-handling symbols global, to get better ddb traces. | Miod Vallat |
2007-11-15 | Resolve the struct trapframe tf_mode/tf_flags duality by getting rid of | Miod Vallat |
2007-11-15 | Stop referring the initial kernel stack as the ``interrupt stack''. It's | Miod Vallat |
2007-11-14 | Cache curcpu() value into a local variable when it is used more than once in | Miod Vallat |
2007-11-14 | Merge the ci_alive and ci_primary boolean values of struct cpu_info into | Miod Vallat |
2007-11-14 | When processing a data access fault, keep the kernel lock while invoking | Miod Vallat |
2007-11-14 | When servicing an exception, do not enable interrupts if they were not | Miod Vallat |
2007-11-14 | Let ``machine cpu #'' hop to the given cpu. | Miod Vallat |
2007-11-11 | Give more information in ``machine cpu'' under ddb. | Miod Vallat |
2007-11-11 | In dma_cachectl(), flush unconditionnaly on all processors, regardless of the | Miod Vallat |
2007-11-09 | In dma_cachectl*(), try and perform fewer remote processor operations whenever | Miod Vallat |
2007-11-09 | Do not bother checking for curproc != NULL if we know a trap comes from | Miod Vallat |
2007-11-09 | On MULTIPROCESSOR kernels, don't forget to grab the kernel lock when | Miod Vallat |
2007-11-06 | Keep a pending software interrupts mask per processor, instead of having it | Miod Vallat |
2007-11-06 | Comment out the pmap fine grained locking stuff, it is not necessary for now | Miod Vallat |
2007-11-06 | Be sure to pmap_deactivate() a process during context switches, so that | Miod Vallat |
2007-11-06 | Remove the now unused idle_u, and call the secondary processors startup | Miod Vallat |
2007-10-29 | Make sure the dma_cachectl*() functions actually do their work on all | Miod Vallat |
2007-10-29 | When a secondary cpu gets its interrupt pin stuck, be sure to savectx | Miod Vallat |
2007-10-28 | Do not flag a processor as ``alive'' until it really is ready to accept IPIs. | Miod Vallat |
2007-10-28 | When handling a userland data fault occuring in kernel mode, take the kernel | Miod Vallat |
2007-10-28 | Disable interrupts around changing curproc and curpcb so these always match. | Miod Vallat |
2007-10-27 | Use the same assembly constraints for all inline assembler xmem constructs. | Miod Vallat |
2007-10-27 | In __cpu_simple_lock() and __cpu_simple_lock_try(), use a local u_int instead | Miod Vallat |
2007-10-27 | No need for an explicit pipeline synchronization in invalidate_pte(), the | Miod Vallat |
2007-10-27 | Be more strict when disassembling {f,}{st,x}cr and [bt]cnd instructions, | Miod Vallat |
2007-10-24 | Rely on 16 byte pcb alignment, and use double loads and stores during | Miod Vallat |
2007-10-24 | Remove sir_lock, superseded by the atomic bit operations. | Miod Vallat |
2007-10-24 | Turn curcpu() into an inline function instead of a macro relying on a GCC | Miod Vallat |
2007-10-16 | Do not expose the end of the proc_trampoline bowels to C code anymore, and | Miod Vallat |
2007-10-16 | Fix the mtx_wantipl != IPL_NONE comparison in the ``have to spin'' | Miod Vallat |