Age | Commit message (Collapse) | Author |
|
to be enabled in order for it to produce sound. It can use the same
gpio function as the macs, so rename that to azalia_gpio_unmute.
Tested by damien@, no regressions noticed by jakemsr@
|
|
ok miod@ a while ago, ok pyr@
|
|
okayd by miod a while ago, ok by pyr
|
|
XXX - enums should be revisited someday.
|
|
|
|
|
|
ok todd@, henning@
|
|
about it. It's not linked into microcode/Makefile.
OK deraadt@
|
|
127.0.0.1 / ::1 unconditioally, since RTF_BLACKHOLE/REJECT are not
actually checked in the forwarding path and the gw doesn't matter otherwise.
makes them work.. found teh hard way by me. claudio ok
|
|
|
|
ok ragge
|
|
ok otto and ragge
|
|
be undefined if shift > 31. Makes ccom work much better on 64-bit
archs.
|
|
|
|
together to one single, finally.
You need to bump the firmware package to version 1.3!
OK jsg@
|
|
ok dlg@
|
|
Tested by jmc@
ok dlg@
|
|
data structure these ioctls use, audio_bufinfo.
these ioctls return information about the play and record buffers
into the audio_bufinfo structure.
these are being added to aid in porting non-native audio applications
and libraries, and to fix issues in our OSS audio emulation. these
ioctls exist only on OpenBSD and should not be used in code intended
for distribution.
ok ratchov
|
|
From Geoff Steckel with a few changes
"please commit it (if no one objects)" jmc, "yes" henning
|
|
millert@ ok
|
|
generated files.
"Yes, with extreme prejudice." millert@
|
|
ok krw@
|
|
and returns a possibly wrong revision as 'current revision'.
noticed by tobias@ his regress testing
|
|
In ip_esp.c all allocated memory is now zero'd in the
"malloc(sizeof(*tc) + alen ..." case. The +alen memory was not
initialized by the bzero() call. Noticed by chl@.
"Looks good" art@ "seems ok" chl@
|
|
#include and obscure name clash fix. From From Laurent Desnogues.
|
|
Pass -g onto linker. From Laurent Desnogues.
|
|
|
|
context switch, and state saved by savectx(). This makes backtraces from
kernel crash dumps work much better.
|
|
by savectx().
ok art@, miod@
|
|
instead move some of the logic in yylex and do hoststated specific
translations into hoststated.c
ok gilles@
|
|
|
|
ok otto@
|
|
using regcomp() instead of fastcomp(). ok millert@
|
|
properly removes trailing newline
removes an unused variable
correctly counts line number
"looks ok" ray@ markus@
|
|
From brad@, OK jsg@
|
|
|
|
ok dlg@
|
|
remove the recursive lock in __seekdir() and ensure all callers properly
lock dd_lock prior to calling. reported and tested by bernd@
okay marc@ tedu@
|
|
ok art@
|
|
|
|
Inspired by similar changes to the Linux sky2 driver.
Tested by dunceor, Schoeberle Daniel, moritz@ and brad@ on existing
known working adapters. These chipsets are not actually available
in hardware yet.
ok dlg@
|
|
is found to have PCI power management capability. It has been
found that unconditionally touching this register with the original
VIA Rhine chipset, which does not have power management capability,
and due to the shorter width of the IO addess space, it is possible
for the vr(4) driver to do bad things with hw with IO address space
adjacent to a vr(4) adapter.
Tested by a few users, brad@ and jmc@.
ok dlg@
|
|
|
|
|
|
Most of the ids were from FreeBSD though the quad port blade id came
from the Linux E1000 driver.
ok dlg@
|
|
associated field access defines. This reverts most changes to
dev/sun/disklabel.h without eliminating new functionality. Fix
comments to line up and fit on 80 column line, making both tsi@ and I
feel better.
Simplify logic in disksubr.c. No semantic change.
Tested & ok tsi@.
|
|
- if ((mapstore = malloc(mapsize, M_DEVBUF,
- (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK)) == NULL)
+ if ((mapstore = malloc(mapsize, M_DEVBUF, (flags & BUS_DMA_NOWAIT) ?
+ (M_NOWAIT | M_ZERO) : (M_WAITOK | M_ZERO))) == NULL)
return (ENOMEM);
- bzero(mapstore, mapsize);
|
|
use the same name for fields in the manual page and command output;
while here, fix spacing
millert@ has observed that this change makes the header fields consistent
with what is the output by NetBSD and FreeBSD too
ok millert@
|
|
|
|
to an 11b AP due to not correct initialized tx rates.
|