aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_shutdown.c
Commit message (Expand)AuthorAgeFilesLines
* Fix alpha build. The alpha has dumpsys implemented.Marcel Moolenaar2002-05-121-1/+1
* Put back dumppcb, but this time we put a comment to tell what it is for.Poul-Henning Kamp2002-04-081-4/+12
* Added the new kernel dumping support for pc98.Yoshihiro Takahashi2002-04-061-1/+1
* Don't compile the dummy dumpsys for ia64.Marcel Moolenaar2002-04-021-1/+1
* Change the suser() API to take advantage of td_ucred as well as do aJohn Baldwin2002-04-011-1/+1
* Extend a hack to also hack around PC98's definition of __i386__Poul-Henning Kamp2002-04-011-1/+1
* Here follows the new kernel dumping infrastructure.Poul-Henning Kamp2002-03-311-173/+30
* Centralize the "bootdev" and "dumpdev" variables. They are still prettyPoul-Henning Kamp2002-03-311-0/+1
* Add needed includes of machine/smp.h, remove nested include in sys/smp.hJake Burkholder2002-03-071-0/+1
* Replace accidentally removed setrunqueue()Julian Elischer2002-02-091-0/+1
* Pre-KSE/M3 commit.Julian Elischer2002-02-071-3/+2
* Allow dump device be configured as early as possible using loader(8) tunable.Maxim Sobolev2002-01-211-0/+11
* Explain that the admin can safely power down the system as well asNik Clayton2002-01-181-1/+2
* Change the preemption code for software interrupt thread schedules andJohn Baldwin2002-01-051-1/+1
* Fix a signed bug in the crashdump code for systems with > 2GB of ram.Paul Saab2001-11-131-2/+2
* Add a sysctl for preventing the sync() in panic() recovery. This canPeter Wemm2001-10-191-0/+6
* decrement the dumping variable after use so we can call it several timesPeter Wemm2001-09-201-4/+6
* KSE Milestone 2Julian Elischer2001-09-121-7/+7
* - Axe holding_giant as it is not used now anyways and was ok'd byJohn Baldwin2001-09-101-35/+4
* Sigh. Dig up text from a signature in a 1994 Usenet post I made and redoPeter Wemm2001-09-051-5/+12
* The !RESTARTABLE_PANICS code has some loose ends.Peter Wemm2001-09-021-0/+8
* Giant Pushdown. Saved the worst P4 tree breakage for last.Matthew Dillon2001-09-011-9/+28
* Add a new kernel option RESTARTABLE_PANICS. If this option is present,John Baldwin2001-08-231-0/+2
* Clear db_active in boot() so that one can call the boot function (as wellJohn Baldwin2001-08-211-0/+8
* Allow one to restart from a panic in DDB by clearing the panicstrJohn Baldwin2001-08-211-6/+18
* Don't dump on the label sector or below. This avoids clobbering theBruce Evans2001-08-151-2/+3
* - Sort includes.John Baldwin2001-06-251-9/+9
* Revert consequences of changes to mount.h, part 2.Greg Lehey2001-04-291-2/+0
* Overhaul of the SMP code. Several portions of the SMP kernel support haveJohn Baldwin2001-04-271-1/+1
* Correct #includes to work with fixed sys/mount.h.Greg Lehey2001-04-231-0/+2
* Blow away the panic mutex in favor of using a single atomic_cmpset() on aJohn Baldwin2001-04-171-1/+9
* Last commit was broken.. It always prints '[CTRL-C to abort]'.Paul Saab2001-03-281-0/+21
* Lock initproc when we send SIGINT to init during shutdown.John Baldwin2001-03-071-0/+2
* RIP <machine/lock.h>.Mark Murray2001-02-111-1/+0
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-3/+3
* Fix typo: seperate -> separate.Jeroen Ruigrok van der Werven2001-02-061-1/+1
* Convert all simplelocks to mutexes and remove the simplelock implementations.Jason Evans2001-01-241-1/+1
* Use PCPU_GET, PCPU_PTR and PCPU_SET to access all per-cpu variablesJake Burkholder2001-01-101-2/+2
* Stick the kthread API in a kthread_* namespace, and the specialized kprocJohn Baldwin2000-12-151-2/+2
* Only print out APIC info on an SMP system during a panic if APIC_IO isJohn Baldwin2000-11-291-0/+2
* Don't release and acquire Giant in mi_switch(). Instead, release andJohn Baldwin2000-11-161-0/+2
* Catch up to moving headers:John Baldwin2000-10-201-1/+1
* Remove unneeded #include <machine/clock.h>Poul-Henning Kamp2000-10-151-1/+0
* savectx() is now used exclusively by the crash dump system. Move thePeter Wemm2000-10-131-3/+0
* Do not allocate a callout for all crashdumps, not just when you panic.Paul Saab2000-10-131-1/+2
* Added used include of <sys/mutex.h> (don't depend on pollution inBruce Evans2000-09-171-0/+1
* Fix some printf format string warnings due to sizeof(int) != sizeof(long) onJohn Baldwin2000-09-111-4/+4
* Allow interrupt threads to run during shutdown. This should fix theJason Evans2000-09-101-2/+15
* Major update to the way synchronization is done in the kernel. HighlightsJason Evans2000-09-071-2/+7
* kern_shutdown.c was more ANSI-C than K&R - remove the remnants of K&RPeter Wemm2000-09-031-21/+12