Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-05-31 | Well, whatever the bug was, it does not seem to appear anymore. | Artur Grabowski | |
Remove the workaround. (krw tried to reproduce many, many times) | |||
2007-05-31 | switch wskbd hotkeys over to workq. this eliminates quite a bit of code, | Ted Unangst | |
so remove the option too. if you have audio and wskbd, you have hotkeys. ok dlg | |||
2007-05-31 | further improvement of the bus space i/o. firmware loading, booting, | Reyk Floeter | |
and card initalization works now. thanks to dlg@ who pointed me to the fact that bus_space_write_region_N and bus_space_write_raw_region_N use count of elements vs. size of buffer arguments. | |||
2007-05-31 | remove p_lock from struct proc; unused debug goo for lockmgr, | Thordur I. Bjornsson | |
wich gets set and never checked etc... ok art@,tedu@ | |||
2007-05-31 | Minor bounds_check_with_label nits. | Kenneth R Westerback | |
1) Use local variable 'labelsector' not 'labelsect' to be consistant (hp300, mac68k, mvme68k, mvme88k, vax). 2) Having checked for sz == 0, the next check needs only be sz < 0, not <= 0. (mac68k, mvme68k, mvme88k) 3) Use lp->d_partitions + DISKPART(dev), rather than lp->d_partitions[DISKPART(dev)] (hp300). Assuming no typos there should be no functional change. | |||
2007-05-31 | Redo the syncer to be a little smarter on interaction while shutting down | Marco Peereboom | |
the system help and ok tedu | |||
2007-05-31 | ckuethe found i missed a file in the workq update. my bad | Ted Unangst | |
2007-05-31 | Forgot to commit the changes to this file with the rest of the ELF32+64 | Tom Cosgrove | |
pieces. Since this is where the "boot both ELF32 and ELF64" behaviour is turned on for i386, it is quite important. Bump version numbers too. Found by ckuethe@; thanks. | |||
2007-05-31 | switch the flags argument to the front, requested by art | Ted Unangst | |
ok dlg | |||
2007-05-31 | zap the vm_amap am_l simplelock, and amap_{lock/unlock} macros for | Thordur I. Bjornsson | |
simple_{lock/unlock}. ok art@ | |||
2007-05-31 | unlink the right state, ryan ok | Henning Brauer | |
2007-05-31 | kill some ifdef noyet code, de-static functions (makes my traces nicer), | Thordur I. Bjornsson | |
some comments and style. ok tedu@ | |||
2007-05-31 | zap nfs_cltpsock; Unused since NQNFS died. | Thordur I. Bjornsson | |
ok beck@ | |||
2007-05-31 | KNF, whitespace and comment rectification to make all | Kenneth R Westerback | |
bounds_check_with_label() routines as identical as possible without changing any code. Code nits and adjustments to come. | |||
2007-05-31 | use the right capitalization for `MBus' | Igor Sobrado | |
ok'd some days ago by jmc@ | |||
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-05-31 | enable all debugging messages by default if the driver is compiled with | Reyk Floeter | |
MYX_DEBUG | |||
2007-05-31 | fix the myx_write function | Reyk Floeter | |
2007-05-31 | Fix redundancy for RAID 1. Now one can pull a disk and continue running. | Marco Peereboom | |
help from drahn | |||
2007-05-31 | include files.bluetooth here; ok gwk | Uwe Stuehler | |
2007-05-31 | Move the state id and creatorid (used mainly by pfsync) into struct pf_state. | Ryan Thomas McBride | |
ok henning@ | |||
2007-05-31 | An SDIO Bluetooth driver, only initial bits and therefore not enabled yet | Uwe Stuehler | |
2007-05-31 | add myx(4) | Reyk Floeter | |
2007-05-31 | erroneously EINVAL is always reported where the function | David 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-31 | if 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-31 | import the Myricom Myri-10G firmware | Reyk Floeter | |
2007-05-31 | initial bits of a new driver for the Myricom Myri-10G Lanai-Z8E 10Gb | Reyk Floeter | |
Ethernet chipset. not working yet. ok dlg@ | |||
2007-05-31 | Zap a bunch of unused VT_* tags. | Thordur I. Bjornsson | |
ok tedu@,pedro@ | |||
2007-05-31 | remove the scsi task thread, and replace it with the system workq. | David Gwynne | |
"just :wq and do it" tedu@ | |||
2007-05-31 | Remove more #ifdef/#endif's that checked for other bsds. No binary | Marc Balmer | |
change, no functionality change. ok jsg | |||
2007-05-31 | add 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-31 | Add a comment so this is identical to the i386 version | Tom Cosgrove | |
2007-05-31 | Use 12 and 16 byte read/write commands as required by the size/length | Kenneth 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-31 | Make powernow-k8 on amd64 and i386 use the _PSS object from acpi to | Gordon 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-31 | Remove some #ifdef {Free|Net}BSD/#endif to make the code more readable. | Marc Balmer | |
ok jsg | |||
2007-05-31 | use the right capitalization for `MBus' and `SBus' | Igor Sobrado | |
ok jmc@ | |||
2007-05-31 | remove some silly casts, no real change | Ted Unangst | |
2007-05-31 | Standardize on -1 as the error return value for | Kenneth R Westerback | |
bounds_check_with_label. All callers check for <= 0, so no functional change. Feedback from miod@. ok weingart@ | |||
2007-05-31 | Add SDIO card interrupt handling code | Uwe Stuehler | |
2007-05-31 | - zap unnecessary rv variable | Alexander von Gernler | |
- sprinkle an XXX to remember that we have to supply a serious key later ok tedu@ | |||
2007-05-31 | Unbreak pf.c compilation on gcc 2.95 architectures. Found by todd@ | Ryan Thomas McBride | |
2007-05-31 | correct misspelled mail address in copyright statement, marco@ ok | Alexander von Gernler | |
2007-05-31 | Kill 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-31 | NFSv2 cannot cope with a big number of vnodes, so revert to NPROC-based | Pedro Martelletto | |
calculation until the problem is fixed, okay beck@ art@ | |||
2007-05-31 | Add some context and call hci_enable from this new context, also add an | Gordon Willem Klok | |
extra usb dev that we can match on. ok uwe | |||
2007-05-31 | First 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-31 | Config file and machine-independent Bluetooth code | Uwe Stuehler | |
ok gwk | |||
2007-05-31 | oops, typo | Otto Moerbeek | |
2007-05-31 | This 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-31 | Be consistant and use b_cylinder when saving the cylinder number for | Kenneth R Westerback | |
disksort, not b_resid. b_cylinder is defined to be 'b_resid' so no functional change. ok deraadt@ |