summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2007-05-31convert to new .Dd format;Jason McIntyre
2007-05-31enable all debugging messages by default if the driver is compiled withReyk Floeter
MYX_DEBUG
2007-05-31fix the myx_write functionReyk Floeter
2007-05-31Fix redundancy for RAID 1. Now one can pull a disk and continue running.Marco Peereboom
help from drahn
2007-05-31include files.bluetooth here; ok gwkUwe Stuehler
2007-05-31Move the state id and creatorid (used mainly by pfsync) into struct pf_state.Ryan Thomas McBride
ok henning@
2007-05-31An SDIO Bluetooth driver, only initial bits and therefore not enabled yetUwe Stuehler
2007-05-31add myx(4)Reyk Floeter
2007-05-31erroneously EINVAL is always reported where the functionDavid Gwynne
actually produces the real errno for the problem. currently for kernel memory allocation failures bioctl would return EINVAL that makes no sense. another diff from mickey
2007-05-31if poking the controller fails for whatever reason the drives'David Gwynne
sensor status will still be marked as ok (or etc..) thus erroneously reporting value as valid. this nice diff was from mickey
2007-05-31import the Myricom Myri-10G firmwareReyk Floeter
2007-05-31initial bits of a new driver for the Myricom Myri-10G Lanai-Z8E 10GbReyk Floeter
Ethernet chipset. not working yet. ok dlg@
2007-05-31Zap a bunch of unused VT_* tags.Thordur I. Bjornsson
ok tedu@,pedro@
2007-05-31remove the scsi task thread, and replace it with the system workq.David Gwynne
"just :wq and do it" tedu@
2007-05-31Remove more #ifdef/#endif's that checked for other bsds. No binaryMarc Balmer
change, no functionality change. ok jsg
2007-05-31add an interface for work queues run from a kernel thread.David Gwynne
this type of code is implemented many times already in the kernel, this is a generic version of all those replicated code bases. originally from tedu@ ok tedu@ tom@ deraadt@
2007-05-31Add a comment so this is identical to the i386 versionTom Cosgrove
2007-05-31Use 12 and 16 byte read/write commands as required by the size/lengthKenneth R Westerback
of the I/O being attempted. Throw in a comment typo fix to properly refer to sectors and not blocks. ok marco@
2007-05-31Make powernow-k8 on amd64 and i386 use the _PSS object from acpi toGordon Willem Klok
retreive p_state data as spelled out in the amd64 bios and kernel developers guide. This code is still a little rough around the edges but has been tested by myself on a tyan machine and by phessler at theapt dot org on an HP DL145. This diff also takes a first stab and cleaning up the acpicpu dmesg spam. ok tedu, marco
2007-05-31Remove some #ifdef {Free|Net}BSD/#endif to make the code more readable.Marc Balmer
ok jsg
2007-05-31use the right capitalization for `MBus' and `SBus'Igor Sobrado
ok jmc@
2007-05-31remove some silly casts, no real changeTed Unangst
2007-05-31Standardize on -1 as the error return value forKenneth R Westerback
bounds_check_with_label. All callers check for <= 0, so no functional change. Feedback from miod@. ok weingart@
2007-05-31Add SDIO card interrupt handling codeUwe Stuehler
2007-05-31- zap unnecessary rv variableAlexander von Gernler
- sprinkle an XXX to remember that we have to supply a serious key later ok tedu@
2007-05-31Unbreak pf.c compilation on gcc 2.95 architectures. Found by todd@Ryan Thomas McBride
2007-05-31correct misspelled mail address in copyright statement, marco@ okAlexander von Gernler
2007-05-31Kill old, no longer necessary kludge to try fooling readdisklabel()Kenneth R Westerback
into using DOS geometry by calling it twice. And don't ignore the drive state if readdisklabel() returns a non-NULL value. ok weingart@ grange@
2007-05-31NFSv2 cannot cope with a big number of vnodes, so revert to NPROC-basedPedro Martelletto
calculation until the problem is fixed, okay beck@ art@
2007-05-31Add some context and call hci_enable from this new context, also add anGordon Willem Klok
extra usb dev that we can match on. ok uwe
2007-05-31First step of rearranging pf's state table internals...Ryan Thomas McBride
- Split pf_state into pf_state (used for tracking connection information), and pf_state_key (used for searching the state table) - Use pfsync_state in the ioctl for userland access to the state table. This will sheild userland somewhat from future changes. ok henning@ toby@ pyr@
2007-05-31Config file and machine-independent Bluetooth codeUwe Stuehler
ok gwk
2007-05-31oops, typoOtto Moerbeek
2007-05-31This is not the buffer you are looking for,Thordur I. Bjornsson
vintage 6 year old NFS bug. ok beck@, looked at three times by art@
2007-05-31Be consistant and use b_cylinder when saving the cylinder number forKenneth R Westerback
disksort, not b_resid. b_cylinder is defined to be 'b_resid' so no functional change. ok deraadt@
2007-05-31add Gunze USB Touch Panel supportRobert Nagy
2007-05-31regenRobert Nagy
2007-05-31add Gunze USB Touch PanelRobert Nagy
2007-05-31macros to get the large sizes and offsets from a v1 label. ok deraadt@Otto Moerbeek
2007-05-31only call em_init() when IFF_UP is set, not unconditional.Henning Brauer
prevents another round of autonegotiation (and thus, few seconds outage) with every address change that had to be reintroduced a few revs ago because of the watchdog timeout problems people were seeing. this gives the benifit from both with the problems of neither ;) tested by daniel polak on a system that saw the watchdog timeouts before ok theo
2007-05-311000 != 0x1000 (4096)Chris Kuethe
Bring the flow control delay time down to what the comment says it should be. By using a smaller flow control pause time when the buffer isn't full, my em(4) goes about 20Mbps faster.
2007-05-31Fix dmesg output. -mojMats O Jansson
2007-05-31extend the sun disklabel format to contain filesystem types. also,Theo de Raadt
store the information fsck needs. this allows us to create raid partitions, nicely, of course. ok miod todd krw
2007-05-30Add support for iBook G4. -mojMats O Jansson
2007-05-30Q: How did _dmamap_sync() work before?Miod Vallat
A: It didn't.
2007-05-30Make sure that if there are staggered syncs that they complete successfullyMarco Peereboom
before detaching the scsi bus. ok dlg
2007-05-30Missed one minaddr initialization before invoking uvm_km_suballoc().Miod Vallat
2007-05-30More cpuinfo vs _KERNEL fallback.Miod Vallat
2007-05-30Remove ugly print and don't panic when doing a partial bringup.Marco Peereboom
2007-05-30Sync after the metadata is saved.Marco Peereboom