aboutsummaryrefslogtreecommitdiff
path: root/sys/ia64
Commit message (Expand)AuthorAgeFilesLines
* Don't unwrap the function descriptor used as the callout argument toDoug Rabson2001-04-191-7/+2
* Don't take the Giant mutex for clock interrupts.Doug Rabson2001-04-191-2/+0
* Don't panic when we try to modify the kernel pmap.Doug Rabson2001-04-181-2/+2
* Print an approximation of the function arguments in the stack trace.Doug Rabson2001-04-181-10/+25
* Implement a simple stack trace for DDB. This will have to be redoneDoug Rabson2001-04-183-11/+68
* Record the right value for tf_ndirty for kernel interruptions so thatDoug Rabson2001-04-182-6/+6
* Turn on kernel debugging support (DDB, INVARIANTS, INVARIANT_SUPPORT, WITNESS)David E. O'Brien2001-04-151-1/+7
* Rename the IPI API from smp_ipi_* to ipi_* since the smp_ prefix is justJohn Baldwin2001-04-112-20/+20
* Reduce the emasculation of bounds_check_with_label() by one line, so weDavid E. O'Brien2001-03-291-1/+1
* Convert the allproc and proctree locks from lockmgr locks to sx locks.John Baldwin2001-03-281-3/+5
* Rework the witness code to work with sx locks as well as mutexes.John Baldwin2001-03-283-3/+3
* Switch from save/disable/restore_intr() to critical_enter/exit().John Baldwin2001-03-281-4/+3
* Catch up to the mtx_saveintr -> mtx_savecrit change.John Baldwin2001-03-281-1/+1
* - Switch from using save/disable/restore_intr to using critical_enter/exitJohn Baldwin2001-03-281-1/+1
* - Add the new critical_t type used to save state inside of criticalJohn Baldwin2001-03-282-9/+11
* Send the remains (such as I have located) of "block major numbers" toPoul-Henning Kamp2001-03-263-4/+0
* Unbreak build on alpha.Hajimu UMEMOTO2001-03-241-3/+0
* - Define and use MAXCPU like the alpha and i386 instead of NCPUS.John Baldwin2001-03-242-6/+10
* Stick a prototype for handleclock() in machine/clock.h and include itJohn Baldwin2001-03-242-0/+2
* Export intrnames and intrcnt as sysctls (hw.nintr, hw.intrnames andThomas Moestl2001-03-231-0/+2
* Use a generic implementation of the Fowler/Noll/Vo hash (FNV hash).Peter Wemm2001-03-171-1/+1
* Allow the config file to specify a root filesystem filename.Doug Rabson2001-03-091-1/+6
* Adjust a comment slightly.Doug Rabson2001-03-091-2/+1
* Fix mtx_legal2block. The only time that it is bad to block on a mutex isJohn Baldwin2001-03-091-1/+0
* Unrevert the pmap_map() changes. They weren't broken on x86.John Baldwin2001-03-071-32/+26
* - Release Giant a bit earlier on syscall exit.John Baldwin2001-03-071-13/+8
* Grab the process lock while calling psignal and before calling psignal.John Baldwin2001-03-071-1/+1
* Use the proc lock to protect p_pptr when waking up our parent in cpu_exit()John Baldwin2001-03-071-2/+2
* Back out the pmap_map() change for now, it isn't completely stable on theJohn Baldwin2001-03-071-26/+32
* Don't psignal() a process from forward_hardclock() but set the appropriateJohn Baldwin2001-03-061-2/+2
* - Rework pmap_map() to take advantage of direct-mapped segments onJohn Baldwin2001-03-061-32/+26
* Fix a couple of typos which became obvious when I started to actually useDoug Rabson2001-03-041-3/+3
* sched_swi -> swi_schedJohn Baldwin2001-02-241-1/+1
* Don't include machine/mutex.h and relocate sys/mutex.h's include to beJohn Baldwin2001-02-241-2/+1
* Clockframes have a trapframe stored in a cf_tf member, not ct_tf.John Baldwin2001-02-241-1/+1
* Whitespace nits.John Baldwin2001-02-241-2/+2
* Pass in process to mark ast on to aston().John Baldwin2001-02-241-1/+1
* Axe pcb_schednest as it is no longer used.John Baldwin2001-02-222-2/+0
* Rename switch_trampoline() to fork_trampoline() on the alpha and ia64.John Baldwin2001-02-223-6/+6
* Don't set the sched_lock lesting level for new processes as it is noJohn Baldwin2001-02-221-7/+0
* Catch comments up to child_return() -> fork_return() as well.John Baldwin2001-02-221-2/+2
* Synch up with the other architectures:John Baldwin2001-02-221-39/+18
* Use the MI fork_return() fork trampoline callout function for childJohn Baldwin2001-02-221-1/+1
* - Don't dink with sched_lock in cpu_switch() since mi_switch() does thisJohn Baldwin2001-02-221-23/+14
* - Axe the now unused ASS_* assertions for interrupt status.John Baldwin2001-02-221-10/+1
* Add a inline function to read the psr.John Baldwin2001-02-221-0/+11
* Add a mtx_intr_enable() macro.John Baldwin2001-02-221-0/+1
* Axe the astpending per-cpu variable.John Baldwin2001-02-223-3/+0
* Add TRAPF_PC() and TRAPF_USERMODE() macros and redefine CLKF_PC() andJohn Baldwin2001-02-221-3/+6
* Catch up to new MI astpending and need_resched handling.John Baldwin2001-02-223-26/+1