summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-30Fix intel gmbus i2c code. Not all transactions were handled correctly, andMark Kettenis
on top of that, various iic_exec(9) calls were incorrect. Doesn't seem to handle SDVO yet though.
2013-03-30Restrict protocol numbers for raw sockets to the range from 0 to 255.Alexander Bluhm
OK deraadt@ guenther@
2013-03-30Use --stderr to output pod2man problems at build time, rather than embedStuart Henderson
them into a "POD ERRORS" section in the produced manpages.(!) ok miod@
2013-03-30Disable perlcn/perlko/perljp manpages which use EUC encodings, we produceStuart Henderson
all manpages in a batch with a single pod2man invocation which is unable to switch encodings. Avoids "Code point xxx is not Unicode, all \p{} matches fail" during build. Disable perltw manpage which relies on getting UTF8 passed through from the source file to pod2man to mandoc; even on a utf8 term with -Tutf8 these don't get displayed correctly.
2013-03-30Remove debug printf that causes problems with framebuffer acceleration whenMark Kettenis
turned on. Linux doesn't have it anyway. ok jsg@
2013-03-30have smtpd temporarily refuse new messages if file system holding the queueGilles Chehade
has less than 10% of disk space or inodes left. a warning is logged and the clients will get a temporarily failure asking them to retry later. prompted by deraadt@
2013-03-30Fixed a memory leak during HTTP header parsing.Tobias Stoeckmann
ok deraadt, halex, sthen
2013-03-30tweak previous;Jason McIntyre
2013-03-30Back out previous; this needs more thought.Mark Kettenis
2013-03-30previous had one backslash too many;Jason McIntyre
2013-03-30don't ever skip reload the very first time; detective work by rpe@; ok eric@Otto Moerbeek
2013-03-30reorder include search directories. cuts lookups by quite a bit.Ted Unangst
ok deraadt miod
2013-03-30enable com2. if it works on i386, we think it will work here.Ted Unangst
ok deraadt
2013-03-30Various updates, mostly to SYNOPSIS, ERRORS, and STANDARDS, butPhilip Guenther
some other fixes included... *at() function ERRORS description suggested by matthew@ ok deraadt@
2013-03-30vrele() is a tricky beast. it can sleep if the refcount hits zero,Ted Unangst
leaving us with a free type function that isn't atomic. deal with this by erasing any reachable pointers to the vnode first, then free it. ok deraadt guenther
2013-03-30Remove mentioning specific systems with embedded Ethernet chipsets orBrad Smith
LOM in vge(4) which is pretty vague and common to many Ethernet chipsets. ok kettenis@
2013-03-30Remove mentioning dual-port cards and being built into motherboardsBrad Smith
and the bit about the hw list not being exhaustive. ok kettenis@
2013-03-30go back to the old method of execbuffer pinningJonathan Gray
should fix problems noticed by Ralf Horstmann and bluhm@
2013-03-30Return ENOTDIR if an *at() syscall is passed a relative path and aPhilip Guenther
fd to resolve against that isn't a directory ok matthew@
2013-03-30Fix typos.Lawrence Teo
From "Mike." the.lists()mgm51.com, thanks! ok jmc
2013-03-30Return an exit code of 1 if the file cannot be opened (e.g. file doesLawrence Teo
not exist), or if there is an error reading the file stream. From Patrik Lundin, thanks! ok deraadt
2013-03-30Provide a default discipline interrupt handling function and migrate all ofJoel Sing
the disciplines that now have the same interrupt code. ok krw@
2013-03-30Add a function to read the ARM MPCore base address. This let's usPatrick Wildt
dynamically determine where e.g. the interrupt controller is. ok bmercer@
2013-03-30Remove duplicate prototypes.Patrick Wildt
2013-03-29properly handle scope when parsing IPv6 addresses.Eric Faurot
ok bluhm@ naddy@ sthen@
2013-03-29Enable lazy binding by default.Miod Vallat
2013-03-29res_querydomain()'s code to terminate the domain with '.' had the assignmentPhilip Guenther
flipped so that it always used a domain of ".." Heavy lifting by otto@ ok eric@ otto@ miod@
2013-03-29correctly show the scope for IPv6 addresses in getnameinfo()Eric Faurot
2013-03-29Add an explicit Pod-Escapes dependency to Pod-Functions, in addition to theMiod Vallat
existing Pod-Simple dependency. Fixes build with -j2 for real.
2013-03-29More mg_data.h where uudmap.h is listed, for paranoia and consistency.Miod Vallat
2013-03-29Add an explicit dependency for mg_data.h, similar to uudmap.h; should helpMiod Vallat
building with -j.
2013-03-29Do not fail in gethostbyname_async() if there are multiple addresses inEric Faurot
a DNS packet...
2013-03-29Properly release ccbs when restarting a work unit.Joel Sing
2013-03-29Declare struct pf_state_key in the mbuf and in_pcb header files toAlexander Bluhm
avoid ugly casts. OK krw@ tedu@
2013-03-29Convert RAID 4/5/6 to new ccb completion code.Joel Sing
2013-03-29Prevent race conditions in db file handling.Tobias Stoeckmann
ok gilles
2013-03-29Patch from Ilya Bakulin that allows to put snmpd(8) into read-only modeGerhard Roth
so that all "set" requests will be rejected. ok reyk@
2013-03-29Replace hand-crafted loops in if.c with the FOREACH macro.Alexander Bluhm
OK tedu@ claudio@
2013-03-29Enable the response rate limiting code in NSD in the default build,Stuart Henderson
see http://www.nlnetlabs.nl/blog/2012/10/11/nsd-ratelimit/ for more information. camield, phessler and deraadt agree this is a sane default.
2013-03-29Decouple wakeups on work unit completion from the type of I/O beingJoel Sing
performed. ok krw@
2013-03-29sd_wu_pending is only decremented when scsi_done() or scsi_io_put() areJoel Sing
called. As a result, factor out the the sd_sync check/wakeup code and move it to after the scsi_done() call in sr_scsi_done(). Perform the same sd_sync check/wakeup after scsi_io_put() calls (including the addition of some that were previously missed). ok krw@
2013-03-29Fix building on the RAMDISK media. This was exposed by SMALL_KERNEL.Brad Smith
ok deraadt@
2013-03-29reduce the diff to linux in i915_gem_get/set_tilingJonathan Gray
2013-03-29put urtwn in big ramdisks so I can use it for upgradesTed Unangst
2013-03-29release the i2c bus in the error paths of fetching an edidJonathan Gray
2013-03-29remove some of the unused fields from rndstats and stop printing zeroes.Ted Unangst
print labels before stats so people can tell what's what.
2013-03-29sadly, we are going to need machine/cpu.h here for a while to get machdepTed Unangst
noticed by naddy
2013-03-28syncTheo de Raadt
2013-03-28as DRM_LOG_KMS is called with partial lines make it a simple printfJonathan Gray
2013-03-28add support for relaxed deltasJonathan Gray