Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-19 | repair format strings for time_t, and some missing protos | Theo de Raadt | |
ok beck phessler | |||
2013-11-19 | the time being handled here is strictly unsigned 32 bit | Theo de Raadt | |
ok beck phessler | |||
2013-11-19 | provide forward declarations for structures ifnet and ifg_group; | Mike Belopuhov | |
ok deraadt | |||
2013-11-19 | include queue.h directly instead of relying on if.h to provide it; | Mike Belopuhov | |
ok deraadt | |||
2013-11-19 | Print daddr_t's with %lld, size_t's with %zu, int's with %d and | Kenneth R Westerback | |
u_int32_t's with %u. Translate DL_GETPSIZE() results to 512-byte-block values with DL_SECTOBLK(). ok jsing@ | |||
2013-11-19 | backout the DRM_IOCTL_I915_GEM_WAIT commit | Jonathan Gray | |
it seems to leave X unuseable on resume on at least snb/ivb ok kettenis@ | |||
2013-11-19 | Kill matchlvl usage throughout the usb stack. | Paul Irofti | |
Allows us to move forward on cleaning. Okay mpi@ | |||
2013-11-19 | Fetch host specific responsefile, if that does not exist, fall back | Robert Peichaer | |
to generic one. noted by and ok phessler@ ok krw@ and positive feedback deraadt@ | |||
2013-11-19 | Allow '*' in the user part of mailaddresses. By default, potentially dangerous | Eric Faurot | |
characters are replaced when expanding for local deliveries, unless the "raw" modifier is specified. | |||
2013-11-19 | Add a limit on the number of inflight envelopes. The scheduler suspends | Eric Faurot | |
scheduling of mta/mda envelopes until the number of inflight envelopes falls below that line. | |||
2013-11-19 | Remove some FDDI/ATM leftovers. | Martin Pieuchot | |
ok mikeb@, henning@, deraadt@, brad@, miod@ | |||
2013-11-19 | tweak previous; | Jason McIntyre | |
2013-11-19 | move -Wxxx flags from CFALGS to COPTS | Alexandre Ratchov | |
suggested by deraadt | |||
2013-11-19 | regen | Brad Smith | |
2013-11-19 | more 4th gen Intel Core HD Audio ids | Brad Smith | |
2013-11-19 | format string fixes picked up with -Wformat=2 | Philip Guenther | |
ok deraadt@ | |||
2013-11-19 | slightly better | Ted Unangst | |
2013-11-19 | oops | Theo de Raadt | |
2013-11-18 | format string cleanup | Theo de Raadt | |
2013-11-18 | cleanse format string | Theo de Raadt | |
2013-11-18 | format string | Theo de Raadt | |
2013-11-18 | boilerplate documentation | Ted Unangst | |
2013-11-18 | interprocess semaphores ala sem_open. mostly following in the pattern | Ted Unangst | |
of shm_open. with some additions and fixes from zhuk. | |||
2013-11-18 | hack in a global rendezvous for interprocess semaphores to use | Ted Unangst | |
2013-11-18 | Enable MSI on the remaining chipsets. | Brad Smith | |
ok naddy@ sthen@ | |||
2013-11-18 | Extract the information whether to install or upgrade in unattended | Robert Peichaer | |
mode from DHCP attribute "filename", which has to be "auto_install" or "auto_upgrade". For archs that use this attribute for the boot program create a symbolic link to auto_install and/or auto_install. Change the naming scheme for response files on the http server to <mac-addres>-<install|upgrade>.conf where <mac-address> is the lladdr of the netboot interface of to be installed/upgraded hosts, e.g. 52:54:00:12:34:56-install.conf. This allows different response files for multiple hosts. ok krw@ deraadt@ | |||
2013-11-18 | Fix potential null dereference. | Charles Longeau | |
Found by LLVM/Clang Static Analyzer. ok benno@ henning@ | |||
2013-11-18 | Give /dev/drm0 to the user logged on the console to be able | Matthieu Herrb | |
to run OpenGL applications. ok kettenis@ naddy@ | |||
2013-11-18 | The prio value of a pf match rule was overridden by a later pass | Alexander Bluhm | |
rule even if the latter had no prio flag. Fix match rules with prio to work as expected. Found by Roman Kravchuk; reported and tested by Alexey Suslikov; OK henning@ | |||
2013-11-18 | use arc4random() for ether_fakeaddr, because it is safe | Theo de Raadt | |
ok tedu | |||
2013-11-18 | simplify kthread_create(). no more stdarg | Theo de Raadt | |
ok matthew guenther mikeb | |||
2013-11-18 | - ansify some function definitions | Brad Smith | |
- remove return at end of void functions - remove extraneous braces no functional change. ok chris@ | |||
2013-11-18 | ansify some function definitions and tidy up this code style wise. this | Brad Smith | |
ancient code looked pretty crummy. ok deraadt@ | |||
2013-11-18 | remove unused variables | Alexandre Ratchov | |
2013-11-18 | panic expects a format string | Theo de Raadt | |
2013-11-18 | Factor out of {split,pci}_status_strings[] the printf formattings bits, | Philip Guenther | |
putting them in the actual printf() calls. Shuts up gcc -Wformat=2 and reduces the space spent on string constants. ok deraadt@ | |||
2013-11-18 | add missing prototypes | Alexandre Ratchov | |
2013-11-18 | cleanup style | Alexandre Ratchov | |
2013-11-18 | Allow overriding the local ca | Eric Faurot | |
2013-11-18 | When looking up a MX, parse the address if the domain is a "[ipaddr]" string. | Eric Faurot | |
2013-11-18 | change dict_poproot() prototype: do not take key placeholder parameter as | Eric Faurot | |
it can't work that way. | |||
2013-11-18 | Convert trunk(4) to use a detachhook, discussed at b2k13 with many. | Martin Pieuchot | |
While here add a comment explaining detach hooks' order of execution when destroying/detaching an interface. | |||
2013-11-18 | Normalize code sequence around dumpsys(), doshutdownhooks(), and | Masao Uebayashi | |
config_suspend() in ppc boot() functions. Always go through them regardless of (howto & RB_HALT). OK deraadt@ mpi@ | |||
2013-11-18 | bump timeout to 10 seconds to allow slow machines (e.g. Alpha PC164) | Christian Weisgerber | |
to successfully run this; ok djm@ | |||
2013-11-18 | replace disksort with bufqs. basically a copy of the same change in sparc64 | David Gwynne | |
which was a copy of the change in isa/fd.c. ok krw@ | |||
2013-11-18 | sync | Theo de Raadt | |
2013-11-18 | +ugl | Theo de Raadt | |
2013-11-17 | +ugl.4; | Jason McIntyre | |
2013-11-17 | Added dev/usb/if_ugl.c, a driver for Genesys Logic GL620USB-A | sasano | |
USB host-to-host link cable. This driver is derived from upl(4). | |||
2013-11-17 | Mark internal symbols as hidden. This removes symbols from the ABI, | Philip Guenther | |
albeit ones no one should be using, so major bump the shlib. ok kettenis@ ports testing by landry@ |