summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2006-08-25Disable interrupts during the attach of UHCI and EHCI controllers. IfChristopher Pascoe
we do not, a shared interrupt which arrives while we are initialising the host controller may cause a NULL pointer dereference. tested joris, ok! dlg
2006-08-25fill in the controllers name in the inq ioctl. spotted by deraadt@David Gwynne
2006-08-25don't need to clear if_timer during attach.Brad Smith
2006-08-25only write to the RMAC_CFG_KEY register for the Xframe chipset.Brad Smith
2006-08-25Allow the driver to compile with MSK_DEBUG.Brad Smith
From riz@NetBSD
2006-08-24Add some first PCI glue.Marcus Glocker
2006-08-24Add a few printfs to slow down SGEC initialization - somehow this appearsMiod Vallat
to be necessary on VXT2000. While large SDELAY are not enough. Someone will probably find my lack of faith in the SGEC code disturbing.
2006-08-24missing newline in a printfTheo de Raadt
2006-08-24Off-by-one in ``dmesg'' command; it takes a vax to find such bugs.Miod Vallat
2006-08-24Same change as on amd64. Don't propogate low level errors to userland.Gordon Willem Klok
2006-08-24Fix a few more cases where we propogate low level errors to userland.Gordon Willem Klok
found by niallo.
2006-08-24Check for a selftest failure after reset in the correct register.Miod Vallat
2006-08-24Enable the appropriate serial transmitters in VXT2000 serial routines, thisMiod Vallat
makes output work when the VXT2000 is not configured for serial console.
2006-08-24s/IEEE80211_MTU_MAX/IEEE80211_MAX_LEN/ in my previous commit.Damien Bergamini
2006-08-24dont print debug output when the scsi completion path returns withDavid Gwynne
something other than SCSI_OK. for example, SCSI_SENSE is returned when the device has sense data. this code was left in to help debug problems in the field, but noones had any problems with mpi apart from it being too chatty when a device returns sense data...
2006-08-24show the firmware revision of the disks.David Gwynne
2006-08-24report the size of the disks and volumes correctly.David Gwynne
2006-08-24Be sure to print device name in debug messages, removeJonathan Gray
a few surplus dmesg messages while here.
2006-08-24Add support for HMACs to the via c3/c7 crypto driver. For now, weHans-Joerg Hoexer
just use the software implemented algorithms. This is needed to make this driver useable for ipsec. ok deraadt@
2006-08-24when shutting down, wrap the variable manipulation in splusb() so weirdJason Wright
stuff doesn't happen if we're interrupted.
2006-08-24too much copy and paste. report raid 1 correctly.David Gwynne
2006-08-24ignore passthru volumes, struct bioc_vol isnt smart enough to know whatDavid Gwynne
they are.
2006-08-24figure out the raid level of the volume.David Gwynne
2006-08-24oops, im unlocking too oftenDavid Gwynne
2006-08-24a start at the BIOC INQ, VOL, and DISK ioctls for fetching informationDavid Gwynne
about the disks that are configured on the controller. so far this fetches the right volumes and disks in each volume, but doesnt properly fill in the status, the size of both the volumes and disks, the type of raid, or the firmware version of the physical disks.
2006-08-24regenGordon Willem Klok
2006-08-24Add vendor "miro computer products AG" and device MiroVIEDO DC20 plusGordon Willem Klok
three others found at pcidatabase.com.
2006-08-24regenBrad Smith
2006-08-24add the Epson Perfection 1670 and Stylus CX3650.Brad Smith
From FreeBSD
2006-08-24Move d_secpercyl test to after setting default size. Missed in earlierKenneth R Westerback
adjustment of other disksubr.c's.
2006-08-23- fall back to 1Mbps if tx rate is returned as zero. avoids divide by zero. ↵Niall O'Higgins
should never happen, but sometimes it does on my amd64. ok damien@
2006-08-23Protect scsi_done() with splbio(), discussed with and okay dlg@, marco@Pedro Martelletto
and fgsch@, uwe@ time-out :(
2006-08-23the maximum MTU allowed for IEEE802.11 is 2290 which is greater thanDamien Bergamini
MCLBYTES (usually 2048). allocate tx xfer buffers of IEEE80211_MTU_MAX instead of MCLBYTES. rx buffers are still limited to MCLBYTES though.
2006-08-23in rum_rxeof(), don't check xfer length against IEEE80211_MIN_LEN sinceDamien Bergamini
the CRC is not included in the xfer. check against sizeof(struct ieee80211_frame_min) instead.
2006-08-23regenBrad Smith
2006-08-23add SiS 191 Gig Ethernet PCI id.Brad Smith
2006-08-23Add Nova Tech NV-902W, and mention another Zinwell ural(4) device.Jonathan Gray
2006-08-23regenJonathan Gray
2006-08-23Add another ural(4) device, Nova Tech NV-902W.Jonathan Gray
2006-08-22Fix possible NULL deref from Alexey V. Vatchenko <avv@mail.zp.ua>Marco Peereboom
2006-08-22More register defines.Miod Vallat
2006-08-22Wrap dmesgMiod Vallat
2006-08-22Clear sti display on console attach, now that the bootloader leaves usMiod Vallat
with scribbles around; ok mickey@
2006-08-22Implement pmap_steal_memory() if HAVE_PMAP_DIRECT; no change except forMiod Vallat
faster uvm initialization.
2006-08-22provide some smp locking around protection fault trap from user too; ↵Michael Shalayeff
originally from niklas; been in snaps; tested on various smp boxen; niklas@ok
2006-08-22Same change as on i386: use a case-insensitive comparison when checkingTom Cosgrove
for bogus SMBIOS strings. Fixes identification of millert@'s system.
2006-08-22remove the check for the number of heads reported by the BPB altogether,Nikolay Sturm
there are devices reporting zero heads; we don't use this value anyways ok pedro, reported by Igor Grabin <violent at death.kiev.ua>
2006-08-22Use a case-insensitive comparison when checking for bogus SMBIOSTom Cosgrove
strings. Fixes identification of millert@'s system. ok gwk@
2006-08-22use LIST_FOREACH; from FreeBSDMartin Reindl
2006-08-22Very initial import to support the PrismGT chipset (FullMAC for now).Marcus Glocker
ok deraadt@