aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64
Commit message (Expand)AuthorAgeFilesLines
* Correct #includes to work with fixed sys/mount.h.Greg Lehey2001-04-232-0/+4
* Make the ap_boot_mtx mutex static.John Baldwin2001-04-203-3/+3
* Split up the db_printf's for 'show pcpu' so that we only output at most oneJohn Baldwin2001-04-201-2/+4
* Back out 1.103. It wasn't approved by the owner of the file andWarner Losh2001-04-181-45/+45
* Blow away the panic mutex in favor of using a single atomic_cmpset() on aJohn Baldwin2001-04-173-12/+0
* Turn on kernel debugging support (DDB, INVARIANTS, INVARIANT_SUPPORT, WITNESS)David E. O'Brien2001-04-151-1/+7
* People are still having problems with i586_* on UP machines and SMPJohn Baldwin2001-04-132-2/+2
* Rename the IPI API from smp_ipi_* to ipi_* since the smp_ prefix is justJohn Baldwin2001-04-114-43/+43
* Remove constants defining the bitmasks of the old giant kernel lock.John Baldwin2001-04-101-5/+0
* Remove the old APIC I/O higher level IPI API in favor of the newer MIJohn Baldwin2001-04-101-1/+1
* Remove the BETTER_CLOCK #ifdef's. The code is on by default and is hereJohn Baldwin2001-04-106-53/+12
* Add an MI API for sending IPI's. I used the same API present on the alphaJohn Baldwin2001-04-103-36/+165
* - One can now specify the decimal pid of a process to trace as a parameter.John Baldwin2001-04-091-24/+72
* Add a new ddb command 'show pcpu' which lists some of the per-cpu data.John Baldwin2001-04-061-1/+45
* Axe the per-cpu variable witness_spin_check as it was replaced by theJohn Baldwin2001-04-062-3/+0
* De __P() while I'm here. Done as a separate commit since it is justWarner Losh2001-04-031-45/+45
* Make this file C++ safe. It defines many useful functions (inb, outb)Warner Losh2001-04-031-0/+4
* Convert the allproc and proctree locks from lockmgr locks to sx locks.John Baldwin2001-03-281-3/+5
* Catch up to header include changes:John Baldwin2001-03-282-6/+2
* Rework the witness code to work with sx locks as well as mutexes.John Baldwin2001-03-285-1/+6
* Switch from save/disable/restore_intr() to critical_enter/exit().John Baldwin2001-03-284-42/+35
* 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-5/+5
* - Add the new critical_t type used to save state inside of criticalJohn Baldwin2001-03-281-15/+18
* Send the remains (such as I have located) of "block major numbers" toPoul-Henning Kamp2001-03-261-1/+0
* Fix a problem where we were switching npxproc from underneath processesDavid E. O'Brien2001-03-242-0/+92
* Export intrnames and intrcnt as sysctls (hw.nintr, hw.intrnames andThomas Moestl2001-03-236-9/+11
* Show the bzero() bandwidth in kBps instead of Bps; use u_int32_t insteadDag-Erling Smørgrav2001-03-192-6/+6
* Remove the now defunct ATA_ENABLE* optionsSøren Schmidt2001-03-161-1/+0
* Kill the 4MB kernel limit dead. [I hope :-)].Peter Wemm2001-03-156-13/+32
* Move the fxp driver so it is under the miibus section.Jonathan Lemon2001-03-121-1/+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-6/+14
* Spelling and capitalization fixes.Gregory Sutter2001-03-071-7/+7
* - Release Giant a bit earlier on syscall exit.John Baldwin2001-03-071-20/+14
* Grab the process lock while calling psignal and before calling psignal.John Baldwin2001-03-073-2/+10
* Use the proc lock to protect p_pptr when waking up our parent in cpu_exit()John Baldwin2001-03-071-1/+2
* Back out the pmap_map() change for now, it isn't completely stable on theJohn Baldwin2001-03-071-14/+6
* - Rework pmap_map() to take advantage of direct-mapped segments onJohn Baldwin2001-03-061-6/+14
* Don't enable interrupts before calling sched_ithd for threaded interrupts.John Baldwin2001-03-054-4/+0
* Add support for Dlink DL10022 to the ed driver. This is a mii partWarner Losh2001-03-031-0/+1
* version 1.7 made some changes to correct problems identifed by compilingMatthew N. Dodd2001-03-023-3/+0
* Make the kernel actually compile and link under a.out, usingPeter Wemm2001-02-252-0/+12
* Always use the ELF naming after the demise of asnames.h.Peter Wemm2001-02-251-5/+0
* Remove the leading underscore from all symbols defined in x86 asmJake Burkholder2001-02-2519-522/+521
* Drop the 'count' from the aha device specsPeter Wemm2001-02-251-1/+1
* - Rename the lcall system call handler from Xsyscall to Xlcall_syscallJake Burkholder2001-02-255-53/+25
* Activate USER_LDT by default. The new thread libraries are going toPeter Wemm2001-02-2313-55/+6
* The p_md.md_regs member of proc is used in signal handling to referenceJohn Baldwin2001-02-221-0/+1
* - Change ast() to take a pointer to a trapframe like other architectures.John Baldwin2001-02-221-7/+7