summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-11-05Add experimental support for 24-bit arithmetic, meaning that fullAlexandre Ratchov
dynamic range of 24-bit hardware can be used. Offline processing like mixing and channel mapping is done with 24-bit precision too. Since most hardware and audio programs use 16-bit precision, 24-bit processing is a small waste of CPU time in many cases, so 24-bit processing is not desirable and this is disabled by default. Furthermore it's available on i386, amd64 and sparc64 only. To experiment with it: make COPTS="-DADATA_BITS=24"
2010-11-05Minor code cleanups. No functional change. From Alexandr Shadchin.Kenneth R Westerback
ok nicm@
2010-11-05unbreak compilation without DEBUG definedAlexandre Ratchov
2010-11-05Sync a bunch of USB devices from i386 to macppc, compiles, butDale Rahn
devices not tested. Not going to get tested unless they are available.
2010-11-05Convert ulaw/alaw to native format (ie using ADATA_XXX defines) ratherAlexandre Ratchov
than s16 (using hardcoded constants). Currently s16 is the native format, so no behavior change.
2010-11-05Document "show mbuf addr" to display the mbuf header of the mbuf at addr.Claudio Jeker
Requested by miod@
2010-11-05Implement m_print as real ddb command "show mbuf addr" in the way otherClaudio Jeker
such commands are implemented. "Ja! You'll need to update ddb.4 as well, of course." miod@
2010-11-05- fix possible use of uninitialized variable.Jasper Lievisse Adriaanse
ok claudio@
2010-11-05Print relativ number of livelocks that happend between two systatClaudio Jeker
updates instead of showing absolut figures. Makes it easier to estimate the "livelockyness" of a system. OK dlg@
2010-11-05Print the daemon name _before_ starting the corresponding rc script.Antoine Jacoutot
"makes sense" schwarze@, ok robert@
2010-11-05If the base DN in a search request doesn't exist, return early.Martin Hedenfal
2010-11-05When draining the input buffer of more than two complete requests, anMartin Hedenfal
additional incomplete request would be truncated. This fixes the number of bytes consumed from the input buffer.
2010-11-05Change to read better after suggestion from jmc.Martin Hedenfal
2010-11-05whitespace KNFDamien Miller
2010-11-05Properly quote the wpakey argument. Fixes issue noted by tdm.Alexander Hall
ok krw@
2010-11-04Filter out reserved destination MAC addresses (01:80:C2:00:00:0x) asPaul de Weerd
per the 802.1D-2004 spec. With lots of help and guidance (and some nagging) from claudio. Tested with net/ladvd port on i386 and amd64. 'be a man' claudio@, ok mpf@
2010-11-04Only LDAP version 3 is implemented.Martin Hedenfal
2010-11-04Document the syntax of schema files. Only a brief synopsis of the attributeMartin Hedenfal
type and object class syntax is given, the rest is referred to the RFC.
2010-11-04Replace ``short'' by a new ``adata_t'' typedef corresponding toAlexandre Ratchov
audio samples and cleanup ADATA_XXX macros. This allows easilly switching to 24 bit fixed point arithmetic by simply redefining the adata_t typedef to int and updating ADATA_XXX macros. No object change.
2010-11-04legacy.c is not used any longerAlexandre Ratchov
2010-11-04Sync with tcpdump.org to fix multicast DNS support, and get someCan Erkin Acar
other updates in the process. Initial report/patch from Christiano F. Haesbaert. Ok matthew@
2010-11-04Publish matching rules in the cn=schema subentry as the matchingRulesMartin Hedenfal
attribute. This is an operational attribute and only returned if explicitly asked for. Required by RFC 4517.
2010-11-04- fix a comma oopsieJason McIntyre
- Tn for "YACC" is silly - since ex(1) and vi(1) are the same page, let's not list them both in SEE ALSO
2010-11-04Rewrite all packet parsers to be more careful about alignment. UntilClaudio Jeker
now ldpd had no chance to run on a strict alignment architecture but this makes ldpd happy on sparc64. Be careful to do all needed overflow checks and try to make all parsing functions look similar. OK michele@
2010-11-04Only consider pathes with highest priority when replying to labelClaudio Jeker
requests. Else a priority inversion may happen that would build label switching pathes that use inactive routes. OK michele@
2010-11-04Make sure we don't end up using /usr/src/etc if we forget to pass theAntoine Jacoutot
correct option (e.g. 'sysmerge /tmp/etc48.tgz'). Use OPTIND as all args are handled by getopts we can catch misusage and we exit with an error. from Brian Poole, thanks. ok sthen@
2010-11-04badspec match_locations must return a ref, fixes pkg_add -nz bzrMarc Espie
(sorry, I don't remember your name, I misplaced that email)
2010-11-04correct commentTheo de Raadt
2010-11-04default to using all the IPs for ntp servers; ok krw henningTheo de Raadt
2010-11-04umask should be parsed as octal. reported by candland AT xmission.com;Damien Miller
ok markus@
2010-11-03no need to specify the -t flag to ctagsTheo de Raadt
2010-11-03POSIX specifies that ctags create tags for typedefs, structs, unions,Todd C. Miller
and enums by default. The -t flag becomes a no-op for backwards compat only. OK deraadt@
2010-11-03pool_sethardlimit should not imply pool_sethiwat; figured out with claudioMike Belopuhov
ok claudio tedu
2010-11-03Update the internal btree documentation to reflect the current api.Martin Hedenfal
2010-11-03remove $OpenBSD$ lines that duplicate earlier onesJonathan Gray
2010-11-03Validate matching rules against attribute syntaxes. All matching rules fromMartin Hedenfal
RFC 4517 are recognized, except the optional wordMatch and keywordMatch. Requires a current core.schema file.
2010-11-03fix errx() usage.David Coppa
OK henning@
2010-11-03caseExactIA5Match is not an appropriate matching rule for directory stringsMartin Hedenfal
(syntax oid 1.3.6.1.4.1.1466.115.121.1.15). Use caseExactMatch instead. Prepares for upcoming validation of matching rules.
2010-11-03$OpenBSD$Jonathan Gray
2010-11-03An index can now also be used for a presence filter.Martin Hedenfal
2010-11-03Evaluate filters according to the three-valued logic of X.511, as requiredMartin Hedenfal
by RFC 4511. A filter term can now be evaluated as undefined if the attribute description is not recognized, the attribute type doesn't define the appropriate matching rule, or the filtering is not implemented. This also implements the NOT filter in the query planner.
2010-11-03only let vmt match and therefore attach if mainbus is specifically askingDavid Gwynne
for vmt to attach after vmt_probe succeeds. this prevents vmt from appearing at other attach points hanging off mainbus. found by phessler@ and debugged gently by claudio@
2010-11-02Make error message specify if a REQUEST SENSE has timed out, not theKenneth R Westerback
original command. Return xs->error = XS_SENSE, when REQUEST SENSE times out, rather that XS_TIMEOUT. Reduces many useless retries of commands getting sense errors.
2010-11-02exit 1 (not -1) for -q; PR 6494Theo de Raadt
2010-11-02Clarify the current state of ldapd as not fully LDAPv3 compliant.Martin Hedenfal
2010-11-02delete excessive ; useTheo de Raadt
2010-11-02Add DEBUG0 printf() for unexpected reselects. No functional change.Kenneth R Westerback
2010-11-02Consolidate duplicated code removing things from the 'going' queue.Kenneth R Westerback
No functional change.
2010-11-02Clean up some printf's, most but not all in DEBUG0 blocks, by usingKenneth R Westerback
sc_print_link() properly and consistently. No functional change.
2010-11-02Include <sys/time.h> such that <sys/resource.h> becomes usable on its own asMark Kettenis
required by POSIX X/Open extensions for quite a while now. ok millert@, guenther@, deraadt@