summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-12-23gather up most of the code for printing debug info in dmesgs andJacob Meuser
move it to one place, instead of scattered thoughout with #define and DPRINTF. my eyes are happier now.
2008-12-23line-in is now "line-in", line-out is still "line". S/PDIF-out isJacob Meuser
now "SPDIF", S/PDIF-in is still "SPDIF-in". line change because we need to differentiate. S/PDIF change because SPDIF-out is too long, and for consistency.
2008-12-23syncTheo de Raadt
2008-12-23i got emptypages and fullpages mixed up in pool_walk. this now shows itemsDavid Gwynne
in fullpages that have been allocated. spotted by claudio@
2008-12-23export the livelock counter in a private mib openBSD.5.Reyk Floeter
discussed with dlg@
2008-12-23time to add a new one.Claudio Jeker
2008-12-23allow us to completely exhaust the rx ring now that we handle the RXO (rxDavid Gwynne
overflow) interrupt. Yes deraadt@
2008-12-23oops, forgot this when committing to subr_pool.cDavid Gwynne
add pool_walk as debug code. this can be used to walk over all the items allocated with a pool and have them examined by a function the caller provides. with help from and ok tedu@
2008-12-23add pool_walk as debug code.David Gwynne
this can be used to walk over all the items allocated with a pool and have them examined by a function the caller provides. with help from and ok tedu@
2008-12-23record the offset into each pool page that item allocations actually beginDavid Gwynne
on, aka, its coloring. ok tedu@
2008-12-23a) a widget's nid is always it's index in the codec's widget list.Jacob Meuser
b) members of the widget connection list may be invalid. so, - change azalia_nid_to_index to azalia_widget_enabled, and have it only check that the given nid is valid, and that the corresponding widget is enabled. - use azalia_widget_enabled every time members of the connection list are used.
2008-12-23The splvm() protection is way outdated, only splnet is needed to protectTheo de Raadt
this pool (and the mbstat variables, and a few other things in certain cases) ok mikeb, tedu, and discussion with others...
2008-12-23backout previous. changing the index of valid nids breaks things.Jacob Meuser
2008-12-23sizeof(bge_devices) / sizeof(bge_devices[0]) -> nitems(bge_devices)David Gwynne
2008-12-23if we cant put enough packets on the rx ring then schedule a timeout toDavid Gwynne
try again later. tested by many
2008-12-23don't add invalid widgets to connection lists.Jacob Meuser
2008-12-22do not use the DESTDIR mkboot binaryTheo de Raadt
2008-12-22We never actually rely on storing %fp in tf_global[0] for clockframes. SoMark Kettenis
save ourselves an instruction and remove the pretty misleading comments.
2008-12-22First shoot of the uvideo firmware package.Marcus Glocker
2008-12-22document yp_maplist(); from Ingo SchwarzeJason McIntyre
ok deraadt
2008-12-22do not leak an AMRR USB xfer at each ifconfig down/up.Damien Bergamini
2008-12-22Doh. Correct address in bcopy -- m->m_data not &m->m_data -- this should fixClaudio Jeker
the issues seen by damien@. OK dlg@, damien@
2008-12-22I swapped MGETHDR arguments in my m_defrag removal commit.Damien Bergamini
2008-12-22If we ever get an interrupt from userland with %otherwin set, we have a seriousMark Kettenis
bug. Don't try to fix things up; it's doomed to fail anyhow.
2008-12-22Get rid of many arbitrary differences between the i386 and amd64 mpbios code.Mark Kettenis
Mostly KNF issues, some reorganisation of the code. ok dlg@, deraadt@, krw@
2008-12-22Only warn about pfkey failures when errno is != EEXIST.Hans-Joerg Hoexer
This avoids warnings about already existing manual flows when ipsec.conf is reloaded. From Mitja Muzenic <mitja at muzenic dot net>, thanks!
2008-12-22use the exact same policy for choosing apic on all 3 types of kernel.Theo de Raadt
ok kettenis
2008-12-22mark log_fatal() and monitor_exit() as __dead, as they do not return.Hans-Joerg Hoexer
2008-12-22add regression test for aes-{128,192,256} being used with main and quickHans-Joerg Hoexer
mode.
2008-12-22Adopt to recent change: /32 now is treated as a network address.Hans-Joerg Hoexer
prodded by david@
2008-12-22typoJacek Masiulaniec
2008-12-22Fix some logic in the isight specific stream header decode functionMarcus Glocker
(still doesn't work).
2008-12-22Fix few cases where "smtpctl showqueue" could exit prematurelyJacek Masiulaniec
if msg is delivered between readdir and opendir, or readdir and fopen, etc. etc. Be more unforgiving about errors other than ENOENT, and err() if they happen, not just warn(). ok gilles@
2008-12-22cleanupJacek Masiulaniec
2008-12-22s->s_msg.session_hostname must hold resolved hostname as well; ok gilles@Jacek Masiulaniec
2008-12-22Reduce IMSG_LKA_HOST to only make NI_NAMEREQD getnameinfo call. WeJacek Masiulaniec
don't need it to return NI_NUMERICHOST conversion because there's no reason not to do it in smtp; ok gilles@
2008-12-22delinting: salen may be used with no prior init; ok gilles@Jacek Masiulaniec
2008-12-22Remove entry from mdaproctree after reaping mda child; ok gilles@Jacek Masiulaniec
From: Nicholas Marriott <nicholas.marriott@gmail.com>
2008-12-22The example for detecting malicious PTR records could be easily misinterpreted.Jacek Masiulaniec
Make it less ambiguous; ok gilles@ claudio@
2008-12-22Change DLT_MPLS number.Michele Marchetto
Use one assigned by tcpdump guys to keep things in sync with them. ok canacar@
2008-12-22syncStuart Henderson
2008-12-22correct typo in ATI FireMV device id; Joe Malcolm on misc@Stuart Henderson
2008-12-22Sort quirk device list and fix some comments there.Marcus Glocker
2008-12-22Add firmware load for Apple iSight first generation devicesMarcus Glocker
(0x05ac:8300 before firmware load, 0x05ac:0x8501 after firmware load). Also those devices have a own stream header procotol for which we've added a seperate stream header decode function, which does not work yet. A jointventure work with robert@
2008-12-22With respect to the previous diff we cannot just call acpicpu_setperfGordon Willem Klok
directly, we must call the global function pointer cpu_setperf because we might be on an MP system and if we don't, we only attempt to change the frequency on a single core. ok marco@
2008-12-22Make acpicpu_setperf behave the same as the ACPI aware EST andGordon Willem Klok
powernow drivers if the _PPC is evaluated because an external change has occured such as being disconnected from wall power and the available states in _PSS change. Have the acpicpu setperf driver register a listner for _PPC changes, that way we are not calling the setperf method twice on powernow machines when an change occurs. ok marco@
2008-12-22Let this compile with gcc 2.Miod Vallat
2008-12-22create "_source" mixer items for single connections, but be carefulJacob Meuser
to not be redundant. important for understanding how widgets are connected.
2008-12-22hex for unused widget namesJacob Meuser
2008-12-22set a default name for widgets (u-wid$NID) and don't try to giveJacob Meuser
disabled widgets any other name.