Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-06 | move the last direct users of mpi_{get,put}_ccb over to using the scsi | David Gwynne | |
ioh wrappers. | |||
2010-07-06 | spacing | Theo de Raadt | |
2010-07-06 | get rid of ridiculous differences between the i386 and amd64 versions | Theo de Raadt | |
2010-07-06 | Kill an unused variable | Philip Guenthe | |
ok deraadt@ | |||
2010-07-06 | Fix monumental cock-up with SCSI_SILENT and SCSI_IGNORE_ILLEGAL_REQUEST | Kenneth R Westerback | |
flags which I perpetrated when I paid insufficient attention to dlg@'s original diff. Belatedly tested by marco@ and myself. Bad marco@. Bad krw@. ok marco@ | |||
2010-07-05 | i forgot to remove various compat references from here. spotted by deraadt | Ted Unangst | |
2010-07-05 | bsdos was removed | Theo de Raadt | |
2010-07-05 | Rework somewhat for safety, so that we only interpret the values of | Jonathan Gray | |
the PERF_STATUS MSR on earlier processors when we can't find the values via acpi and have a bus clock value to use. And let processors we don't set a bus clock on (ie nehalem) use speedstep again. Expanded/changed version of a diff from gwk who isn't around right now. | |||
2010-07-05 | remove compat_bsdos support | Ted Unangst | |
2010-07-05 | remove a debugging panic, as pointed out by mike; | Thordur I. Bjornsson | |
also, remove the flag variable in the setup routine, as we'll always register with a flag value of 0. | |||
2010-07-05 | cope with the recent changes to m_copyback(); | Thordur I. Bjornsson | |
2010-07-05 | If we find something is not aligned according to ALIGNED_POINTER(), we | Theo de Raadt | |
cannot then re-align it using ALIGN(). That is not portable since we have architectures where the modulo are quite different. define an ALIGN_POINTER() macro in place, and use it in one spot. This caused a NFS crash on sparc (which borrows mbufs and chains them itself in insane ways). I heard claudio and beck trying to diagnose it from over the room when suddenly I knew exactly what it was. blambert spent a few hours on it making sure that I wasn't insane. | |||
2010-07-05 | timeout_add -> timeout_add_sec | Bret Lambert | |
ok art@ | |||
2010-07-05 | timeout_add -> timeout_add_sec | Bret Lambert | |
ok drahn@ | |||
2010-07-05 | Reset register SCI_EN on resume. The ACPI spec clearly states we don't have | Mike Larkin | |
to do this, but many machines don't, or forget to, which leads to all sorts of problems on resume (broken battery stats, overheating, failure to resume more than once, etc). tested by many, ok marco@, deraadt@ | |||
2010-07-04 | restrict srmmu handling to just sun4m | Theo de Raadt | |
2010-07-04 | Remove an obsolete (was in rev 1.1) and unclear comment | Philip Guenthe | |
2010-07-03 | Be sure to initialize b_bq member of struct buf not allocated through the | Miod Vallat | |
regular buf routines; and now we can swap again. | |||
2010-07-03 | Make the kernel responsible for saving the FPU state before running | Mark Kettenis | |
signal handlers. Breaks ABI for applications that copy around struct sigcontext to implement cooperative threading. Other applications shoouldn't notice the difference. ok guenther@, deraadt@ | |||
2010-07-03 | Fix the naming of interfaces and variables for rdomains and rtables | Philip Guenthe | |
and make it possible to bind sockets (including listening sockets!) to rtables and not just rdomains. This changes the name of the system calls, socket option, and ioctl. After building with this you should remove the files /usr/share/man/cat2/[gs]etrdomain.0. Since this removes the existing [gs]etrdomain() system calls, the libc major is bumped. Written by claudio@, criticized^Wcritiqued by me | |||
2010-07-03 | No more ss(4) or usscanner(4). Unused, unloved and unmaintained. | Kenneth R Westerback | |
General huzzahs. "go for it" deraadt@ | |||
2010-07-03 | no need for syncdelay to be a time_t, make it it an int. unstatic variables | Thordur I. Bjornsson | |
so I can twiddle them from ddb (not that I will mess with the hashmask, but static burns). ok tedu@ | |||
2010-07-03 | replace 0 with equivalent allocation flag. ok thib | Ted Unangst | |
2010-07-03 | explicitly specify flags to malloc and pool_get instead of relying on 0. | Ted Unangst | |
This is more clear, and as thib pointed out, the default in softraid was wrong. ok thib. | |||
2010-07-03 | de-static ufs_chown and ufs_chmod so they show up in DDB. | Thordur I. Bjornsson | |
2010-07-03 | Get rid of EAGAIN, retry scsi_xs_sync() commands (after a scsi_delay()) | Kenneth R Westerback | |
that get XS_NO_CCB until retry limit exceeded. On to getting rid of XS_NO_CCB. ok matthew@ "so be it" dlg@ | |||
2010-07-03 | Omit some silly USB devices from RAMDISK kernels. | Matthew Dempsky | |
suggestion of more devices and ok tedu@; ok krw@ | |||
2010-07-03 | Stop disk on suspend and start it again upon resume. Gets rid of the loud | Mark Kettenis | |
click upon suspend that my laptop with ahci(4) has. ok dlg@, ok marco@ on an earlier iteration of this diff | |||
2010-07-03 | Intel 3400 Thermal Sensor driver, found on some new Intel machines. | Mike Larkin | |
This is also the same as the Intel Series 5 Thermal Sensor. ok deraadt@, kettenis@ | |||
2010-07-03 | Implement translation of the SCSI START STOP UNIT command. | Mark Kettenis | |
ok dlg@, marco@ | |||
2010-07-03 | Turns out the | Mark Kettenis | |
/* XXX maybe more than the default wait is appropriate here? */ in ahci_port_portreset() is true, at least when we come out of suspend. Allow a timeout of 3s here while keeping all the other delays at 1s. ok dlg@, kettenis@ | |||
2010-07-03 | s/$Id$/$OpenBSD$/ | YASUOKA Masahiko | |
2010-07-03 | Last bit of thib@ locking diff from long ago. Put proper locking | Kenneth R Westerback | |
around vinvalbuf(). vrele() -> vput() after VOP_CLOSE(). ok tedu@ | |||
2010-07-02 | Always try READ CAPACITY(16) on SCSI-3 devices. If it fails, return | Kenneth R Westerback | |
the READ CAPACITY(10) values already retrieved. Creates the possibility to look at other interesting READ CAPACITY(16) data for future consideration. ok matthew@ marco@ deraadt@ | |||
2010-07-02 | Pretend that softintr_establish() actually works. | Joel Sing | |
ok kettenis@ | |||
2010-07-02 | no need to call uvm_km_free_wakup for the kernel map, uvm_km_free is | Thordur I. Bjornsson | |
enough. ok tedu@, art@ | |||
2010-07-02 | When we steal memory, return the VA for the memory that we have stolen and | Joel Sing | |
not the memory prior to it. Lots of help from oga@ ok kettenis@ | |||
2010-07-02 | Don't bother trying to handle a uvm_pglistalloc failure when called with | Thordur I. Bjornsson | |
UVM_PLA_WAITOK as it will not fail; Rather assert that it didn't fail. ok tedu@, oga@ | |||
2010-07-02 | Yet another workaround for PCH devices adapted from Intel code in | Jonathan Gray | |
FreeBSD by Mike Belopuhov. Makes the 82578 in dlg's dell desktop work. tested on 82577 by mlarkin@, ok claudio@ | |||
2010-07-02 | Provide an iopool in arc(4). | Michael Knudsen | |
ok dlg matthew | |||
2010-07-02 | Protect the ccb free list with a mutex rather than splbio(). | Michael Knudsen | |
Requested by dlg when reviewing a different diff. ok dlg | |||
2010-07-02 | nuke unused global and a comment. | Thordur I. Bjornsson | |
ok tedu@, oga@ | |||
2010-07-02 | ss(4) does not need the tape attribute; only tape devices do (and only on vax, | Miod Vallat | |
really). | |||
2010-07-02 | delete sunos files | Ted Unangst | |
2010-07-02 | remove sunos compat files | Ted Unangst | |
2010-07-02 | remove support for compat_sunos (and m68k4k). ok deraadt guenther | Ted Unangst | |
2010-07-02 | Add missing pmap_update. pointed out by matthew@ | Artur Grabowski | |
2010-07-02 | Since fill_eproc() is no longer called from coredump(), it can be dropped | Philip Guenthe | |
from small kernels "yes" deraadt@ | |||
2010-07-02 | One transition was wrong: Suspending without a card, and then resuming with | Theo de Raadt | |
was doing an attach, detach, and re-attach. Repair the state transitions. | |||
2010-07-02 | Move common code for waking up writers on a tty into a function. | Nicholas Marriott | |
ok deraadt matthew millert |