aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64
Commit message (Expand)AuthorAgeFilesLines
* amd64/NOTES: use a greater number in KSTACK_PAGES exampleAndriy Gapon2011-03-111-1/+1
* Mostly revert r219468, as I had misremembered the C standard regardingMatthew D Fleming2011-03-111-1/+1
* Add a tunable "machdep.disable_tsc" to turn off TSC. Specifically, it turnsJung-uk Kim2011-03-111-10/+27
* Use MAXPATHLEN rather than the size of an extern array when copying theMatthew D Fleming2011-03-101-1/+1
* Deprecate rarely used tsc_is_broken. Instead, we zero out tsc_freq becauseJung-uk Kim2011-03-103-6/+7
* Add a small change to the comment in the GENRIC config files that include udbpJulian Elischer2011-03-091-1/+1
* Extend struct sysvec with new method sv_schedtail, which is used for anDmitry Chagin2011-03-082-4/+2
* Remove dead code.Dmitry Chagin2011-03-071-2/+0
* Make a change to the implementation of the direct map to improve performanceAlan Cox2011-03-021-28/+27
* Continue to introduce Capsicum capability mode:Robert Watson2011-03-011-0/+29
* Fix typos - remove duplicate "the".Rebecca Cran2011-02-211-1/+1
* Remove pmap fields that are either unused or not fully implemented.Alan Cox2011-02-171-2/+0
* To avoid excessive code duplication create wrapper for fill regsDmitry Chagin2011-02-163-32/+9
* For realtime signals fill the sigval value.Dmitry Chagin2011-02-151-0/+1
* Sort include files in the alphabetical order.Dmitry Chagin2011-02-131-1/+1
* Move linux_clone(), linux_fork(), linux_vfork() to a MI path.Dmitry Chagin2011-02-122-242/+1
* In preparation for moving linux_clone() to a MI pathDmitry Chagin2011-02-122-1/+12
* In preparation for moving linux_clone () to a MI pathDmitry Chagin2011-02-121-40/+46
* Regen for r218610.Dmitry Chagin2011-02-123-4/+4
* The fourth argument of linux_clone is a pointer to the TLS. Change clone sysc...Dmitry Chagin2011-02-121-2/+1
* Clear the padding when returning context to the usermode, forKonstantin Belousov2011-02-052-0/+16
* Put the general logic for being a CPU hog into a new functionMatthew D Fleming2011-02-021-2/+1
* Regen for r218101.Dmitry Chagin2011-01-301-3/+3
* Change linux futex syscall definition to match actual linux one.Dmitry Chagin2011-01-301-2/+2
* The kern_wait() code already removes the SIGCHLD signal for the waitedDmitry Chagin2011-01-301-7/+0
* My style(9) bug.Dmitry Chagin2011-01-291-1/+3
* Implement a variation of the linux_common_wait() which shouldDmitry Chagin2011-01-281-0/+43
* To avoid excessive code duplication move struct rusage translationDmitry Chagin2011-01-281-18/+23
* linux_sigreturn() loads the struct trapframe from l_sigcontextKonstantin Belousov2011-01-271-22/+22
* Add macro to test the sv_flags of any process. Change some places to testDmitry Chagin2011-01-262-3/+3
* Set td_kstack_pages for thread0. This was already being done for mostMatthew D Fleming2011-01-261-6/+8
* Make MSGBUF_SIZE kernel option a loader tunable kern.msgbufsize.Sergey Kandaurov2011-01-211-4/+3
* Use CTLFLAG_RDTUN for read-only sysctl that exports tunable.Konstantin Belousov2011-01-191-2/+2
* Make the length of the LDT a loader tunable, machdep.max_ldt_segment,Konstantin Belousov2011-01-181-2/+18
* Use malloc(9) instead of kmem_alloc(9) for temporal copy of theKonstantin Belousov2011-01-181-9/+3
* - Remove some always-true checks (checking for unsigned < 0).John Baldwin2011-01-181-4/+4
* Add reader/writer lock around mem_range_attr_get() and mem_range_attr_set().Jung-uk Kim2011-01-173-11/+6
* Avoid preemption while manipulating CRs and MTRRs.Jung-uk Kim2011-01-171-0/+4
* Remove redundant, bogus, and even harmful uses of setting TS bit in CR0.Jung-uk Kim2011-01-142-2/+1
* Fix up a few more sysctl(9) mis-typing found in various LINT builds.Matthew D Fleming2011-01-131-9/+9
* If an interrupt on an I/O APIC is moved to a different CPU after it hasJohn Baldwin2011-01-131-6/+4
* sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly.Matthew D Fleming2011-01-121-1/+1
* Move repeated MAXSLP definition from machine/vmparam.h to sys/vmmeter.h.Konstantin Belousov2011-01-091-11/+0
* Copy powerpc/include/_inttypes.h to x86 and replace i386/amd64/pc98Tijl Coosemans2011-01-081-210/+3
* Create shared (readonly) page. Each ABI may specify the use of page byKonstantin Belousov2011-01-084-6/+10
* On mixed 32/64 bit architectures (mips, powerpc) use __LP64__ rather thanTijl Coosemans2011-01-081-2/+2
* Fix types of some values in machine/_limits.h.Tijl Coosemans2011-01-081-12/+7
* Add AT_STACKPROT elf aux vector. Will be used to inform rtld about theKonstantin Belousov2011-01-071-1/+2
* Increase size of pcb_flags to four bytes.Jung-uk Kim2010-12-223-16/+16
* Improve PCB flags handling and make it more robust. Add two new functionsJung-uk Kim2010-12-2212-100/+152