summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2007-06-18this is the sgi disklabel, mips64 is not the sameTheo de Raadt
2007-06-18this is the sgi disksubr, not some mythical "all mips64 architectures can ↵Theo de Raadt
use it" balony
2007-06-18Don't use cpu_disklabel as local storage. Use local variables and discardKenneth R Westerback
the unneeded info when done with it. Another empty struct cpu_disklabel. ok deraadt@
2007-06-18Don't use cpu_disklabel as local storage. Use local variables and discardKenneth R Westerback
the unneeded info when done with it. Another empty struct cpu_disklabel. ok deraadt@
2007-06-18fix pasto'sJasper Lievisse Adriaanse
from janjaap@stack.nl
2007-06-18avoid modification race in DIOCRLDINFO; ok krw miodTheo de Raadt
2007-06-18Implement DIOCRLDINFO, DIOCGPDINFO and DIOCGPART. Tweak DIOCGDINFO toKenneth R Westerback
avoid unnecessary rdgetdisklabel() call. requested by & ok deraadt@
2007-06-18Use a shorter form to load XKPHYS constants in .S code, shaves a few textMiod Vallat
bytes, no functional change.
2007-06-18Disable instruction reordering around cpl assignments.Miod Vallat
2007-06-18delete comment above cpu_disklabel that is not neededTheo de Raadt
2007-06-18move comment to right placeTheo de Raadt
2007-06-18regenMartin Reindl
2007-06-18another geforce variantMartin Reindl
2007-06-18KNF after macro removals, no binary change.Marc Balmer
ok dlg.
2007-06-18KNF, especially re-indent prototypes. No binary change.Marc Balmer
ok dlg.
2007-06-18Use the right interface id when iterating over the control interfaceMarc Balmer
endpoints. bug found and patch provided by Marc Winiger <mw@msys.ch>. ok dlg.
2007-06-18split out dpme disklabel reading, simplifying things significantlyTheo de Raadt
and making it look a lot more like other architectures; tested by myself and drahn and gwk
2007-06-18ansify/de-register.Jasper Lievisse Adriaanse
no binary change
2007-06-18remove newline in dmesg that slipped in in last commitJacob Meuser
go ahead robert@
2007-06-18simplify error return case from writedisklabel(), tooTheo de Raadt
2007-06-18simplify error return case from writedisklabel()Theo de Raadt
2007-06-18simplify error return case from writedisklabel()Theo de Raadt
2007-06-18more comments that are differentTheo de Raadt
2007-06-18using same words in similar code sequences is goodTheo de Raadt
2007-06-18this XXX has no place here anymore. extended partition label writingTheo de Raadt
might even work now (ie. if it works, it is because finding the label location is now MI code shared for the read & write paths)
2007-06-18include not neededTheo de Raadt
2007-06-18msg is already gauranteed to be NULLTheo de Raadt
2007-06-17ansify/de-registerJasper Lievisse Adriaanse
ok miod@
2007-06-17ansify/de-registerJasper Lievisse Adriaanse
ok miod@
2007-06-17add back missing bcopy & break, got lost when removing arcnet.Henning Brauer
spotted by Mike Belopuhov <mkb@crypt.org.ru>
2007-06-17ansify/de-register.Jasper Lievisse Adriaanse
no binary change
2007-06-17de-registerJasper Lievisse Adriaanse
ok thib@
2007-06-17Add background SCAN command.Marcus Glocker
2007-06-17de-registerJasper Lievisse Adriaanse
ok henning@
2007-06-17ansify/de-registerJasper Lievisse Adriaanse
ok miod@
2007-06-17make it compileMartin Reindl
2007-06-17Pass the device a better rate set.Marcus Glocker
2007-06-17Eliminate a few straggling 'labelsector' field declarations fromKenneth R Westerback
cpu_disklabel's. 'labelsector' is not used anywhere according to grep. 'go for it' deraadt@
2007-06-17Get interrupt information from PDC and use it to program the IO SAPIC.Mark Kettenis
Needed to make edge triggered interrupts work.
2007-06-17We can not consider the first sti region as always mapped, since on pciMiod Vallat
cards it is no longer the rom image. This lets sti@pci work on non-dino bridges. Found by and ok kettenis@
2007-06-17Make sure to pass valid extended initialization structure pointers inMiod Vallat
sti_init(), for recent sti proms require them. Also, return a meaningful error value. ok kettenis@ mickey@
2007-06-17Disable memory above 256MB for now, it triggers bugs (probably related toMiod Vallat
cache operations).
2007-06-17Repair a couple of printfs.Miod Vallat
2007-06-17Coerce this into compiling.Miod Vallat
2007-06-17Add first shoot of SCAN command.Marcus Glocker
2007-06-17Some alpha (or SRM) designs use level 3 for i/o interrupts, instead of theMiod Vallat
more commonly encountered level 4. Do not complain in splassert() in this case (this is similar to the older vsbus vax machines workaround).
2007-06-17Add a new capability flag IEEE80211_C_QOS indicating that the driverDamien Bergamini
supports QoS. Add a new flag IEEE80211_F_QOS indicating whether QoS is enabled or not. Add a callback to notify drivers that AC parameters have changed in the QBSS. Drivers implementing QoS should define this callback and update their EDCA settings accordingly.
2007-06-17keep track of the Tx/Rx sequence numbers for each TID in theDamien Bergamini
ieee80211_node structure. add a flag to indicate whether a STA is a QSTA or not.
2007-06-17- remove two unused structuresDamien Bergamini
- add three new information elements identifiers: IEEE80211_ELEMID_QBSS_LOAD : QBSS Load IEEE80211_ELEMID_EDCA_PARAMS: EDCA Parameter Set IEEE80211_ELEMID_QOS_CAP : QoS Capability
2007-06-17No longer include usb_port.h, all macros have been converted to their CMarc Balmer
counterparts. Revert usb_port.h to it's original form with all the macro definitions to ease the import of new drivers from other BSDs. after discussion with deraadt; feedback from mk, miod, jsg, dlg. ok dlg.