summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-05Document CCACHE_DIR and CCACHE_ENV.Stuart Henderson
2011-07-05Document USE_CCACHE / NO_CCACHE.Stuart Henderson
2011-07-05If uvm_vslock_device() fails, just exit the loop. None of theMatthew Dempsky
after_unlock code is needed if this happens, and running it was even wrong because we weren't setting b_resid, so uio_offset (and higher up, f_offset) would be incorrectly adjusted. Discussed with deraadt@.
2011-07-05Enforce that raw disk I/O is only initiated on block boundaries inMatthew Dempsky
physio(). ok deraadt@
2011-07-05msync has some code that is based on *old* bsd behaviour whereOwain Ainsworth
msync(size == 0) did strange things based on the original mapping segments and trying to manipulate same. This code was copied from the original vm when we moved to uvm. posix says nothing about this behaviour and anything that depends on it is systemically broken, so rip it out and make sys_msync about 30% smaller. ok deraadt@, tedu@, guenther@.
2011-07-05remove comment: yes, they should be independentTheo de Raadt
2011-07-05Add disklabel defines for ia64. Okay krw@.Paul Irofti
2011-07-05there are no cachelist or logs for poolsTed Unangst
2011-07-05Minor cleanup. OK blambert@Claudio Jeker
2011-07-05When both a formatted and an unformatted version of the same manual pageIngo Schwarze
are available in the same tree, only show the newer of the two. So far, this only handles the case without -a; i need to look at the case with -a next.
2011-07-05kill a useless Pp;Jason McIntyre
2011-07-05clean up some left over decls from before the code moved to one fileTheo de Raadt
ok guenther
2011-07-05When the kernel runs out of mbuf clusters, the hme receive ring mayAlexander Bluhm
become empty. In that case, the hme driver could not recover as the ring was only filled after receiving data. Check and potentially fill an empty receive ring every second in hme_tick(). ok kettenis@
2011-07-05Add so_idletv to netstat -vP pcb-address output.Alexander Bluhm
ok mikeb@
2011-07-05Move arm to the 'MI' softfloat code instead of the arm version.Dale Rahn
YES!! miod@
2011-07-05Do not use (ifam + 1) to find the start of the sockaddrs. Use theClaudio Jeker
rtm_hdrlen instead. Also move the ifindex check way further up. OK dlg@ bluhm@
2011-07-05Flip one .Fl interface to .Fl iface since iface is used everywhere elseClaudio Jeker
even though -interface is the same as -iface. OK jmc@
2011-07-05tweak previous;Jason McIntyre
2011-07-05Allow parallel linting of manuals,Ingo Schwarze
by using one mandoc process and one timestamp file per man page. This might be slightly slower on single-processor machines, but it's considerably faster with make -j. "I think so" deraadt@
2011-07-05Recommit the reverted sigacts change now that the NFS use-after-freePhilip Guenthe
problem has been tracked down. This fixes the sharing of the signal handling state: shared bits go in sigacts, per-rthread bits goes in struct proc. ok deraadt@
2011-07-05Sync to bsd.lv (all coded by kristaps@):Ingo Schwarze
- mdoc(7): fix an assertion if the first line after .Bd -column starts with a blank, and some simplifications in mdoc_argv.c - man(7): literal mode ends at .SH and .SS (bug reported by naddy@) - allow .RS/.RE blocks to nest (bug reported by dcoppa@ and gsoares@) - improve vertical spacing of man(7) blocks - roff(7): clear user-defined strings when starting a new file - correct ID tags in -T[x]html
2011-07-05Add checks for sector-alignment and whole number of sectors toMatthew Dempsky
bounds_check_with_label() and generally cleanup the code while here. ok krw@ ("I like this a *lot*"); "i like it" tedu@
2011-07-05Replace expanded version of RW_PROC() with the macro.Tobias Weingartner
ok oga@
2011-07-05i forgot to set the sector_count when translating WRITE SAME 16David Gwynne
into DSM/TRIM commands. found by tedu
2011-07-05Trim comments from termtypes.master before passing through cap_mkdb,Nicholas Marriott
speeds things up a good bit. ok tedu
2011-07-05Add stubs for signals and forks.Paul Irofti
While at it clean-up a bit by removing unused files and adding cvs tags.
2011-07-05allow option KVA_GUARDPAGES to compile.David Hill
2011-07-05Fixed some bugs of priv_send(). The bugs caused sending routing messagesYASUOKA Masahiko
failures. 'errno' returned by the privileged process was not initialized. 'tolen' in priv_sendto() was garbage. ok hsuenaga@
2011-07-05Fix IKEV2_N_NO_ADDITIONAL_SAS notification by including the SPIMike Belopuhov
2011-07-05syncTheo de Raadt
2011-07-05now of course I only noticed if_qflush is completely unused afterHenning Brauer
adjusting it to the new world order in my tree... remove it, ok ryan claudio
2011-07-05check that thread specific keys are valid, and cleanup code a little.Ted Unangst
ok guenther
2011-07-05When calling nfs_request() for what could be an async request, passPhilip Guenthe
down curproc instead of the struct proc from the I/O request...which may gone away behind our back. Assert that the supplied request *is* curproc in a couple other places. Reproduction and testing by sthen@ ok deraadt@, beck@, art@
2011-07-05disable COMPAT_AOUT, it's useless now, but leave the code in the treeTed Unangst
to encourage someone to convert remaining a.out archs to elf. :) ok deraadt
2011-07-05Remove the osyscall() kernel-entry; we do not use it anymore.Theo de Raadt
ok kettenis guenther tedu
2011-07-05fix a few bugs in the thread specific data functionsTed Unangst
2011-07-05Allow switching between binutils and binutils 2.17.Dale Rahn
NOTE: binutils-2.17 has not been tested on any archs. ok pirofti@
2011-07-04My merges of miod's binutils-2.17 WIP code with my changed necessary to getDale Rahn
somewhere with it building on arm/ia64. much pressure pirofti@ deraadt@
2011-07-04Say no to hand-rolled m_adj(). It also kills three XXX.Claudio Jeker
OK dlg@ henning@
2011-07-04In fact using our own limits.h is the way to go. Okay kettenis@.Paul Irofti
2011-07-04Clean-up NETBSD specific defines. Prodded by kettenis@.Paul Irofti
2011-07-04Simplfy GCC decision by making the list of archs instead a hugeDale Rahn
list if ${MACHINE_ARCH} == "xx" tests ok deraadt@ pirofti@ (with fixes mentioned from kettenis)
2011-07-04Add ia64 kernel include files needed for userland.Paul Irofti
Okay deraadt@, drahn@, kettenis@.
2011-07-04Temporarily back out msi for inteldrm.Owain Ainsworth
Some gm45 and 965 are having issues and this fixes it for halex at least. Art's machine (945gm) is also playing up but he didn't update for a year (and the problem doesn't look like what i would expect).
2011-07-04remove svr4 compat referencesTed Unangst
2011-07-04remove all the compat svr4 filesTed Unangst
2011-07-04remove compat_svr4Ted Unangst
2011-07-04Fix debugging prints in softraid(4) so that it can compile withMatthew Dempsky
SR_DEBUG enabled. Broken since r1.227.
2011-07-04remove compat_svr4 support. ok deraadtTed Unangst
2011-07-04tsc tsc, no waikiki for me. copyright statement without year. 2003 it was.Henning Brauer