summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2003-10-27Be sure to always have a valid faulting address when we send a signalMiod Vallat
to a process.
2003-10-27Be sure to flush the entire va space in cpu_switch().Miod Vallat
This used to work because the cmmu code is suboptimal at the moment.
2003-10-27Remove dead code and polish commentsMiod Vallat
2003-10-27Also check if we're going down before scheduling an advertisementRyan Thomas McBride
when we fail to get an mbuf. This too is courtesy of Max Laier.
2003-10-27Actually stop sending advertisements if we're Master and the carp(4)Ryan Thomas McBride
interface is brought down. Bug reported by Max Laier.
2003-10-27atlas does indeed support tagging and only the siop was brokenMichael Shalayeff
2003-10-27disable tagging on hppa and thus effectively restrict to one command at a ↵Michael Shalayeff
time processing; krw@ ok
2003-10-26per deraadt@ request, don't permit insanely large stackgap values.Ted Unangst
2003-10-26Use __packed attribute to cleanup the '#define XXX' stuff in here.Anil Madhavapeddy
Also stops the struct having a double ;; in variable declarations, which breaks a few non-gcc parsers. millert@ ok
2003-10-26add a __packed #define to map to __attribute__((__packed__)) on gcc>=2.7Anil Madhavapeddy
2003-10-26Uhm, disable debugging my default, even if it probably is good toDale Rahn
run with it enabled for now.
2003-10-26Add line for wi@usb, currently commented out, for development and testing only.Dale Rahn
2003-10-26Driver for PRISM 2.5/3 based (wifi) USB adapters. This is a work in progress,Dale Rahn
it does not yet handle bulk data copies or hostap mode. Only one model currently supported, however driver may support other PRISM based adapters. ok millert@ fgsch@
2003-10-26syncDale Rahn
2003-10-26Add netgear MA111 USB wifi.Dale Rahn
2003-10-26More ansi/knf missed the first time around.Dale Rahn
2003-10-26Oops, I'm on drugs. Revert and blame gremlins for the state of my tree.Miod Vallat
2003-10-26typos from Jared Yanovich;Jason McIntyre
2003-10-26Unbrek after recent wdc changes.Miod Vallat
2003-10-26Print error registers values in debug message after reset too.Alexander Yurchenko
2003-10-26Device reset improvements:Alexander Yurchenko
- put the reset protocol itself in the separate function __wdcdo_reset() so we don't need anymore to keep in sync two reset code paths; - change the reset protocol to something like FreeBSD and NetBSD do, this fixes slave ATA drive detect with weird ATAPI master (reported by fgsch@); Discussed with costa@. Tested by me, fgsch@, millert@, canacar@.
2003-10-25Build state search indexes directly on pf_state instead of pf_tree_node.Ryan Thomas McBride
This saves more than 30% memory on state entries, and simplifies the state insertion and removal code as well. NOTE: This changes the pf API; userland tools must be updated to match. ok henning@ dhartmei@
2003-10-25"goto bad" on error with carp_input, instead of simply returning.Ryan Thomas McBride
Fixes leakage of mbufs on error. Pointed out by Max Laier.
2003-10-25Support the TI1410 Cardbus bridge found in some apple laptops. ok brad@Dale Rahn
2003-10-25additional hash for local port; improves speed of implicit bindMarkus Friedl
from >1000K cpu cycles to 20-30K for 18000 sockets on i386; test+feedback by Claudio Jeker; ok itojun@; [make sure you rebuild netstat/systat, too]
2003-10-25precompute most of hmac; fix size for md; ok mcbrideMarkus Friedl
2003-10-24Remove dead code.Miod Vallat
2003-10-24If cons_backlight_available is not set, cons_brightness will not be valid,Dale Rahn
return -1 to indicate so. same as WSDISPLAYIO_PARAM_BACKLIGHT.
2003-10-24IPKDB has never been supported in OpenBSD/powerpc/macppc delete thisDale Rahn
old unused code. Remove very old 'where' debugging references. ANSI a previously missed function.
2003-10-24style(9)ed panics, from tom cosgrove.Ted Unangst
2003-10-24refactor stackgap sysctl. prompted by a bug report from Michael Coulter.Ted Unangst
ok deraadt@ markus@
2003-10-24No \n in panic() messages...Miod Vallat
2003-10-24No need to have several implementations of {read,write}_eflags(),Alexander Yurchenko
put it to cpufunc.h. ok weingart@ tedu@
2003-10-24Fix write filter blocking when no filter was set. FixesCan Erkin Acar
problems with dhcp. ok frantzen@ krw@ deraadt@
2003-10-23We want to hash the whole md, not just the size of the pointer.Ryan Thomas McBride
Found testing CARP between sparc and sparc64.
2003-10-23Correctly recover from bus error during guarded_access() on 88110.Miod Vallat
2003-10-23No dependency on NDART needed here.Miod Vallat
2003-10-23Maybe fixing typos will unbore me.Miod Vallat
2003-10-23- delay reading the disklabel for floppies until after we're sure it'sFederico G. Schwindt
the boot device. this fixes a delay (sometimes very long) if the bios correctly reports a floppy but it's unplugged. - bump version. original idea from mdw@, tested by nick@, toby@ ok.
2003-10-22Search for the '/backlight' node to determine if backlight control isDale Rahn
available instead of looking for the backlight-control attribute. Fixes backlight control on some apple laptops.
2003-10-22from netbsd:Ted Unangst
Fix a panic that occurred when trying to traverse a corrupt msdosfs filesystem. With this particular corruption, the code in pcbmap() would compute an offset into an array that was way out of bounds, so check the bounds before trying to access and return an error if the offset would be out of bounds.
2003-10-22Add locking and write filtering to bpf descriptors.Can Erkin Acar
Locking prevents dangerous ioctls such as changing the interface and sending signals to be executed by an unprivileged process. A filter can also be applied to packets injected through a bpf descriptor. These features allow programs using bpf descriptors to safely drop/seperate privileges. ok frantzen@ henning@ mcbride@
2003-10-22switch from keyed sha1 to hmac-sha1; ok mcbride@Markus Friedl
2003-10-22one more 3c990 variant; tested by Niko Itajarvi <niko.itajarvi@satabaana.net>Henning Brauer
2003-10-22syncHenning Brauer
2003-10-22another txpHenning Brauer
2003-10-22typos from Tom Cosgrove;Jason McIntyre
2003-10-22typos from Tom Cosgrove;Jason McIntyre
2003-10-22typo from Tom Cosgrove;Jason McIntyre
2003-10-22typos from Tom Cosgrove;Jason McIntyre