Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-29 | Tweak printing of partitions. Always show the pblock info in the | Kenneth R Westerback | |
'p' command output. And always show the lblock info in the 'P' command. Showing sometimes one and sometimes another with a subtle extra character to indicate which is being shown is error prone. | |||
2016-01-29 | use hid_desc fields since we have them, instead of manual offsets | Joshua Stein | |
into hid_desc_buf tested by jsg | |||
2016-01-29 | Check that byte order is native only if we're using more than one | Alexandre Ratchov | |
byte per sample, check that samples are lsb-aligned only if there's padding. Fixes unsupported parameters not being detected if compiled in 24-bit mode and sndiod is not running. | |||
2016-01-29 | sort includes | mmcc | |
from Michael Reed | |||
2016-01-29 | remove unneeded CHAR_BIT macro | mmcc | |
from Michael Reed | |||
2016-01-29 | Move the AUDIO_GETDEV ioctl in its own routine. | Alexandre Ratchov | |
2016-01-29 | Shorter names means a few whitespace adjustments. | Kenneth R Westerback | |
2016-01-29 | Rename struct partition_map_header to struct partition_map. No change to | Kenneth R Westerback | |
.o files. | |||
2016-01-29 | Rename struct partition_map to struct entry. No change to .o files. | Kenneth R Westerback | |
2016-01-29 | Conform to Apple Mac OS X's behaviour of setting dpme_flags on free | Kenneth R Westerback | |
partitions to 0, and setting them to VALID | ALLOCATED on the map partition. | |||
2016-01-29 | remove unused field | Eric Faurot | |
2016-01-29 | Conform to Apple Mac OS X's behaviour of not giving 'Apple_Free' | Kenneth R Westerback | |
partitions a name. Nuke kFreeName. | |||
2016-01-29 | Therefor -> Therefore (where appropriate) | tb | |
from ray@, ok jmc@ | |||
2016-01-29 | Support for RGB colour, using the extended cell mechanism to avoid | Nicholas Marriott | |
wasting unnecessary space. The 'Tc' flag must be set in the external TERM entry (using terminal-overrides or a custom terminfo entry), if not tmux will map to the closest of the 256 or 16 colour palettes. Mostly from Suraj N Kurapati, based on a diff originally by someone else. | |||
2004-04-07 | import openssl-0.9.7d | Markus Friedl | |
2016-01-29 | Simplify code: hasrun is confusing and useless. There is no way | Eric Faurot | |
filter_drain_query() can be called when the ->current filter is still running the query. Just make sure we move forward after having received the response from the current filter. ok gilles@ | |||
2016-01-29 | We're not allowed to change audio parameters while the device is | Alexandre Ratchov | |
in use by another program. Explain that and remove wrong example. | |||
2016-01-29 | Display play and record parameters that are not independent | Alexandre Ratchov | |
as a single variable (this corresponds to the way the audio driver handles them). As we're at it, drop unused/duplicate parameters. ok mpi | |||
2016-01-29 | Remove the query queueing mechanism. It's useless since pipelining is | Eric Faurot | |
not supported anyway. ok sunil@ gilles@ | |||
2016-01-29 | include packet type of non-data packets in debug3 output; | Damien Miller | |
ok markus dtucker | |||
2016-01-29 | Add regression test for RekeyLimit parsing of >32bit values (4G and 8G). | Darren Tucker | |
2016-01-29 | remove superfluous macro | mmcc | |
ok nicm | |||
2016-01-29 | Revert "account for packets buffered but not yet processed" change as it | Darren Tucker | |
breaks for very small RekeyLimit values due to continuous rekeying. ok djm@ | |||
2016-01-29 | sync | Jonathan Gray | |
2016-01-29 | install the relayd mib | Jonathan Gray | |
ok blambert@ | |||
2016-01-29 | Allow RekeyLimits in excess of 4G up to 2**63 bits (limited by the return | Darren Tucker | |
type of scan_scaled). Part of bz#2521, ok djm. | |||
2016-01-29 | Account for packets buffered but not yet processed when computing whether or | Darren Tucker | |
not it is time to perform rekeying. bz#2521, based loosely on a patch from olo at fb.com, ok djm@ | |||
2016-01-29 | Fix err.h uses, reporting errno when available and simplifying error | mmcc | |
messages. Partially from Michael Reed. | |||
2016-01-29 | Move a pool_put() to avoid a use after free. | Jonathan Gray | |
ok mlarkin@ stefan@ | |||
2016-01-28 | sigsuspend is section 2, not 3. | Jason McIntyre | |
2016-01-28 | Flip base_order to a LIST(). | Kenneth R Westerback | |
2016-01-28 | Delete a bunch of Morris dancing in delete_partition_from_map(). | Kenneth R Westerback | |
No need to create a new dpme. Just rename/retype the existing and let combine_entry() suck in any surrounding empty space partitions. | |||
2016-01-28 | Fix a crash when a server sends a non-standard newline ("\n" instead of "\r\n"). | martijn | |
Present since ssl support was initially added in OpenBSD 4.0 Found by sthen@ via github downtime OK sthen@ | |||
2016-01-28 | Hand rolled lists suck. First, replace disk_order with an LIST. | Kenneth R Westerback | |
2016-01-28 | Oops. Deleted one too many lines. Need to advance pointer when traversing | Kenneth R Westerback | |
list. | |||
2016-01-28 | Convert to uiomove. Diff from Martin Natano. | Stefan Kempf | |
2016-01-28 | malloc(3) returns a pointer, so check against NULL, not 0. (No functional ↵ | Gleydson Soares | |
change) OK millert@ | |||
2016-01-28 | When adding a new partition to the map, use only existing mapped | Kenneth R Westerback | |
space. Don't try to create new free space partitions to use. If the map does not know about all of the space on the disk, it is broken. | |||
2016-01-28 | The CSRG declared alarm(3) obsolete 30 years ago (before 4.2BSD), | Ingo Schwarze | |
but it is likely to remain in POSIX for the forseeable future, and there is nothing wrong with using it, so remove the marker. By contrast, POSIX 2008 now declared setitimer(3) obsolescent. While here, remove a few cross references pointing to obsolete or non-standard functions and update the POSIX reference. Triggered by a question from <ChrisBennett at bennettconstruction dot us>. OK millert@ tb@ | |||
2016-01-28 | Document the new daemon status check. | Ingo Schwarze | |
2016-01-28 | Run "rcctl ls faulty", which is silent when all services work as expected. | Ingo Schwarze | |
Based on an original idea and a different patch from landry@. OK jung@ zhuk@ landry@ krw@ agreed to the general idea | |||
2016-01-28 | Correct bit flag tests to work as intended. | Jonathan Gray | |
ok renato@ | |||
2016-01-28 | Since we don't allow maps to be created or opened with an invalid | Kenneth R Westerback | |
block0, there is no point in checking later if block0 has magically become invalid. | |||
2016-01-28 | Use consistent 'return' idiom -- no parenthesis since that was the style | Kenneth R Westerback | |
of the existing code. | |||
2016-01-28 | Older Xen dom0's don't implement setting version of Grant Table entries | Mike Belopuhov | |
Remove leftover code that was used to set v2 of Grant Table entries. From Nathanael Rensen <nathanael at list ! polymorpheus ! com>, thanks! | |||
2016-01-28 | avoid Xr to self; | Jason McIntyre | |
2016-01-28 | Correct date for Australia Day. From Ian Mcwilliam, ok jmc. | Darren Tucker | |
2016-01-28 | Document the pvbus(4) IOCTL INTERFACE. | Reyk Floeter | |
2016-01-28 | Simplify the query-chain code now that events are sent through a dedicated loop. | Eric Faurot | |
ok gilles@ jung@ | |||
2016-01-28 | more tweaks; ok krw | Jason McIntyre | |