summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2009-01-12Add padding to some message structs since the Solaris virtual disk serversMark Kettenis
seems to want it. Also add 'struct vio_rdx' to make sure we use the proper padding there too.
2009-01-12Add a callback function that gets called when an LDC connection is established.Mark Kettenis
2009-01-12As recommended by the Sun Virtual IO specification, use tick() to generateMark Kettenis
session ID instead of arc4random().
2009-01-12Register aiodoned_proc, although it is not used anywhere yet; PR #6034Miod Vallat
2009-01-12Remap the audio mute key on type 5, as it collides with the keypad equalMiod Vallat
key on type 4.
2009-01-12Be more strict when checking window-left and window-top values.Miod Vallat
2009-01-12make compile with #define MSTS_DEBUG; ok mbalmer@Kevin Steves
2009-01-121) remove invalid comment since first field is not message typeKevin Steves
in msts 2) modify debug string to not print first field (which is not the sentence message type) ok mbalmer@
2009-01-12comment should be epoch not midnight; ok mbalmer@Kevin Steves
2009-01-11Add some tested USB stuff. -mojMats O Jansson
2009-01-11Fix a sed bug in the makefile's depend target.Paul Irofti
What happened was that the output of mkdep was fed to a sed expression that trimmed a bit more than required and also failed to work when attempting to do make depend with pcc. Example: genassym_c.o: /tmp/genassym.whatever ../../../../../sys/param.h \ was changed to: assym.h: \ but what was intended was: assym.h: ../../../../../sys/param.h \ For the pcc -M output things were a bit different and after the make depend the genassym entry would still remain and make would fail. This affected all platforms except amd64 and sgi. Okay miod@.
2009-01-11WSDISPLAY_COMPAT_RAWKBD support for sun serial keyboards (zskbd, comkbd).Miod Vallat
2009-01-11backout revision 1.109Owain Ainsworth
"keep b_proc set to the process, thats doing the io as advertised" This broke dvd playing on my laptop (page fault trap in vmapbuf in the physio path). thib's cookie privileges are hereby suspended until further notice.
2009-01-11Regen (no functional change)Miod Vallat
2009-01-11Actual final round of timeout_add(to, n * hz) -> timeout_add_sec(to, n)Bret Lambert
conversions. ok kettenis@ ok krw@ (possibly for the second time :)
2009-01-11Put the audio volume control keys in the conversion table, instead ofMiod Vallat
adding them explicitely at the end of the us layout.
2009-01-11Define a limit to the input which can be fed to sunkbd_input() at once,Miod Vallat
will be necessary for rawkbd mode.
2009-01-11Factor a bit more sunkbd common parts; paves the way for upcomingMiod Vallat
WSDISPLAY_COMPAT_RAWKBD support.
2009-01-11Some frame buffer fcode do not fill window-top and window-left putMiod Vallat
nevertheless provide them; cope with zero values.
2009-01-11Fix pasto in debug message.Mark Kettenis
2009-01-11allow one more level of connections (3 instead of 2) away from DACsJacob Meuser
for mixers and selectors when choosing the defaults for outputs.master.slaves.
2009-01-1132-bit mode for s/pdif transmitters/receivers does not reallyJacob Meuser
allow transmission/reception of 32-bit audio, so don't allow it. pointed out by naddy@, thanks.
2009-01-11Add additional values for the Atom FSB_FREQ bus clock MSR nowJonathan Gray
Intel actually document it publically.
2009-01-10Do not compile in wsdisplay_emulinput() if WSEMUL_NO_VT100 is #defined.Miod Vallat
2009-01-10dont include mfs_extern.h hereThordur I. Bjornsson
ok miod@
2009-01-10Get rid of eye-bleeding horror of casting pointers to u_long to addBob Beck
a size to them, because the original author of this stuff obviously didn't grok pointer arithmatic. ok krw@, tedu@, marco@, kettenis@
2009-01-10Split off VIO definitions into their own file.Mark Kettenis
2009-01-10Add GEM ioctl definitions to drm.h (the intel specific ones were added aOwain Ainsworth
while back). I need this for libdrm updates. While i'm here, remove a bunch of #ifdef NotUs stuff, and remove some stupid doxygen comments.
2009-01-10Enable cbus(4) and vnet(4).Mark Kettenis
2009-01-10Add support for the volume buttons and for the eject button foundRobert Nagy
on apple laptops. The eject button will only eject the disc when it's not used by anything. ok miod@
2009-01-10When switching from emulation mode to mapped mode (i.e. X starts), it is notMiod Vallat
enough to suspend the screen burner; the video has to be switched on if the screen burner had run already.
2009-01-10Tweak the way we include the iommu code a bit.Mark Kettenis
2009-01-10Split off LDC support code into its own file.Mark Kettenis
2009-01-10- remove unused variableKevin Lo
- eliminate hardcoded return value of jme_init_rx_ring() ok jsg@
2009-01-10Add multicast support. Doesn't handle multicast ranges yet, but inet6 seemsMark Kettenis
to work fine.
2009-01-10Don't try to cast an lvalue which is forbidden and something pcc, lint,Jonathan Gray
and newer versions of gcc all object to. ok miod@ krw@ beck@
2009-01-09Implement command timeouts. With some helpful tips from miod@, thanks.Alexander Yurchenko
2009-01-09keep b_proc set to the proccess,Thordur I. Bjornsson
thats doing the io as advertised closes PR3948 OK tedu@ (and blambert@ I think).
2009-01-09Make sure we move an interrupt vector to the "lowest" priority level ifMark Kettenis
necessary. Fixes a nasty bug with establishing interrupts "late". Also make sure we skip the handler being removed when calculating the new "lowest" and "highest" priority level when disestablishing interrupts. Remove dmesg spam when freeing vectors. tested by many, ok marco@, beck@
2009-01-09Explain that any check pattern will work.Jonathan Gray
Suggested by miod@
2009-01-09Add support for SDHC cards on SDHC capable host controllers.Jonathan Gray
Thanks to everyone who tested in particular jsing@ who found several problems in the initial diffs. ok dlg@ jsing@ miod@
2009-01-09fix egress group matching for IPv6; ok claudio@David Krause
2009-01-08Fix sockaddr_mpls structure.Michele Marchetto
Now it contains just the label as it must be. This introduces a ugly hack in rtentry that will be removed as soon as possible. OK claudio@
2009-01-07Set IFF_OACTIVE when we run out of resources transmitting packets.Mark Kettenis
2009-01-07Enable urlphy in addition to url.Jonathan Gray
Noticed by dlg on system that comes with url(4).
2009-01-07Fix typo.Mark Kettenis
2009-01-07Fix an occurance of __attribute which should have been __attribute__Jonathan Gray
by converting the entire line to __packed. ok kettenis@
2009-01-07Match on Linksys WUSB600N.Jonathan Gray
Tested by frlinux@gmail.com.
2009-01-07regenJonathan Gray
2009-01-07Linksys WUSB600NJonathan Gray