summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2004-02-24Remove redundant logging from pf_test_other().Ryan Thomas McBride
ok henning@ cedric@
2004-02-24KNFRyan Thomas McBride
2004-02-24FIFO fixes adapted from FreeBSD:Todd C. Miller
o use different wchan string for reading and writing o make O_RDWR not block forever o remove some useless casts o reorganize the normal, blocking code path (ie: O_NONBLOCK not set) o fix select/poll semantics wrt EOF. With these changes we pass the FIFO regress. OK tedu@
2004-02-24repair kvm; deraadt@ okMichael Shalayeff
2004-02-24syncAnil Madhavapeddy
2004-02-24add evil nvidia nforce3Anil Madhavapeddy
deraadt@ ok
2004-02-23slinear to alaw converters; from netbsd, via jakemsr@jakemsr.comTheo de Raadt
2004-02-23syncTheo de Raadt
2004-02-23symbios/lsi have a megaraid nowTheo de Raadt
2004-02-23Make sure we allow for the time when check_pty has not yet been calledBob Beck
before we get invoked, by making sure getfree thinks an unused and unallocated pt_softc entry is actually free rather than following NULL. ok cedric@
2004-02-23Switch to the 3 arg version of userret to more closely match other OpenBSDDale Rahn
architectures.
2004-02-23prevent backward jumps; pls@egsys.hu; ok canacar, deraadtMarkus Friedl
2004-02-23the consdev pass from boot and a cnset() in the kernel seems to be a bit ↵Michael Shalayeff
premature and cause problems
2004-02-23get use of NX; partially from netbsd; passes the regress; deraadt@ okMichael Shalayeff
2004-02-23provide _barrier method w/ {l,s,m}fence instructionsMichael Shalayeff
2004-02-23fix a pastoMichael Shalayeff
2004-02-23sync of pmap_update() calls with NetBSD. pmap_update is defined away onDale Rahn
all architectures but arm, where it is needed.
2004-02-23add a comment on set/clr 64bit opsMichael Shalayeff
2004-02-23Remove boot warning about todclock not found it attached at dsrtc0.Dale Rahn
2004-02-23remove file no longer used due to previous commit.Dale Rahn
2004-02-23switch to copying, with very slight modifification, i386/disksubr.c insteadDale Rahn
of attempting to making a shareable version of the code.
2004-02-23avoid touching out-of-bound memory if len == 128.Jun-ichiro itojun Hagino
Ted Unangst via Colin Percival
2004-02-23Improved boot args parsing. also assume that a bootfile of (hd0)...Dale Rahn
is booting from 'wd0'.
2004-02-23- Pick up the /boot argc, argv in locore.S (though not currently used)Tom Cosgrove
- Probe for console devices (incl serial) in /boot - Pass console device from /boot to kernel (temp via additional param) With this, boot> set tty com0 now works. "just don't break a build" deraadt@
2004-02-22- Make comment about parameters passed by /boot reflect realityTom Cosgrove
- Don't use _C_LABEL() on a parameter given to RELOC(), since RELOC() does this itself ok mickey@
2004-02-22pretty a littleTheo de Raadt
2004-02-22Minor tweak from gibbs @ FreeBSD. Shorten one printf, eliminateKenneth R Westerback
another that was inappropriate. ok tdeval@.
2004-02-22Remove #if 0'd code.Tom Cosgrove
requested by weingart@
2004-02-22isa ep worksTheo de Raadt
2004-02-22smaller ramdisk for nowTheo de Raadt
2004-02-22RAMDISK is ok hereTheo de Raadt
2004-02-22shrinkyTheo de Raadt
2004-02-22support -DNO_PROPOLICETheo de Raadt
2004-02-21fiddle with filedesc lock to prevent recursion. crash and fix confirmedTed Unangst
by marc balmer
2004-02-21Remove left-over dependencies on the old rcons code.Miod Vallat
2004-02-21SCSI_DATA_OUT doesn't mean transfer from host in all cases, whenAlexander Yurchenko
requesting sense we reuse the same scsi xfer so flags lie and we should check for C_SENSE too. Eliminates pciide timeouts at the end of every burning with cdrecord. Bug introduced, found and then fixed by costa@. ok costa@ krw@
2004-02-21aperture stuffTheo de Raadt
2004-02-21much more gooTheo de Raadt
2004-02-21Tidy up installboot -v output.Tom Cosgrove
requested by and ok deraadt@
2004-02-21Eliminate the quirks SDEV_NOSTARTUNIT, UMASS_QUIRK_NO_START_STOP, andKenneth R Westerback
UMASS_QUIRK_FORCE_SHORT_INQUIRY. Fixes a bunch of USB devices. Based on work by Mycroft in NetBSD. ok tdeval@ deraadt@.
2004-02-21Fix a race. scsi_done() can free a scsi_xfer, so relying on the valuesKenneth R Westerback
of fields in the scsi_xfer after scsi_done() could have been called is bad. cdrecord can now safely burn cd's at high speeds. Found by grange@, original diff by costa@, cleaned up by grange@ and further polished by me following input from deraadt@. ok grange@ costa@ deraadt@.
2004-02-21Tidy up installboot -v output.Tom Cosgrove
requested by and ok deraadt@
2004-02-20turn off TRAP_SIGDEBUGTheo de Raadt
2004-02-20use an old syscall (int $0x80) for the sigreturn; otherwise %rcx is trashed.Theo de Raadt
we've been chasing this for 2 weeks.. finally spotted by kettenis@chello.nl
2004-02-20Make pfsync deal with clearing states bound to a group or interface (egRyan Thomas McBride
pfctl -i fxp0 -Fs). Also don't send out individual state deletions if we're sending a clear message, move pfsync_clear_states() inside splnet, and fix if_pfsync.h includes in pf.c and pf_ioctl.c. ok cedric@ dhartmei@
2004-02-20This is amd64, not i386.Miod Vallat
2004-02-20typoTheo de Raadt
2004-02-20crank maxusers from 18 to 20Theo de Raadt
2004-02-19move MID_X86_64; kettenis@chello.nlTheo de Raadt
2004-02-19better fix to avoid 1 second machine pauses; from grangeTheo de Raadt