summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-07-03Rudimentary implementation of user-defined strings;Ingo Schwarze
no time for more refinement right now. In particular, fixes terminfo(3) and mdoc.samples(7). ok kristaps@, who will add the HTML frontend bits
2010-07-03string comparison (noticed by landry)Marc Espie
2010-07-03syncTheo de Raadt
2010-07-03Nuke missed .Xr ss. Pointed out by jmc@.Kenneth R Westerback
2010-07-03put .Os in the right place;Jason McIntyre
2010-07-03+.It Xr itherm 4Jason McIntyre
2010-07-03tweak previous;Jason McIntyre
2010-07-03Make the kernel responsible for saving the FPU state before runningMark 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-03Fix the naming of interfaces and variables for rdomains and rtablesPhilip 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-03Regen.Kenneth R Westerback
2010-07-03Regen.Kenneth R Westerback
2010-07-03No more ss(4) or usscanner(4). Unused, unloved and unmaintained.Kenneth R Westerback
General huzzahs. "go for it" deraadt@
2010-07-03no need for syncdelay to be a time_t, make it it an int. unstatic variablesThordur I. Bjornsson
so I can twiddle them from ddb (not that I will mess with the hashmask, but static burns). ok tedu@
2010-07-03When open() fails, warn using the device name, not the host name.Nicholas Marriott
2010-07-03replace 0 with equivalent allocation flag. ok thibTed Unangst
2010-07-03Changed vinit to clear the values but forgot to move it before they are set byNicholas Marriott
command line parsing.
2010-07-03explicitly 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-03the sedtest regress test requires 200-ish file descriptors, so set aPeter Hessler
somewhat nicer limit inside the script itself. debugged and reviewed with naddy@
2010-07-03add several new tests for pfctl, and fix the output of some existingPeter Hessler
tests for the updated pfctl. OK henning@, mcbride@
2010-07-03Fix a couple of problems with printing of anchors, in particular recursiveRyan Thomas McBride
printing, both of inline anchors and when requested explicitly with a '*' in the anchor. - Correct recursive printing of wildcard anchors (recurse into child anchors rather than rules, which don't exist) - Print multi-part anchor paths correctly (pr6065) - Fix comments and prevent users from specifying multi-component names for inline anchors. tested by phessler ok henning
2010-07-03de-static ufs_chown and ufs_chmod so they show up in DDB.Thordur I. Bjornsson
2010-07-03Use our own enum here rather than abusing the PF rule type enums, whichRyan Thomas McBride
will be getting cleaned up soon. ok henning
2010-07-03Get 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-03we can't checksum directories either, so give a better error messageMarc Espie
2010-07-03Omit some silly USB devices from RAMDISK kernels.Matthew Dempsky
suggestion of more devices and ok tedu@; ok krw@
2010-07-03Stop disk on suspend and start it again upon resume. Gets rid of the loudMark Kettenis
click upon suspend that my laptop with ahci(4) has. ok dlg@, ok marco@ on an earlier iteration of this diff
2010-07-03Intel 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-03Implement translation of the SCSI START STOP UNIT command.Mark Kettenis
ok dlg@, marco@
2010-07-03Turns out theMark 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-03make lint happyAlexander Hall
ok phessler@
2010-07-03s/$Id$/$OpenBSD$/YASUOKA Masahiko
2010-07-03Last bit of thib@ locking diff from long ago. Put proper lockingKenneth R Westerback
around vinvalbuf(). vrele() -> vput() after VOP_CLOSE(). ok tedu@
2010-07-02Always try READ CAPACITY(16) on SCSI-3 devices. If it fails, returnKenneth 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-02update to modern regex code and remove libcompat. ok deraadt phesslerTed Unangst
2010-07-02'wether' -> 'whether' typo in license text.Kenneth R Westerback
ok deraadt@
2010-07-02Pretend that softintr_establish() actually works.Joel Sing
ok kettenis@
2010-07-02no need to call uvm_km_free_wakup for the kernel map, uvm_km_free isThordur I. Bjornsson
enough. ok tedu@, art@
2010-07-02Add Makefile.inc for hppa64 to aid in building cross tools.Joel Sing
ok drahn@ kettenis@
2010-07-02syncTheo de Raadt
2010-07-02When we steal memory, return the VA for the memory that we have stolen andJoel Sing
not the memory prior to it. Lots of help from oga@ ok kettenis@
2010-07-02tags.c isn't needed at all, so exclude the entire object instead ofPhilip Guenthe
commenting it out top-to-bottom ok deraadt@
2010-07-02Don't bother trying to handle a uvm_pglistalloc failure when called withThordur I. Bjornsson
UVM_PLA_WAITOK as it will not fail; Rather assert that it didn't fail. ok tedu@, oga@
2010-07-02Remove the "fast" grep code if SMALL. This has the side effect of breakingTed Unangst
fgrep -w, but oh well. ok deraadt millert
2010-07-02make lint a bit happierTheo de Raadt
2010-07-02garbage collect an unused function; ok claudioTheo de Raadt
2010-07-02garbage collect an unused variableTheo de Raadt
2010-07-02some data structures were still present when NOKVM was definedTheo de Raadt
2010-07-02#ifndef SMALL a few more things to save space on the ramdisksTheo de Raadt
2010-07-02An entire 1.5KB .o file was linked, but not actually used.Theo de Raadt
2010-07-02Yet another workaround for PCH devices adapted from Intel code inJonathan Gray
FreeBSD by Mike Belopuhov. Makes the 82578 in dlg's dell desktop work. tested on 82577 by mlarkin@, ok claudio@