Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-02 | Move common code for waking up writers on a tty into a function. | Nicholas Marriott | |
ok deraadt matthew millert | |||
2010-07-02 | remove unused pciaddr_search function. | Jonathan Gray | |
ok kettenis@ | |||
2010-07-02 | usefull -> useful; | Jason McIntyre | |
2010-07-02 | Add a comment to explain why the sync is necessary in the while loop. | Joel Sing | |
2010-07-02 | Apparently volatile does not mean what it is supposed to mean... avoid a | Joel Sing | |
deadlock by adding a sync instruction to the loop. ok kettenis@ | |||
2010-07-02 | gremlin crept in by accident | Miod Vallat | |
2010-07-02 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok miod@ some time ago | |||
2010-07-02 | m_copyback can fail to allocate memory, but is a void fucntion so gymnastics | Bret Lambert | |
are required to detect that. Change the function to take a wait argument (used in nfs server, but M_NOWAIT everywhere else for now) and to return an error ok claudio@ henning@ krw@ | |||
2010-07-02 | initialize values to something sensible. | Ted Unangst | |
ok deraadt pirofti | |||
2010-07-02 | Add ability to limit memory presented to kernel with | Tobias Weingartner | |
'machine memory =128M' style commands. Thanks to phessler for finding a small man page niggle. Bumped version strings to a nice round fraction, and make them the same across the board. Easier to identify boot binary versions that way. ok thib@, tedu@, phessler@ | |||
2010-07-02 | Implement FPU shootdowns for hppa multiprocessor kernels. There are still | Joel Sing | |
some subtle bugs however these can be fixed in tree. ok kettenis@ | |||
2010-07-01 | When a process' FPU context is evicted or restored record which CPU the | Joel Sing | |
context is on so that we can handle FPU shootdowns. ok kettenis@ | |||
2010-07-01 | Make our trapframe squeeky clean in setregs(). Avoid leaking registers into | Mark Kettenis | |
the new process image. ok deraadt@, guenther@ | |||
2010-07-01 | Add more support bits for ARMv7, including frame for VIPT (pmap_prefer). | Dale Rahn | |
2010-07-01 | CPU id is not enough to tell 3430 from 3530 so change the printed name. | Dale Rahn | |
2010-07-01 | Synch instead of flush FPU state on APs before suspending. | Mike Larkin | |
tested by kettenis@ on i386 and myself on amd64 ok kettenis@ | |||
2010-07-01 | Ensure that IPIs have priority and are run first to avoid deadlock. This | Joel Sing | |
is a rather ugly hack and needs to be revisited at a later date. ok kettenis@ | |||
2010-07-01 | Typo in comment. | Mike Larkin | |
ok oga@ | |||
2010-07-01 | I accidentally whacked something important. Sorry. | Ted Unangst | |
2010-07-01 | another day, another compat gets removed. today is ibcs2's turn | Ted Unangst | |
2010-07-01 | - don't do curupte checks if the current miss address is user space | Jasper Lievisse Adriaanse | |
from netbsd ok miod@ | |||
2010-07-01 | Backout recent AML changes, breaks on R210 and others | Jordan Hargrave | |
2010-07-01 | Create a struct to store FP state and include a pointer to the CPU that | Joel Sing | |
currently holds the FPU context for this process. This will be soon used to implement FPU shootdowns on multiprocessor kernels. ok kettenis@ | |||
2010-07-01 | Provide uvm constraints. | Joel Sing | |
ok kettenis@ thib@ | |||
2010-07-01 | Provide safepri. | Joel Sing | |
2010-07-01 | Fix incorrect function prototype. | Joel Sing | |
2010-07-01 | Add missing function prototypes. | Joel Sing | |
2010-07-01 | Provide mtsp() via cpufunc.h. | Joel Sing | |
2010-07-01 | Pull in atomic.h and intr.h. | Joel Sing | |
ok kettenis@ | |||
2010-07-01 | Add missing function prototypes and fix order of includes. | Joel Sing | |
2010-07-01 | Shuffle function prototypes, add missing include and add missing | Joel Sing | |
prototypes. ok kettenis@ | |||
2010-07-01 | Add stubs for soft interrupts. | Joel Sing | |
ok kettenis@ | |||
2010-07-01 | Include atomic.h via lock.h like other architectures do. | Joel Sing | |
ok kettenis@ | |||
2010-07-01 | Partially sync atomic.h with hppa so that we get real atomic ops and some | Joel Sing | |
missing functions. ok kettenis@ | |||
2010-07-01 | mark acpi_savecpu with the gcc returns_twice attribute as suggested | Jonathan Gray | |
by deraadt so the stack will be sane during suspend/resume with gcc4. Noticed on i386 due to the lack of general purpose registers compared to amd64. ok deraadt@ mlarkin@ | |||
2010-07-01 | Change scsibus(4)'s scsi_link array to an SLIST to save memory on | Matthew Dempsky | |
sparsely populated buses. ok dlg@, krw@ | |||
2010-07-01 | Add a look-up table for machines that have special vga cards. This table will | Paul Irofti | |
tell, based on vendor/product/subvendor/subproduct ids, how the video reposting should be done: via the emulator or the bios video call in locore. The default is to do none of those, which is how most machines work. Okay kettenis@, deraadt@. | |||
2010-07-01 | More accurate comment as to what happens with acpi_savecpu | Mike Larkin | |
ok deraadt@ | |||
2010-07-01 | Add things to enable aesni either ifdef'ed or commented out to ease | Thordur I. Bjornsson | |
testing. Note: aesni is not in a usable state yet! OK deraadt@ | |||
2010-06-30 | remove a compat_osf1 file | Ted Unangst | |
2010-06-30 | remove compat_osf1 support from the kernel | Ted Unangst | |
ok deraadt miod | |||
2010-06-30 | Remove the ``never cache virtual addresses in the DVMA range'' in | Miod Vallat | |
pv_changepte4m() since DVMA addresses are never loaded in the SRMMU; this chunk was forgotten in the previous `don't steal DVMA out of kernel_map on 4m' commit. | |||
2010-06-30 | amd64_pa_used is weird. | Owain Ainsworth | |
We check a bunch of things, where most archs are a lot more simple. Also, we get problems sometimes: My x201 can't map the framebuffer BAR from the aperture with the chunk that checks the bios sections, meaning the bios is claiming something about it. Kettenis@ and I are pretty sure that the rest of the checks are more than sufficient, so just nuke that one. for the record, in the same situation i386 just checks again VGA_START, BIOS_END and physmem. ok kettenis@ | |||
2010-06-30 | Make this compile after TTYHOG definition change (but the logic should be fixed | Miod Vallat | |
to not depend on it). | |||
2010-06-30 | Remove #ifdef CRYPTO. config will do this for us. | Thordur I. Bjornsson | |
2010-06-30 | get rid of a few c++ comments and a few spacing nits | Thordur I. Bjornsson | |
2010-06-30 | remove two useless defines. | Thordur I. Bjornsson | |
fixup arguments to the fpu_kernel_enter/exit. from mike | |||
2010-06-30 | change a pair of timeout_add calls to timeout_add_{,m}sec | Bret Lambert | |
ok dlg@ | |||
2010-06-29 | make the xcrypt match the jsg code in openssl | Theo de Raadt | |
2010-06-29 | Add support for mapping ACPI to PCI devices | Jordan Hargrave | |
ok kettenis, deraadt |