summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-04-01Add a macro to initialize the contents of a vmcmd set.Artur Grabowski
Correctly initialize the vmcmds in linux_exec.
2001-04-01if we have a secondary fontset loaded and itMichael Shalayeff
does mapchar for it w /the same success as primary, prefer secondary mapping. this fixes non-lat char display. from Igor Grabin <violent@death.kiev.ua>
2001-04-01spelling.Hugh Graham
2001-04-01Print KA48 or KA45 as appropriate. Someone with a 4000/vlc or 3100/{3,4}0Hugh Graham
could test this in the next snapshot.
2001-04-01Pick up a change from NetBSD:Hugh Graham
: date: 2000/04/28 00:08:51; author: matt; state: Exp; lines: +2 -2 : Dump NRCV to 8 from 5. Note that a 8K NFS reply takes 6 full size : Ethernet packets so the chances are that if the server was fast enough : this driver would continuously lose one of the fragments. Eventually : causing the kernel load to fail. Add 2 extra for random ARP or other : packets that might be picked up.
2001-04-01Call VAX_STYP_50 a MicroVAX 3100/85, even though this machine is KA55.Hugh Graham
Ambiguity is because DEC's docs differ from observed values. Only cosmetic, at any rate.
2001-04-01Changes to initialize the cache on KA690 properly; from Lord Isildur.Hugh Graham
Entries for KA681 and KA691, and a conservative default case to keep things sane if an unknown cpu is encountered by me. Also some KNF. Anyone with a 4000/{4,5,6}00 able to test?
2001-04-01cleanup a littleMichael Shalayeff
2001-04-01remove a little debuggingMichael Shalayeff
2001-03-31Style, and let the kernel compile without option IPSEC.Angelos D. Keromytis
2001-03-31Add support for GVC NIC-2000BT Ethernet adapter.Aaron Campbell
2001-03-31regenAaron Campbell
2001-03-31Recognize a GVC NIC-2000BT Ethernet adapter.Aaron Campbell
2001-03-30ok, test wheather cyrixIII supports 3dnow before enabling itMichael Shalayeff
2001-03-30init started aen; from nbsdMichael Shalayeff
2001-03-30Be consistent when adjusting pkthdr.len; it doesn't matter currently,Angelos D. Keromytis
since the callers always do the right thing, but it might in the future. Pointed out by art@
2001-03-30Protect the IF_XXX macros in the callback routines with splimp(). Doh!Angelos D. Keromytis
Thanks to erik@ipunplugged.com
2001-03-30Add a new wsmuxop, dissetdisplay, which wsmux uses to disocver whether a muxAaron Campbell
device is connected to a display or not. Use it in wsmux_detach_sc(). This fixes a problem I've been struggling with whereby the machine panics if I detach a USB keyboard before disconnecting it from wsdisplay.
2001-03-30increase ierrors if m_pullup fails in vlan_input(); pointed out by chris@Jason Wright
2001-03-30syncNiklas Hallqvist
2001-03-30enable FAKE_LOOPBACK_IF case by default.Jun-ichiro itojun Hagino
now traffic on loopback interface will be presented to bpf as normal wire format packet (without KAME scopeid in s6_addr16[1]). fix KAME PR 250 (host mistakenly accepts packets to fe80::x%lo0). sync with kame.
2001-03-30Avoid a 'thundering herd' problem when many processes wait for free buffers.Artur Grabowski
Just wakeup one process (there is a possible bug here that will be fixed in the next round of cleanup). Some misc cleanup, especially in the comments.
2001-03-30Just because someone writes an errant program does not mean we should logDale Rahn
every problem to the console. #if 0 the rest of the user process crash prints.
2001-03-30fix constness of IN6_{IS,ARE}_xx macros to conform to RFC2553.Jun-ichiro itojun Hagino
sync with kame.
2001-03-30kue ethernet was reported as working months ago, forgot to add it.Dale Rahn
2001-03-29An INIC-940 based card supplied by Initio proves that the iha driverKenneth R Westerback
does support both INIC-940 and INIC-950 chips. So allow iha to recognize and claim INIC-940 based cards, and change documentation to reflect new support. Thanks to Initio for providing the card to test.
2001-03-29Get rid of Data modified on freelist: at boot.Dale Rahn
Always allocate the devices's softc structure, not just struct device.
2001-03-29updateMichael Shalayeff
2001-03-29This debug print has outlived it's usefulness, It seems that the VM problemsDale Rahn
have been fixed and certain config scripts perform abnormal tests which trigger this print. This kernel print is a potential DOS attack, thus should be removed.
2001-03-29Instead of commenting out the awacs, "disable" it. It is then possibleDale Rahn
to enable the awacs via config -e or UKC.
2001-03-29Ok, forgot to clean up debug prints before checkin on that file.Dale Rahn
2001-03-29Detect pci bus base more accurately, and save it's size.Dale Rahn
2001-03-29Add support structures for bus space detection/allocation (pci_addr_fixup).Dale Rahn
2001-03-29Add device node for audio.Dale Rahn
2001-03-29Major cleanup.Dale Rahn
Sync with GENERIC config as appropriate for RAMDISK.
2001-03-29Add FFS_SOFTUPDATES option. It is actively being worked on, if not stable.Dale Rahn
Add gpio to route ADB interrpts. configure wskbd at akbd, wsmouse at aws, abtn. Put awacs in config file, but currently disabled due to interrupt storm it causes. ~230000 interrupts per second is a few too many for a device not being used.
2001-03-29Add diagnostic message.Nathan Binkert
Insert short delay before coming out of spltty in set_cmap function. This prevents a panic on alpha when trying to run the Xtga driver.
2001-03-29Add support for new gpio, abtn, and awacs devices.Dale Rahn
Some cleanup, hints at future direction.
2001-03-29AWACS audio driver for some apple systems. Tested and works on some systems,Dale Rahn
however causes interrupt storm. From Nbsd.
2001-03-29The gpio module is used on newer laptops to route that adb interrupt.Dale Rahn
From Nbsd.
2001-03-29Add ADB "button" driver. used for brightness/volume control on some systems.Dale Rahn
From Nbsd.
2001-03-29Code cleanup, some update from Nbsd.Dale Rahn
2001-03-29Defines for things we should find useful soon. addition PM functionality.Dale Rahn
2001-03-29changes from NetBSD and ftp://nandra.iri.co.jp/pub/NetBSD/macppc/ADB-patchDale Rahn
2001-03-29When initializing a timeout, make certain the parameter to be passedDale Rahn
is not NULL.
2001-03-29Update to adb_direct, from Nbsd.Dale Rahn
2001-03-29Update to ADB mouse driver, from Nbsd.Dale Rahn
2001-03-29Update for adb keyboard driver, from Nbsd.Dale Rahn
2001-03-29If in pmap_kernel() allow vtop for all 1-1 mapped pages.Dale Rahn
2001-03-29Variables removed from common need to live somewhere. Here is good.Dale Rahn
Changes for raw_multi types, obey the correct type defines. Additional support for bus_space_unmap, not quite complete.