summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-11-17Add the HP Smart Array P711m/P712m PCI ids.Brad Smith
2008-11-17Add PCI ids for the HP Smart Array P711m/P712m adapters.Brad Smith
From HP via the Linux cciss driver.
2008-11-17IPv6 has been supported for awhile now.Brad Smith
2008-11-17Add missing reference of eephy(4).Brad Smith
2008-11-17Sprinkle a few more tabs.Brad Smith
2008-11-17garbage collect i915_vblank_swap.Owain Ainsworth
2008-11-17Manage vblank interrupts using the PIPESTAT register.Owain Ainsworth
The pipestat register needs tweaking when enabling vblanks, and doing this and playing with the IMR seems to lead to problems, so just leave them always unmasked and just tweak PIPESTAT. From Keith Packard at Intel.
2008-11-17Don't put the buffer counter in a reserved part of the status page.Owain Ainsworth
From intel.
2008-11-17Conditionalise the use of the SAREA in inteldrm. In DRI2 setups (which we don'tOwain Ainsworth
support yet, but will) it won't exist, prepare for this by only writing to it if it's there. Bits of this came from Eric Anholt at intel.
2008-11-17- recognize some Conexant codecs.Jacob Meuser
- recognize several STAC (Sigmatel/IDT) codecs and create converter groups for the multi-channel capable codecs. - use the correct name for Sigmatel 7661/7662.
2008-11-17drm advertises a read and poll method. this was there to prevent errrorsOwain Ainsworth
on rather old xservers. Said old xservers haven't been around in quite a long time so just remove them. Since the only function left in drm_fops.c is a small helper function, just move it to drm_drv.c and nuke the redundant file. no one objected when I said I was going to do this.
2008-11-17use the generic mixer configuration for all Realtek ALC codecs.Jacob Meuser
adds outputs.master to ALC885 and ALC888 (and probably others that don't yet have it). also makes ALC88{2,3} much more useful. tested by jmc@ and simon@ (and myself), thanks.
2008-11-17Instead of using a width-1 bitfield for storing the driver capabilitiesOwain Ainsworth
in the callback structure, just use a bunch of ORed together bits. This has been annoying me for ages.
2008-11-17rework how we handle ioctls.Owain Ainsworth
Before it was based on a static array with flags. Instead, let the driver provide an ioctl callback, which deals with things appropriately. Makes the code a bit easier to read, and also drops just over 5k on an amd64 kernel build with all drm drivers enabled. Tested by a few.
2008-11-17NETBSD -> OPENBSD in #endif comment.Kenneth R Westerback
2008-11-17Use new isp_library.c rather than isp_inline.h. No functional change.Kenneth R Westerback
Tested by naddy@. 'go for it' marco@
2008-11-16don't create a virtual inputs.dac, as this will be a duplicate ofJacob Meuser
the real and already existing inputs.dac in most cases.
2008-11-16expand the usefulness of azalia_generic_mixer_create_virtual byJacob Meuser
passing in "preferred" DACs and ADCs. this will be used to give more devices "outputs.master" and "record.volume".
2008-11-16make lists of what widgets are directly connected to DACc and ADCs.Jacob Meuser
use the lists to figure out what class some widgets belong to. ok ratchov
2008-11-16shorten "headphones" to "hp" and "speaker" to "spkr". avoids mixerJacob Meuser
item name truncation in azalia and possibly other devices. ok ratchov warning: if you have a mixerctl.conf(5), it probably needs to be updated.
2008-11-16'.' is a special character in mixer item names. it's the separatorJacob Meuser
between class, device and qualifier. replace use of '.' with '_' where it's not really a separator. idea from/ok ratchov@ warning: if you have a mixerctl.conf(5), it will need to be updated.
2008-11-16document that sio_revents() can return POLLHUPAlexandre Ratchov
2008-11-16when the aucat backend is used, sio_revents(3) should return POLLHUPAlexandre Ratchov
if the connection to the server is lost.
2008-11-16trigger rproc->eof() and and wproc->hup() if POLLHUP event is set.Alexandre Ratchov
Fixes aucat sleeping forever when the devices disappears
2008-11-16aucat stops the device when idle, remove the correspondingAlexandre Ratchov
entry from BUGS section.
2008-11-16allow aucat to listen on multiple sockets. Each socket carries itsAlexandre Ratchov
channel and volume settings allowing multiple configuration to coexist. Mostly useful for envy(4)-like devices, but can be used to force different apps to use different settings.
2008-11-16add ``template'' parameters to sockets rather than using deviceAlexandre Ratchov
parameters. No functional change.
2008-11-16tweak previous;Jason McIntyre
2008-11-16make aucat compile without DEBUG defined (still defined by default)Alexandre Ratchov
2008-11-16in file_poll() the number of polled file structures is not equal to theAlexandre Ratchov
number of polled descriptors. Count the number of polled structrues to detect deadlocks rather than the number of descriptors, avoinding false positives.
2008-11-16Make clients inherit the volume parameter when the -v option is used inAlexandre Ratchov
server mode. It gives the maximum volume a client may have. This wastes dynamic range, but allows volume to stay constant when other clients connect or disconnect.
2008-11-16clear pending interrupts in the driver attach routine.Damien Bergamini
otherwise the chip comes up with the RF_TOGGLED bit set which triggers an if_stop() call if a shared interrupt occurs.
2008-11-16remove dead code.Damien Bergamini
2008-11-16syncDamien Bergamini
2008-11-16USB IDs for Atheros AR9170.Damien Bergamini
2008-11-16Make sure to increment the the output error counter ifBrad Smith
not using TRUNK_PROTO_NONE and there are no member ports. ok mpf@
2008-11-16Add new style replacement for isp_inline.h.Kenneth R Westerback
2008-11-15update the readme a bit by deleting most of the irrelevant info, such as msdosTed Unangst
support and who to mail for 5" floppies... ok kjell
2008-11-15classic C compatibility (no statements before decls)Theo de Raadt
2008-11-14When parsing v4 addresses mark them as network addressesHans-Joerg Hoexer
(IPV4_ADDR_SUBNET) when they contain a '/'. This allows to choose between IPV4_ADDR and IPV4_ADDR_SUBNET by adding "/32", ie. "a.b.c.d" vs. "a.b.c.d/32". This helps to interop with other IKE implementations. From Mitja Muzenic <mitja at muzenic dot net>, thanks! Idea supported by markus@ and jdixon@.
2008-11-14oops. not yet. sorry for the noise.Jacob Meuser
2008-11-14* readability improvement in azalia_codec_connect_streamJacob Meuser
* DEBUG cleanup from Alexey Suslikov, thanks
2008-11-14Revert the reduction in the delays in the miibus read/write routines,Christian Weisgerber
which broke on-board RTL8111C adapters.
2008-11-14Garbage collect the LDT segments, and simply use the GDT segments.Tobias Weingartner
The beginning of i386 segment review/cleanup. Tested by various people.
2008-11-14Atomically update the PTE.Kurt Miller
okay weingart@ art@
2008-11-14the warnings produced by -Wtraditional are not interesting, so remove it.Ted Unangst
ok jmc otto
2008-11-14add back acsite.m4Todd C. Miller
2008-11-14Upgrade to sudo 1.7. See the WHATSNEW files for details.Todd C. Miller
2008-11-14Upgrade to sudo 1.7. See the WHATSNEW files for details.Todd C. Miller
2008-11-14when describing options that can be passed to mount:Jason McIntyre
- keep the examples in this page and fstab(5) in sync - give an equivalent fstab(5) entry to show how options are specified these changes are necessary because of the differing ways we pass options to mount. while here, zap some .Tn ok otto