summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2012-03-07Add AMD Hudson-2 support, thanks to Jorg Willekens for testing.Bryan Steele
ok mlarkin@
2012-03-07reisters -> registersMiod Vallat
2012-03-06Avoid warning from gcc in TAILQ usage example.Christiano F. Haesbaert
From Lawrence Teo.
2012-03-06update to 1.0.13Robert Nagy
2012-03-06tweak previous;Jason McIntyre
2012-03-06oops. correct diff this timeMike Belopuhov
2012-03-06catch up with "on rdomain" changes; ok claudioMike Belopuhov
2012-03-06Add support for an SMB controller found on AMD CS5536 companion device.Mike Belopuhov
Tested on alix and soekris by benno, mpf, shadchin and myself. Loongson tests by miod. OK mpf, shadchin, kettenis
2012-03-06Check if route is still valid when getting the cached rt entry of a pcb.Claudio Jeker
While there make sure we do the lookup in the correct routing table. OK mikeb, henning and phessler
2012-03-06Add the _POSIX_MONOTONIC_CLOCK symbol and the sysconf(3)Antoine Jacoutot
_SC_MONOTONIC_CLOCK variable. from Brad No libc minor crank needed, as no API has been changed, per se (deraadt). ports bulk testing by landry@ small man rewording from thib@ ok millert@ otto@ deraadt@
2012-03-06Fill in default values for rtableid/onrdomain/prio when creating PF rules,Stuart Henderson
prompted by a mail from Gabriel Linder. OK henning@
2012-03-06Define NO_UNSAFE_BUILTINS, overlooked when local changes got merged to gcc4.Pascal Stumpf
Found by Brad. Also, consider stpcpy an unsafe builtin and prevent it from being optimised away. ok miod@
2012-03-06Clarify the wording regarding :*: as proposed by ajacoutot@.Ingo Schwarze
Spring cleanup while here: - Refrain from explaining what a colon (`:') and a comma (`,') is. - Remove speculations about future directions to be taken after 4.0BSD (sic). - And some minor wording changes. ok jmc@ millert@ ajacoutot@
2012-03-06Implement a better way to detect the encoding of the MP_REACH_NLRI attr.Claudio Jeker
Check the addr length value of the RFC 6396 encoding to decide if it is one or not. While there try to make the comment more clear.