kernel - All lwkt thread now start out mpsafe part 1/2
[dragonfly.git] / sys / kern / lwkt_thread.c
2010-08-29 Matthew Dillonkernel - All lwkt thread now start out mpsafe part 1/2
2010-08-28 Matthew Dillonkernel - Major MPSAFE Infrastructure 2
2010-08-27 Matthew Dillonkernel - Major MPSAFE Infrastructure
2010-08-25 Alex Hornungcrit_exit - Correct panic conditions
2010-08-24 Matthew Dillonkernel - Adjustments to fix UP kernel build
2010-08-24 Matthew Dillonkernel - Add additional fields to kinfo_cputime
2010-08-24 Matthew Dillonkernel - rewrite the LWKT scheduler's priority mechanism
2010-08-10 Venkatesh SrinivasDocument sysctls vm.fast_fault, vm.dreadful_invltlb...
2010-06-09 Matthew Dillonkernel - MPSAFE work - Add cpu_pause() in scheduler...
2010-06-06 Matthew Dillonkernel - lwkt_token revamp
2010-05-26 Aggelos EconomopoulosStart using our hash tables for thread switch/lifetime...
2010-04-19 Alex Hornungdsched - Periph.: call dsched_exit on thread exit
2010-04-15 Alex Hornungprint_backtrace - Take parameter count
2010-04-15 Alex Hornungdsched - Implement priorities and other improvements
2010-04-15 Alex Hornungdsched - Tie the dsched framework into the system
2010-02-08 Aggelos EconomopoulosBring in a simple event tracing library and POC utility
2009-12-20 Matthew Dillonkernel - Move mplock to machine-independent C
2009-12-16 Sascha WildnerFix some warnings that creep up when compiling without...
2009-11-07 Simon Schubertrename amd64 architecture to x86_64
2009-11-07 Jordan GordeevRevert "rename amd64 architecture to x86_64"
2009-11-05 Simon Schubertrename amd64 architecture to x86_64
2009-10-02 Matthew Dillonlwkt - Add lwkt_setpri_initial()
2009-09-19 Sascha WildnerRestrict visibility of lwkt_schedule_remote() to SMP.
2009-09-11 Matthew DillonKERNEL - Implement a poor man's ioscheduler using sys...
2009-09-05 Aggelos Economopoulosadd KTR_CTXSW option to log context switches
2009-08-16 Matthew DillonKernel - Instrumentation for experimentation, interrupt...
2009-07-16 Matthew Dillontsleep_interlock - Fix bug with TDF_TSLEEPQ
2009-07-15 Matthew DillonWhitespace cleanup
2009-07-15 Matthew DillonLWKT - Make sure an exiting thread is not sitting on...
2009-07-15 Matthew DillonLWKT - Rename lwkt_yield_quick() to a more appropriate...
2009-07-15 Matthew DillonMPSAFE - tsleep_interlock, BUF/BIO, cluster, swap_pager.
2009-06-20 Matthew DillonHAMMER (and kernel) - Fix cpu-bound kernel thread issue.
2009-03-27 Matthew DillonMake the jg_tos_ok debug check amd64-specific only...
2009-02-05 Aggelos Economopouloskill db_print_backtrace()
2008-12-27 Jordan GordeevBring in the remainder of the post-SoC amd64 enchilada.
2008-12-21 Sascha WildnerSilence UP warning.
2008-12-18 Matthew DillonThis is a MAJOR rewrite of usched_bsd4 and related...
2008-10-26 Sepherosa Ziehau- Return the real cluster limit used by the objcache
2008-09-11 YONETANI Tomokazu#ifdef DDB without including "opt_ddb.h"
2008-09-09 Matthew DillonAdd a MSGF_NORESCHED feature for lwkt thread-based...
2008-09-09 Matthew DillonFix issues with the scheduler that were causing unneces...
2008-06-16 Matthew DillonWe must process incoming IPI messages when spinning...
2008-06-02 Matthew DillonEven using the objcache we need a one-per-cpu free...
2008-05-26 Nicolas TheryAllocate lwkt threads from objcache instead of custom...
2008-05-18 Nicolas TheryRemove obsolete userland lwkt.
2008-03-01 Matthew DillonClean up the token code and implement lwkt_token_is_sta...
2008-02-17 Nuno AntunesFix typo in comment.
2007-09-27 Matthew DillonInterrupt thread preemption was switching in threads...
2007-07-02 Matthew DillonImplement an architecture function cpu_mplock_contested...
2007-05-24 Matthew DillonLWKT message ports contain a number of function pointer...
2007-05-01 Matthew DillonImplement kern.do_async_attach. default disabled. ...
2007-02-18 Simon Schubert1:1 Userland threading stage 2.16/4:
2006-12-28 Matthew DillonMake kernel_map, buffer_map, clean_map, exec_map, and...
2006-12-23 Sascha WildnerRename printf -> kprintf in sys/ and add some defines...
2006-12-18 Matthew DillonRename kvprintf -> kvcprintf (call-back version)
2006-11-07 Matthew DillonRemove system dependancies on <machine/ipl.h>. Only...
2006-06-04 Matthew DillonRemove LWKT reader-writer locks (kern/lwkt_rwlock.c...
2006-06-01 Matthew DillonSince we can only hold one shared spinlock at a time...
2006-06-01 Matthew Dillongd_tdallq is not protected by the BGL any more, it...
2006-05-29 Matthew DillonAdd two KTR (kernel trace) options: KTR_GIANT_CONTENTIO...
2006-05-29 Matthew DillonFurther isolate the user process scheduler data by...
2006-05-21 Matthew DillonImplement a much faster spinlock.
2006-05-19 Matthew DillonRecent lwkt_token work broke UP builds. Fix the token...
2006-05-18 Matthew DillonMake spinlocks panic-friendly.
2006-05-18 Matthew DillonReplace the LWKT token code's passive management of...
2006-03-01 Matthew DillonA thread may be freed from a different cpu then it...
2006-01-31 Matthew DillonBring in the parallel route table code and clean up...
2005-12-10 Matthew DillonFix another interesting bug. td_threadq is shared...
2005-12-02 Matthew DillonFix a process exit/wait race. The wait*() code was...
2005-11-22 Matthew DillonConsolidate the initialization of td_mpcount into lwkt_...
2005-11-21 Matthew DillonAdd a thread flag, TDF_MPSAFE, which is used during...
2005-11-14 Matthew DillonMake tsleep/wakeup() MP SAFE for kernel threads and...
2005-11-08 Matthew DillonTurn around the spinlock code to reduce the chance...
2005-10-25 Matthew DillonRemove the dummy IPI messaging routines for UP builds...
2005-10-11 Simon Schubert1:1 Userland threading stage 2.8/4:
2005-07-21 Matthew DillonAdditional work to try to make panics operate better...
2005-07-21 Matthew DillonOnly compile in lwkt_smp_stopped() on SMP builds.
2005-07-20 Matthew DillonWhen a cpu is stopped due to a panic or the debugger...
2005-07-20 Matthew DillonLimit switch-from-interrupt warnings to once per thread...
2005-07-19 Matthew DillonIf a fatal kernel trap occurs from an IPI or FAST inter...
2005-07-19 Matthew DillonFix a MP lock race. The MP locking state can change...
2005-07-07 Hiten PandyaAdd counters for recording Token/MPlock contention...
2005-06-20 Matthew DillonFix a serious SMP bug. The RWLOCK support used by...
2005-06-03 Matthew DillonReplace cpu_mb1() and cpu_mb2() with cpu_mfence(),...
2005-06-03 Matthew DillonAugment the panic when attempting to switch from a...
2005-04-22 Joerg SonnenbergerDon't call cpu_mb1 after lwkt_setcpu_self, but call...
2005-04-13 Matthew DillonOnly bump the switch_count counter when lwkt_switch...
2004-10-13 Eirik NygaardAdd two more header in the !_KERNEL case so libcaps...
2004-09-21 Joerg SonnenbergerUse libcaps_free_stack instead of kmem_free for userland
2004-07-29 Matthew DillonMove kthread_create() from lwkt_thread.c to kern_kthrea...
2004-07-29 Matthew DillonAdd a stack-size argument to the LWKT threading code...
2004-07-24 Matthew DillonUpdate the userland scheduler. Fix scheduler interacti...
2004-07-16 Matthew DillonUpdate all my personal copyrights to the Dragonfly...
2004-07-04 Eirik NygaardRearrange the machine/cpufunc.h header and add it where...
2004-06-26 Matthew DillonWhen a kernel-created thread exits, properly remove...
2004-06-03 Joerg SonnenbergerHide unused function under #ifdef SMP
2004-05-28 Matthew DillonAdd lwkt_setcpu_self(), a function which migrates the...
2004-05-10 Hiten PandyaRemove newline from panic(9) message, it is redundant.
2004-04-10 Matthew DillonDo some minor critical path performance improvements...
2004-03-30 Matthew DillonSecond major scheduler patch. This corrects interactiv...
next