Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-20 | Allow MD oosiop(4) attachment to override default values for a few of the | Miod Vallat | |
chip initialization values (SCNTL0, DMODE, DWT, CTEST7). No functional change on hppa; required by another upcoming attachment. | |||
2010-04-20 | Document the ``alias <map>'' parameter. | Jacek Masiulaniec | |
2010-04-20 | Add "frequency" type for sensors. (and teach userland how to print that | Owain Ainsworth | |
type). Measured in Hz. ok deraadt@ | |||
2010-04-20 | Document ``size'' setting; OK gilles@ | Jacek Masiulaniec | |
2010-04-20 | Instead of using PWT|PCD for uncached (which is wrong on old cpus and | Owain Ainsworth | |
HARD uncached on anything since the P3), use just PCD which is UC- (uncached but mtrrs can override it to write combining). Now kernel mappings of WC-mtrred memory actually get write combining memory. the speed up is very very nice. ok kettenis@, deraadt@, beck@ (who likes his scrollbars non-wibbly) | |||
2010-04-20 | Include usbdevs -v output in the PR template, showing us device IDs which | Stuart Henderson | |
cannot be deduced from the dmesg output. Suggested by miod@, ok deraadt@ | |||
2010-04-20 | Support "accept from local ..." as documented in the man page. | Jacek Masiulaniec | |
Reported by Rene Maroufi <info@maroufi.net> | |||
2010-04-20 | Nuke a few dead stores and one newly created unused variable. | Owain Ainsworth | |
found by clang static analyser | |||
2010-04-20 | A few more uninitialised variables (mostly in incredibly uncommon cases). | Owain Ainsworth | |
found by clang static analyser. | |||
2010-04-20 | Use correct type for ``mda_id'', ie. match with type used in imsg header. | Jacek Masiulaniec | |
2010-04-20 | 0x0 is a valid base address. | Marco Peereboom | |
ok oga | |||
2010-04-20 | Fix "grep -e foo -w" crash. The problem lies in 'e' getopt clause | Jacek Masiulaniec | |
calling add_pattern, which in turn assumes that the getopt phase has already finished. OK otto@ | |||
2010-04-20 | Kill *2400* lines of code by abstracting common bits of the imsg handlers. | Jacek Masiulaniec | |
2010-04-20 | Don't ask for ipv6 checksum offloading as we aren't ready for it. | Jonathan Gray | |
Due to the messy context setup code this was breaking ipv6 forwarding when ipv4 offloading was enabled. All checksum offloading remains disabled for now. Debugged with and ok claudio@ | |||
2010-04-20 | some misc cleanup of dmesg | Theo de Raadt | |
2010-04-20 | start the sensors off invalid... ok yuo | Theo de Raadt | |
2010-04-20 | when a size is declared with a quantifier in smtpd.conf, have parse.y use | Gilles Chehade | |
scan_scaled(3) to support the quantifiers rather than rolling my own code. prompted by jacekm@ | |||
2010-04-20 | prefix_unlink() must remove the rib entry. Currently this was only done | Claudio Jeker | |
in prefix_destroy() but there is another caller of prefix_unlink() which missed the rib_remove() resulting in tree corruption and possible crashes. Doing the remove in prefix_unlink() is better since we do the same with the prefix and rib & prefix are linked. Fix some comments to match code and remove double call to pt_empty()/pt_remove(). Found while hacking on something else. | |||
2010-04-20 | Bump the default buffer sizes to be larger than default MTUs, from Jan | Nicholas Marriott | |
Zeleny. ok djm | |||
2010-04-20 | Allocate the port number properly (don't allocate space then ignore it), | Nicholas Marriott | |
and use %zu for size_t. ok djm | |||
2010-04-20 | Don't write garbage to the config space for phison, | Jonathan Gray | |
we shouldn't be touching the config space at all here. Found by the clang static analyser. ok deraadt | |||
2010-04-20 | for some systems we need to try harder; from Mikko Tolmunen | Theo de Raadt | |
2010-04-20 | - an unsolicited response contains the codec address, not the codec | Jacob Meuser | |
index - we only care about unsolicited responses from the codec we're using - no need to enable unsolicited responses until we know which codec we're using fixes crash reported by jacekm@ | |||
2010-04-20 | setproctitle(3) the parent process to "[priv]" to match other OpenBSD | Jacek Masiulaniec | |
daemons. | |||
2010-04-20 | Make smtpd -d produce verbose output, ie. restore behaviour from before | Jacek Masiulaniec | |
rev. 1.94. | |||
2010-04-19 | Use larger buffer for mda output. | Jacek Masiulaniec | |
2010-04-19 | - use perror(3) | Jacek Masiulaniec | |
- call _exit(2) instead of exit(3) in forked processes | |||
2010-04-19 | Revert ramdisk/list and ramdiskB/list: space is tight. | David Coppa | |
Requested by kettenis@ | |||
2010-04-19 | cckinc is signed. | Damien Bergamini | |
fixes TX power settings for CCK rates on AR9280 devices in open-loop power control mode. | |||
2010-04-19 | Make ipending a per-CPU value. | Joel Sing | |
ok kettenis@ | |||
2010-04-19 | two lines were missing from previous commit | Gilles Chehade | |
2010-04-19 | Enable VS timer dispatch, from Eric Anholt upstream. | Owain Ainsworth | |
The spec says this bit should always be set. It can help resolve hardware deadlocks where a unit downstream of the VS is waiting for more input, the VS has one vertex queueed up but not dispatched because it hope to get one more vertex so it can dispatch a 2x4 block, and software isn't handing any more vertices due to waiting on rendering. | |||
2010-04-19 | Fix use of uninitialised variable. | Owain Ainsworth | |
found by Clang static analyser. | |||
2010-04-19 | Add flags for chipset generation in with the other chipset type flags | Owain Ainsworth | |
prevent the horrible constructs we use to determine generation otherwise. | |||
2010-04-19 | Correct fence pitch checking code and fence register writing on 9{1,4}x. | Owain Ainsworth | |
The tiling check was insufficient and allowing too large pitches, which in some cases could cause graphical corruption, strengthen the check so that only valid values are used. Solved and patch ported from one by Daniel Vetter on intel-gfx. tested by Dorian Buettner (first dot last @ gmx dot de); thanks! | |||
2010-04-19 | Make the Processor Status Word (PSW) a per-CPU value. | Joel Sing | |
ok kettenis@ | |||
2010-04-19 | Increase buffer size to support large pathnames. Committing on | Todd C. Miller | |
behalf of stsp@ who is travelling. OK miod@ deraadt@ xsa@ jsg@ | |||
2010-04-19 | If interfaces are specified, get their rdomain and bind dhcpd into the same | Claudio Jeker | |
domain with setrdomain(). This allows to run dhcpd on multiple rdomains. OK krw@ | |||
2010-04-19 | move the stupid throwing away of ata_xfers out the run of the first scsi | David Gwynne | |
inquiry against the device up to when the port is probed. this has been bugging me for ages. | |||
2010-04-19 | Add missing bits for complete softraid support to sparc/sparc64 | David Coppa | |
ramdisks. OK marco@ | |||
2010-04-19 | Add missing bits for complete softraid support to sparc/sparc64 | David Coppa | |
ramdisks. OK marco@ | |||
2010-04-19 | Add missing bits for complete softraid support to sparc/sparc64 | David Coppa | |
ramdisks. OK marco@ | |||
2010-04-19 | initial support for ENHANCEDSTATUSCODES, has been sitting in my tree for | Gilles Chehade | |
a month or so | |||
2010-04-19 | move Composite pattern (auto-visitor) into its own subclass | Marc Espie | |
2010-04-19 | basic support for SIZE extension, has been sitting in my tree for a month | Gilles Chehade | |
or so ... okayd by jacekm@ a while ago | |||
2010-04-19 | i thought mpi gave each device all the openings on the bus, which was a | David Gwynne | |
big motivation to implementing iopools. while looking at another issue i noticed that openings were cut up for each disk. this cranks openings to maxcmds. | |||
2010-04-19 | Simplify local delivery codepath: | Jacek Masiulaniec | |
- replace uses of struct batch in the parent with simpler struct delivery. - replace IMSG_BATCH_* dance with single IMSG_MDA_SESS_NEW. - make mda assume it delivers to external program over a pipe. - fork helper process when delivering to maildir or a file. New feature: upon external mda failure use last line of its output as an error message. With input and tests from nicm@. OK nicm@ gilles@ | |||
2010-04-19 | let's not stick macros inside a literal display; add some indent | Jason McIntyre | |
whilst here; | |||
2010-04-19 | clean up uthum a bit; | Jason McIntyre | |
2010-04-18 | Work in progress support for AViiON models 4600 and 530. | Miod Vallat | |
Also features support for {awkw,bast}ard 6:1 CMMU:CPU configurations (4I2D). Tested on model 4605, which runs up to cpu_initclocks(), which is not written for this system family yet. No regression on model 4300. |