Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-29 | Change st(4) to use the FIFO buf sorting discipline rather than the | Matthew Dempsky | |
default disk-sorting one. ok krw@ | |||
2010-06-29 | Ansify function declarations. | Joel Sing | |
ok kettenis@ | |||
2010-06-29 | makefstype was only used in ported from freebsd filesystems. fix them | Ted Unangst | |
and remove the function. ok thib | |||
2010-06-29 | eliminate some very redundant SCARG usage. ok art | Ted Unangst | |
2010-06-29 | 60 is a more reasonable guess for number of minutes in an hour than 100. | Ted Unangst | |
spotted by TeXitoi. ok deraadt | |||
2010-06-29 | Factor out code used to save and flushe process FPU context. | Joel Sing | |
ok kettenis@ | |||
2010-06-29 | correct some minor style violations | Ted Unangst | |
2010-06-29 | less SCARG, more pretty. ok guenther | Ted Unangst | |
2010-06-29 | Store pointer to process FPU state in struct cpu_info. | Joel Sing | |
ok kettenis@ | |||
2010-06-29 | some late breaking style comments from guenther | Ted Unangst | |
2010-06-29 | regen | Ted Unangst | |
2010-06-29 | Eliminate RTHREADS kernel option in favor of a sysctl. The actual status | Ted Unangst | |
(not done) hasn't changed, but now it's less work to test things. ok art deraadt | |||
2010-06-28 | Clean up iterface stats handling: | Ryan Thomas McBride | |
- 'make -Fi' reset ALL the interface statistics can be restricted with -i ifname - 'make -Fa -i ifname' fail (it's meaningless) - get rid of a silly little struct that's only used for one thing ok henning | |||
2010-06-28 | <sys/time.b> is for ftime(), which is just in libcompat and not the kernel, | Philip Guenthe | |
so stop including it in kernel .c files. "sure" deraadt@ | |||
2010-06-28 | Ah, this will not help the netboot case | Theo de Raadt | |
2010-06-28 | clock_gettime(CLOCK_PROF) didn't account for the time between the last | Artur Grabowski | |
context switch and the call to clock_gettime. oga@ ok | |||
2010-06-28 | Initial 82578 support from Mike Belopuhov. | Jonathan Gray | |
ok claudio@ | |||
2010-06-28 | Add the rtable id as an argument to rn_walktree(). Functions like | Claudio Jeker | |
rt_if_remove_rtdelete() need to know the table id to be able to correctly remove nodes. Problem found by Andrea Parazzini and analyzed by Martin Pelikán. OK henning@ | |||
2010-06-28 | Use an SLIST instead of a TAILQ for the ccb free list. Order doesn't | Michael Knudsen | |
matter, an SLIST is smaller, and the first element is more likely to be in cache. Previously we took from the head and returned to the tail, which meant that we were using the ccb that was the least recently used one which also means it has the smallest chance of being in cache. ok deraadt | |||
2010-06-28 | Remove all adapter-specific 'struct scsi_device's. They are never used. First | Kenneth R Westerback | |
step in elminating 'struct scsi_device' entirely. Spotted and initial diff from matthew@. ok matthew@ dlg@ deraadt@ marco@ miod@ | |||
2010-06-28 | fix typo; from Brad | Christian Weisgerber | |
2010-06-28 | Allow neighbor discovery for prefixes on interfaces without matching | Alexander Bluhm | |
address. This is necessary when ospf6d has learned a prefix for a directly connected link which is not configured localy. Now neighbor discovery is solely based on the cloning route and not on the address neigborship anymore. ok claudio@ | |||
2010-06-28 | Add initial support for RTL8168E, brokenness reported by Joe Gidi. | Stuart Henderson | |
With help from Brad, ok jsg@, closes system/6402 | |||
2010-06-28 | Change MAXDSIZ and MAXSSIZ to more reasonable values for a 64-bit architecture. | Mark Kettenis | |
ok deraadt@, miod@ | |||
2010-06-28 | Allow tty drivers to request larger buffers at attach time using a | Theo de Raadt | |
max-baud-rate hint. Adjust TTYHOG (the nearly full logic) to this new situation. The larger buffers are required by the very high speed KDDI devices in Japan (CF com, or USB ucom) so those are the only two drivers which currently ask for a larger buffer size. ok yasuoka miod | |||
2010-06-28 | remove a lonely remnant from some debug code that snuck in. | David Gwynne | |
2010-06-28 | Move disk_attach() to the end of the attach functions, at which point the | Joel Sing | |
disk is now ready to handle I/O. ok krw@ dlg@ | |||
2010-06-28 | KNF | Jordan Hargrave | |
2010-06-28 | Add definitions for Intel/AMD IOMMU ACPI tables | Jordan Hargrave | |
2010-06-28 | add back the initialisation of a loop condition that | Jonathan Gray | |
was mistakenly removed in 1.208 ok dlg@ marco@ | |||
2010-06-28 | implement iopools in osiop to get rid of another use of XS_NO_CCB. | David Gwynne | |
original diff corrected by miod@ tested by and ok miod@ | |||
2010-06-28 | Use a more moderate fifo trigger level (4) for moderately quick | Chris Kuethe | |
(sub-38400) port speeds. Inspired by netbsd. ok fgsch krw deraadt miod | |||
2010-06-28 | Move uvm_km_pages struct declaration and watermark bounds to uvm_km.h, so | Miod Vallat | |
that md code can peek at it, and update m68k !__HAVE_PMAP_DIRECT setup code to the recent uvm_km changes. ok thib@ | |||
2010-06-27 | garbage collect the debugging goo | Thordur I. Bjornsson | |
2010-06-27 | More include necessary after <sys/user.h> inclusion removal | Miod Vallat | |
2010-06-27 | fix a comment and add a new one to make clear what the mbuf ptr save dance | Henning Brauer | |
is for, it is not very obvious... with ryan and jsing | |||
2010-06-27 | don't probe "volume knobs" on resume. probably not needed and | Jacob Meuser | |
is currently breaking resume. ok pirofti | |||
2010-06-27 | vscsi(4) doesn't use vscsi_ioc_t2i's senselen field anymore, so | Matthew Dempsky | |
garbage collect it. ok dlg@, krw@, claudio@ | |||
2010-06-27 | Change ACPI namespace to use SIMPLEQ macros | Jordan Hargrave | |
ok mlarkin | |||
2010-06-27 | Disable uguru(4). Its probe touches an address used by something else on the | Mark Kettenis | |
Dell r815, which causes all sorts of nasty effects like instant reboots, NMIs and PCI BARs being set to zero. ok dlg@ | |||
2010-06-27 | Kill another #ifdef UBC chunk that was annoying me while doing something | Owain Ainsworth | |
else. ok thib@ | |||
2010-06-27 | dont have duplicate xxx @ scsibus lines (even if commented). | Dale Rahn | |
2010-06-27 | More PCH/82577 bits from FreeBSD, this does not include | Jonathan Gray | |
all the workarounds but is enough to make things run at faster than 10 Mbit speeds, though these aren't always reflecting in ifmedia properly just yet. ok claudio@ | |||
2010-06-27 | Add _acpi_matchhids routine, precursor to pci device match | Jordan Hargrave | |
2010-06-27 | Mark the PXE boot device as "netboot" even if we do not contain | Theo de Raadt | |
nfs client support (yes, it becomes the root device too, but for ramdisks this is OK because they are not a swap generic configuration) Discussion with reyk and halex | |||
2010-06-27 | doh! Use pmap_kenter/pmap_kremove in the backend page allocator to prevent | Thordur I. Bjornsson | |
recursion in pmap_enter as seen on zaurus. ok art@ also, release a the uvm_km_page.mtx before calling uvm_km_kmemalloc as we can sleep there. ok oga@ | |||
2010-06-27 | check if the jacks that will mute the speaker can generate unsolicited | Jacob Meuser | |
events, instead of checking if the speaker can generate unsolicited events problem report and testing by Brad, thanks | |||
2010-06-27 | Clear ACPI fixed event status on resume (power buttons/etc) so that some | Mike Larkin | |
machines don't immediately resume after suspending to S3. Tested by kettenis@ and I on 5 or 6 machines, deraadt@ "yeah, looks good" | |||
2010-06-27 | If you include <uvm/uvm.h>, you do not need to include any other <uvm/uvm_foo.h> | Miod Vallat | |
2010-06-27 | one more include shuffle | Miod Vallat | |