summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-13In the CAVEATS section, make the sample dmesg output lines actually match whatMiod Vallat
the kernel would output.
2012-03-130 is a valid uid for files sysctl, don't skip it. reminded by guentherTed Unangst
2012-03-130 is a valid uid for files sysctl, don't skip it. ok guentherTed Unangst
2012-03-13Add manpages for __thrsigdivert, __thrsleep, and __thrwakeup. VariousPhilip Guenthe
syntax and grammar fixes from jmc@
2012-03-13better boundsOtto Moerbeek
2012-03-13rough test of the bc(1) math libOtto Moerbeek
2012-03-13Teach pgrep/pkill to only match processes, not threads. ok guenther@Stuart Henderson
2012-03-13Don't trust the environment if issetugid()Philip Guenthe
2012-03-12more cleanup of the bad style of closing fd 0-2Alexander Hall
pre-lock ok krw@
2012-03-12Add -P/-F flags to break-pane too, from George Nachman.Nicholas Marriott
2012-03-12Erm, use EL in a way that actually works...Nicholas Marriott
2012-03-12Use EL to clear to end of line if possible.Nicholas Marriott
2012-03-11Always remember last cursor position when moving up or down, not justNicholas Marriott
for if crossing zero length lines. From Itay Perl.
2012-03-11syncMiod Vallat
2012-03-11typo reported by Ville Valkonen <weezelding at gmail dot com> on tech@Ingo Schwarze
2012-03-11The Dell PERC H310 uses the skinny variant PCI id so it should work.Jonathan Gray
Not mentioned here are the PERC H710/H810 (0x005b/fusion) parts which are not yet supported.
2012-03-11add PCI ids for HP Smart Array P220i/P222/P420/P420i/P421/P721m/P822Jonathan Gray
from Scott Benesh of HP via FreeBSD
2012-03-11regenJonathan Gray
2012-03-11HP Smart Array P220i/P222/P420/P420i/P421/P721m/P822Jonathan Gray
from Scott Benesh of HP via FreeBSD
2012-03-10Account for sched_noidle and document the scheduler variables.Christiano F. Haesbaert
ok tedu@
2012-03-10Add libXt documentation directory. spotted by naddy@Matthieu Herrb
2012-03-10Seems the _REG method is optional, so only run it if it is present.Mark Kettenis
2012-03-10AML integers are supposed to be 64-bit unsigned, but huge parts of our codeMark Kettenis
use signed integers. Partially fix issues by at least doing math operations on unsigned integers. From Christophe Staiesse.
2012-03-10New dir for libXext doc.Matthieu Herrb
2012-03-10- fix a mistake in the list headerJason McIntyre
- zap trailing whitespace
2012-03-10Try to document the new settings of net.inet.tcp.rfc3390.Claudio Jeker
2012-03-10Increase TCP's initial window to 10 * MSS or 14600 bytes as proposed inClaudio Jeker
draft-ietf-tcpm-initcwnd. net.inet.tcp.rfc3390 defaults to 2 now which uses the 10*MSS, setting it back to 1 brings back the old default of 4*MSS. OK sperreault@, henning@, sthen@, markus@
2012-03-10ypbind likes a ypserv to talk to, and ypldap pretends to be ypserv.David Gwynne
this diff starts ypldap before ypbind instead of after. ok deraadt@ ajacoutot@
2012-03-10Give sigwait priority over ptrace to avoid panicPhilip Guenthe
2012-03-10Add PS_EXITING to better differentiate between the process exiting andPhilip Guenthe
the main thread exiting. c.f. regress/sys/kern/main-thread-exited/
2012-03-10ldap doesnt necessarily do referential checks on the users in aDavid Gwynne
group, so it is possible for them to list users that dont exist as members. they should just skip such entries instead of fail horribly. diff from jim smith ok aschrijver@
2012-03-09Remove some bits leftover from unused backoff code.Nicholas Marriott
2012-03-09Add a missing call to window_set_name, from George Nachman.Nicholas Marriott
2012-03-09set onrdomain and prio when creating pf rules, found by Gabriel Linder.Sebastian Benoit
ok henning@ phessler@ camield@ "looks good to me" mkb@
2012-03-09Major bump, since struct vm_map and vm_map_entry changed size and layout.Ariane van der Steldt
2012-03-09Userspace counterpart of new vmmap.Ariane van der Steldt
Allows memory walks to function.
2012-03-09New vmmap implementation.Ariane van der Steldt
no oks (it is really a pain to review properly) extensively tested, I'm confident it'll be stable 'now is the time' from several icb inhabitants Diff provides: - ability to specify different allocators for different regions/maps - a simpler implementation of the current allocator - currently in compatibility mode: it will generate similar addresses as the old allocator
2012-03-09Use a lock file and flock() to serialize server start, avoids problemsNicholas Marriott
when running a bunch of tmux from cron at the same time. Based on a diff from Tim Ruehsen.
2012-03-09- remove a redundant note about tftpd; ok dlgJason McIntyre
- whilst here, normalise Nd
2012-03-08syncMiod Vallat
2012-03-08Oops, forgot the manpage bits for my last commit, from brad.Bryan Steele
2012-03-08fix format strings for size_tMarc Espie
ok okan@
2012-03-08allow editline in -d mode; from AIDA ShinraOtto Moerbeek
2012-03-08let length(0.000) conform to what gnu bc does; from AIDA ShinraOtto Moerbeek
2012-03-08-pedantic wasnt supposed to be commited.David Gwynne
reported by steve andre
2012-03-07- remove some map_find() calls that are no longer needed, they are followedGilles Chehade
by a map_lookup() call that does the map_find() internally spotted and diff by Mathieu <ptr.jetable@gmail.com>
2012-03-07- db.h not needed here, already removed by chl@ but I fscked up previousGilles Chehade
commit ... remove again
2012-03-07various reliability fixes:Gilles Chehade
- prevent queue_fsqueue from fatal() when it hits an ENOENT, it can happen - change a bit the scheduler API to simplify it, fix runner accordingly - we can't remove msg/batch from ramqueue while envelope is offloaded or it will cause a double, instead we add refcnt to both msg/batch and only free them when it hits 0
2012-03-07dont mix code and declarations.David Gwynne
2012-03-07another questionable hang.Federico G. Schwindt