summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2002-06-14spelling; from Brian Poole <raj@cerias.purdue.edu>Todd T. Fries
2002-06-14don't allow users to set the IBSS/HostAP SSID to the empty stringTodd C. Miller
2002-06-14from freebsd:Michael Shalayeff
Throw away the first N words of output, as suggested in the paper "Weaknesses in the Key Scheduling Algorithm of RC4" by Fluher, Mantin, and Shamir. (N = 256 in our case.)
2002-06-12Previously, SIOCG80211NWID would return the "desired" netname ifTodd C. Miller
the interface was up, even if it was the empty string. This tends to confuse users who have not set the desired net name (ie: associate with any AP). Now we only return the desired net name if it is not empty and the interface is up. Otherwise we return the current net name (ie: what we are associated with).
2002-06-12Prune duplicate definitions from <dev/cons.h>Miod Vallat
2002-06-11Fix, s/pci_sel/pciselJason Wright
2002-06-11Fix tab.Aaron Campbell
2002-06-11add a new ioctl to wscons (currently implemented only on sparc64)Matthieu Herrb
`that returns the bus:dev:func PCI id of the device. ok jason@.
2002-06-11more debugging infoNiklas Hallqvist
2002-06-11kill __FUNCTION__Marc Espie
2002-06-11add usb midi support.Nathan Binkert
untested From NetBSD
2002-06-11Add the umct serial driver for netbsd.Nathan Binkert
This currently does not work properly with the device that I have, so I will not add it to GENERIC
2002-06-11abs() is defined by ANSI C -- don't use a macro for it. ok niklas@Thomas Nordin
2002-06-11regenMatthieu Herrb
2002-06-11Add a bunch of VGA cards, from XFree86-current. ok deraadt@Matthieu Herrb
2002-06-11com.c is not a block device, no bdev_decl() for it.Miod Vallat
2002-06-11add stack version #define.Nathan Binkert
From NetBSD requested by pval
2002-06-11Checkpoint my work. Register with bio, implement part ofNiklas Hallqvist
the FreeBSD iir driver ioctl set. Remove vtophys. Some style.
2002-06-11sync urio with NetBSD.Nathan Binkert
2002-06-11Remove redundant endianess conversionsNiklas Hallqvist
2002-06-11use usb_proc_ptr. (From NetBSD)Nathan Binkert
2002-06-10old bouncebuffering api not used anymoreNiklas Hallqvist
2002-06-10more __FUNCTION__ slaughterMarc Espie
2002-06-10new ioctl that reports the current emulation a process uses; needed forNiels Provos
attaching to a running process
2002-06-10syncNathan Binkert
2002-06-10more new usb devices from NetBSDNathan Binkert
2002-06-09Pass in the device name to pcmcia_intr_establish() instead of ""Todd C. Miller
2002-06-09bio is a driver that can delegate ioctls to other drivers whichNiklas Hallqvist
otherwise do not deserve a /dev-node of their own. Will be used for RAID mgmt among other things. Initially only i386 gets the device, but other platforms will follow in a few hours. MAKEDEV stuff coming soon too.
2002-06-09More sc_arpcom fallout.Artur Grabowski
Not tested because all alphas in my reach are dead right now. From Dries Schellekens.
2002-06-09unbreak sparc64 kernel builds after the arpcom change.Artur Grabowski
2002-06-09make gem compile, arpcom is sc_arpcom.Dale Rahn
2002-06-09a step towards consistancy; in general:Todd T. Fries
'struct arpcom foo' -> 'struct arpcom sc_arpcom' ok itojun@
2002-06-09replace epsetfilter() / epsetmedia() with epinit() and only if theFederico G. Schwindt
interface is up. same behavior, plus will reload the mac address. tested by aaron@ and henning@
2002-06-09fix resuming the eso through the powerhook; from marius aamodt eriksen ↵Michael Shalayeff
<marius@gone.crockster.net> via pr2704; from the #40 train
2002-06-09fix the use of "cuz" in the tree; these are all in commentsJason Peel
noticed by aaron@, recommended by deraadt@
2002-06-09Handle out of memory gracefully. ok miod@Thomas Nordin
2002-06-09Handle out of memory gracefully. ok jason@Thomas Nordin
2002-06-08Add hardware TCP/IP checksum offloading support for receive and transmit forAaron Campbell
the 3c905b; deraadt@ ok.
2002-06-08match new amd pciide a'la netbsdChris Cappuccio
hpt was fixed in 1.79
2002-06-08add missing ioctl support for SIOCSIFMTUJason Wright
2002-06-08syncChris Cappuccio
2002-06-08Add AMD 8111 IDEChris Cappuccio
2002-06-08pullup two fixes from netbsdChris Cappuccio
-no longer set southbridge enable bit on ALi rev >=c2 as it is unnecessary and causes rev c4 to hang -in hpt_pci_intr accept interrupt only once IDEDMA_CTL_ACT is turned off, fixes dma errors, lost interrupts, and other problems in hpt370 native mode
2002-06-08kill __PTodd C. Miller
2002-06-08Check result from malloc(9) when using M_NOWAIT. ok niklas@Thomas Nordin
2002-06-08KNF miss in my last commitNiklas Hallqvist
2002-06-08i386 configures devices while at spl0, this causes problems if devicesDale Rahn
attach the interrupt before initializing the hardware to make sure that no interrupts are pending. By adding splusb() any possible interrupts are blocked and will be handled correctly. Discussed with niklas, ok art@
2002-06-08de peeJason Wright
2002-06-08Disable the screen burner if it is enabled and X starts, and reinable uponDale Rahn
leaving X, if it was enabled. looked at by miod, mickey.
2002-06-08Add support for RealTek 8129/8139-based CardBus cards; mostly from NetBSD.Aaron Campbell
deraadt@, jasoni@ ok. Thanks to niklas@ for donating a card for testing.