summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2008-05-24- Enable userland to read(2) video stream from /dev/video.Marcus Glocker
- Prepare for mmap(2).
2008-05-24SDEV_UMASS devices skip the mode page dance to set blksize. So initializeKenneth R Westerback
blksize to 0 to avoid confusing garbage values with useful info. Noticed by jolan@.
2008-05-24Attach to "FJSV,su", which is the name used for serial ports on the SPARCMark Kettenis
Enterprise M4000/M5000/M8000/M9000.
2008-05-24iLet's see if this also works for Oberon (the PCIe bridge found on the SPARC ↵Mark Kettenis
Enterprise M4000/M5000/M8000/M9000).
2008-05-24Strip off Ethernet CRC; makes dhclient shut up.Mark Kettenis
2008-05-24Increase the number of segments in a dma map to make sure a packet fits.Mark Kettenis
2008-05-24Use MAC address passed by the firmware.Mark Kettenis
2008-05-24Configure the media when brining up an interface.Mark Kettenis
2008-05-24Sync the ATI IXP200 PCI id.Brad Smith
2008-05-24regenBrad Smith
2008-05-24Tweak some of the existing ATI IXP entries for more consistentBrad Smith
naming and add some missing IXP300 entries.
2008-05-24regenBrad Smith
2008-05-24There should be spaces between "product" and the vendor name.Brad Smith
2008-05-24regenerateChris Kuethe
2008-05-24USB LCD+keyboard panelChris Kuethe
2008-05-24And another Fujitsu Gigabit Etherenet card that is a bge(4) in disguise.Brad Smith
2008-05-24regenBrad Smith
2008-05-24Add Fujitsu PW008GE4Brad Smith
2008-05-24Also recognize the Schneider & Koch SK-9821/SK-9843 adapters fromBrad Smith
Fujitsu.
2008-05-24regenBrad Smith
2008-05-24Add more specific PCI ids for Schneider & Koch (SysKonnect) SK-9821/SK-9843Brad Smith
OEM adapters from Fujitsu.
2008-05-24Store the model and revision information in the appropriate softcBrad Smith
fields that already exist and reference those fields when necessary instead of reading the registers everytime. ok kettenis@
2008-05-24Match serial devices on PRIMEPOWER 650.Mark Kettenis
2008-05-23Fix detection of 10baseT on rev 2 and up.Mark Kettenis
ok brad@
2008-05-23Another Fujitsu Gigabit Etherenet card that is a bge(4) in disguise.Mark Kettenis
2008-05-23regenMark Kettenis
2008-05-23Add Fujitsu PW008GE5.Mark Kettenis
2008-05-23update sem_otime on semop(); reported by mkbucc AT gmail.comDamien Miller
ok deraadt@ millert@
2008-05-23do not use swap generic; these should specifically choose rd0aTheo de Raadt
spotted by merdely, realization by miod
2008-05-23tputchar() can put characters on the tty output queue if clocal is set,Theo de Raadt
fixing (status) ^T support on some ttys without carrier ok pyr
2008-05-23Forgot this one. Wrap a printf() into MPLS_DEBUG sinceThordur I. Bjornsson
MPLS_LABEL_GET() is only available #ifdef MPLS_DEBUG
2008-05-23Make this compile again, by adding a struct proc * argumentThordur I. Bjornsson
to the usrreq's. (Both MPLS and NETATALK are disabled in GENERIC).
2008-05-23Deal with the situation when TCP nfs mounts timeout and processesThordur I. Bjornsson
get hung in nfs_reconnect() because they do not have the proper privilages to bind to a socket, by adding a struct proc * argument to sobind() (and the *_usrreq() routines, and finally in{6}_pcbbind) and do the sobind() with proc0 in nfs_connect. OK markus@, blambert@. "go ahead" deraadt@. Fixes an issue reported by bernd@ (Tested by bernd@). Fixes PR5135 too.
2008-05-23- remove USER_LDT, it was never in a state where it would copile, nor willJasper Lievisse Adriaanse
we support i386-compat mode on amd64. agreed by beck@, dlg@, kettenis@ ok deraadt@, tom@
2008-05-23Bye bye awi(4). No net80211 love, uses its own WEP code and has not workedBrad Smith
properly in 8.5 years so just garbage collect the driver. ok damien@ deraadt@
2008-05-23Make GENERIC.MP work on sun4us too.Mark Kettenis
2008-05-23Simplify the combination use of pci_mapreg_type()/pci_mapreg_map() asBrad Smith
suggested by dlg@ awhile ago. ok dlg@
2008-05-23Make rd act more like a 'normal' disk device, allowing the elimination ofKenneth R Westerback
'fakerootdev' hackery. This allows us to bring back miod@'s r1.70 subr_disk.c change to avoid the GENERIC dance when rootdev has been initialized. This in turn re-enables raidframe root devices. Add a nice panic if rootdev can't be initialized, displaying the name of the device that didn't work rather than just blowing up by de-referencing NULL. ok deraadt@
2008-05-22Quick hack to make non-MULTIPROCESSOR kernels work by restrictingMark Kettenis
interrupt vectors to 11 bits.
2008-05-22zap useless comment block with no content.Jasper Lievisse Adriaanse
ok krw@
2008-05-22Restrict interrupt vectors to 11 bits. Needed to make sun4us work.Mark Kettenis
2008-05-22use PR_ZERO instead of calling bzero directlyThordur I. Bjornsson
after pool_get(); ok beck@
2008-05-22ANSI function definitions.Brad Smith
ok dlg@
2008-05-22syncTheo de Raadt
2008-05-22simplify (less bytes in media)Theo de Raadt
2008-05-22never schedule a timer for a negative time, if in the past schedule short delay.Dale Rahn
please commit deraadt@
2008-05-22More timeout(9) usage cleaned up.Michael Knudsen
ok claudio
2008-05-22- ises(4) was removed some time ago, zap it here too.Jasper Lievisse Adriaanse
ok krw@
2008-05-22Use LIST_FOREACH() instead of handrolling.Thordur I. Bjornsson
From: Pierre Riteau pierre.riteau_att_gmail.com OK miod@
2008-05-22kill 2 bogus ARGUSED and use the LIST_FOREACH() macroThordur I. Bjornsson
instead of handrolling... ok miod@