summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-12-13Add preliminary support for the Serial Bus Protocol II (SBP-2) standard.Thierry Deval
As well as a first rough implementation of a SCSI over FireWire support, following the SBP-2 standard.
2002-12-13"Documentation" update.Thierry Deval
2002-12-13Better memory balancing (between alloc/free),Thierry Deval
some enhancements, lots of debugging, KNF...
2002-12-13Detach fwnodes first.Thierry Deval
Solves panics when removing the adapter while leaving the devices connected.
2002-12-13KNFThierry Deval
2002-12-12Dvorak typo.Miod Vallat
2002-12-12Pastos in pf_compare_pool(); dhartmei@, mcbride@ ok.Aaron Campbell
2002-12-12Remove dead prototypesMiod Vallat
2002-12-12use ldl_l/stl_c instead of ldq_l and ldq_c as _spinlock_lock_tMarco S Hyman
is defined as an int. This solves several alpha/pthread problems as repoted by various ports people.
2002-12-12KNFHenning Brauer
2002-12-12we don't need to keep a private copy of the queue name in expand_rule,Henning Brauer
r->qname is never modified discussed with dhartmei@
2002-12-12minor KNFHenning Brauer
2002-12-12Missing 'Cm'. From <andrushock@korovino.net>Mike Pechkin
2002-12-12Always use queue(3) macros.Alexander Yurchenko
ok chris@ gluk@
2002-12-12don't link LIBCRT0 into ld.so (for DESTDIR builds); PR2928; ok fgsch@, millert@Markus Friedl
2002-12-12statement after label.Artur Grabowski
2002-12-12linux passes the 6th syscall argument in ebpJason Ish
- from NetBSD - ok deraadt, mickey
2002-12-12until someone complains, let only root playTheo de Raadt
2002-12-12ansiTheo de Raadt
2002-12-12can now get _ttylist via sysctl; millert okTheo de Raadt
2002-12-12Allow the log directive to work for non-translated syscalls as well.Anil Madhavapeddy
provos ok
2002-12-12knfTheo de Raadt
2002-12-11o Check mmap() return value against MAP_FAILED, not -1.Todd C. Miller
o Prevent close() from clobbering errno. Patch from Peter Werner; closes PR 2995
2002-12-11add a debugging function not normally calledMarco S Hyman
2002-12-11Convert ctype.h macros into inline functions. This fixes the issues weTodd C. Miller
currently have with the macro versions and makes the ctype.h versions 100% identical to what is in libc. Discussed with pjanzen@ and OK'd by deraadt@.
2002-12-11Make x_handy in XDR u_int, not int since there are places in theTodd C. Miller
code that assign a u_int value to x_handy. However, this means that we need to be careful checking for overflow as we can no longer subtract a value and check the result for < 0. We reorder the expression instead to avoid this problem (basic algebra). deraadt@ OK
2002-12-11Don't require a list of object file for the -d, -m, -q and -r optionsTodd C. Miller
since neither Solaris nor GNU ar require this. Personally I'd rather change the world to use the BSD behavior but that is unlikely and the differing behavior causes problems with libtool and automake. deraadt@ OK
2002-12-11Minor cosmetic nits picked while reading though init.c:Todd C. Miller
o Use STD{IN,OUT,ERR}_FILENO, not 0-2 o Call exit() from main, not return() (code is never reached anyway) o Change two cases of '!' into "== NULL"
2002-12-11Use m_copym2 to copy the whole mbuf (cluster included) and notFederico G. Schwindt
incrementing its reference. Fixes a m_zero panic reported by markus@ when pfdatatopacket returns a cluster. Tested by markus@, jason@ ok.
2002-12-11ansi; p/o by Andrushock <andrushock@korovino.net>Alexander Yurchenko
ok gluk@
2002-12-11smaller delays, unneeded splsMichael Shalayeff
2002-12-11send-pr -> sendbug here as well; Peter WernerHenning Brauer
2002-12-11sendbug(1), not send-pr; Peter WernerHenning Brauer
2002-12-11unpeeMichael Shalayeff
2002-12-11ansi; modload users please testTheo de Raadt
2002-12-11ansiTheo de Raadt
2002-12-11Remove bc/libmath.h from CLEANFILES since we don't generate it at buildTodd C. Miller
time anymore.
2002-12-11fix buffer overflow in the FIX_PRECISION macroHenning Brauer
not exploiteable; would need more programming errors to cause harm from jim@apache
2002-12-11ansiTheo de Raadt
2002-12-11handle snprintf < 0Theo de Raadt
2002-12-11rename log->dolog, from thorpej@netbsd, ok provosAnil Madhavapeddy
2002-12-11Replace strncpy + ugly pointer math with sscanif for reading source-hash keysRyan Thomas McBride
ok dhartmei@ henning@
2002-12-11update URL and fix a typo; David KrauseHenning Brauer
2002-12-11Wording; David KrauseHenning Brauer
2002-12-11typos in comments; David KrauseHenning Brauer
2002-12-11Add VIA VT8231Alexander Yurchenko
ok chris@ gluk@
2002-12-11Add VIA VT8231Alexander Yurchenko
ok gluk@ mpech@
2002-12-11Some people say that "__asm __volatile("")" is not enough.Artur Grabowski
Use "__asm __volatile("":::"memory")" to completly avoid reordering.
2002-12-11Added paranoia to make sure that gcc doesn't reorder spl* inlines.Artur Grabowski
2002-12-11 - Call uvm_km_alloc_poolpage1 directly, no need to go through the macro.Artur Grabowski
- uvm_km_alloc_poolpage1 has its own spl protection, no need to add additional layer around it.