summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diffdir.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2005-01-12fix kernel building with option UBSA_DEBUG.moritz1-5/+4
ok dlg@ henning@
2005-01-12Don't call ahc_setup_data() after calling ahc_execute_scb() since thekrw1-3/+3
scb may have been freed or made active. Only affects XS_RESET case. More correctly mirrors FreeBSD code. Already done to aic79xx_openbsd.c in r1.16.
2005-01-12Fix an off by one in the critical section clearing code. The code waskrw1-4/+2
adjusting twice for the instruction pointer indicating the *next* instruction to execute. From FreeBSD r1.101.
2005-01-12less confusing `TARGET_USE_GCC3' since it's only used locally.espie1-4/+4
Okay niklas@
2005-01-11Document the 98543 topcat.miod1-17/+7
2005-01-11Pass device names on intr_establish() call, other drivers need this too.drahn2-4/+5
2005-01-11rename via_shutdown() to via_powerdown() and remove unused prototype tomartin3-7/+6
shrink diff to NetBSD ok miod
2005-01-11oppsdrahn1-2/+2
2005-01-11pretty print in dmesgderaadt1-2/+2
2005-01-11add zaurus in right place (before wild card)deraadt1-3/+3
2005-01-11change the description of /usr/lib from `archive libraries' to `systemjmc1-2/+5
libraries', since not only archive libs are kept there. this from freebsd -r 1.112, except i changed their description and referenced intro(3) rather than ar(1), since it has a better description of library types.
2005-01-11no more stuff from gnuderaadt1-2/+2
2005-01-11put a seperate and real fsck on the mediaderaadt23-175/+194
2005-01-11correct unfortunate example which would have squished users' mailbox;jmc1-2/+2
from ray at cyth dot net;
2005-01-11first cut at interrupt stats.drahn2-11/+35
2005-01-11more minor tweaks, ok jmcjaredy2-18/+26
2005-01-11no need to call realpath() in adjustname()henning1-4/+4
realpath returns an error if cwd is not writeable, and that is quite common with NFS-mounted ~ and sudo mg /etc/something - annoying as hell. realpath is not needed at all here, so zap it. vincent ok
2005-01-11Let 'boot' and 'ls' take arguments of the form [device:][file].uwe1-14/+15
2005-01-11tweaks;jmc1-3/+3
2005-01-11document vnd ioctls;jmc1-2/+82
from matthias kilian, tweaked by myself;
2005-01-11correctly deal with unspecified (zero) interface number in IPV6_MULTICAST_IF,djm1-26/+37
IPV6_{JOIN,LEAVE}_GROUP ioctls; ok itojun@
2005-01-11cvs -> CVS; jmc okxsa1-2/+2
2005-01-11be more specific about pp log attempts.espie1-2/+14
explain about cast used as lvalues.
2005-01-11Reliability fixes:miod3-12/+100
- Let the loop initialize completely before attempting to probe its devices. Fixes the "no answer from device 1" problem. - Handle ``loop unplugged'' events and force detach of all children in this case.
2005-01-11Close the Entries file we just created upon directory creation. Thisjfb1-1/+5
fixes the problem where a checkout would only add entries for directories. from Joris Vink
2005-01-10Make sure bogus values don't make their way into tcp_xmit_timer() calculations.mcbride3-10/+21
- Ignore ts_ecr if it is 0, or the resulting rtt is out of range. (use tp->t_rtttime instead) - Initialise tcp_now to 1, to avoid the 500ms window where a valid ts_ecr of 0 could be ignored. - Convert out-of-range rtt values to valid ones in tcp_xmit_timer(). ok frantzen@ markus@
2005-01-10Correctly limit interrupts on the 'last' register, added support todrahn2-7/+25
detect pxa27x vs previous.
2005-01-10make it compile, sighderaadt1-2/+2
2005-01-10spacingderaadt2-24/+21
2005-01-10spacingderaadt4-22/+22
2005-01-10It turns out the extiospace static storage shrinkage was too much for largemiod1-3/+3
frame buffers; go back to a larger, yet reasonable, size.
2005-01-10proper SET_PC_REGS,espie1-5/+2
okay kettenis@, something-vaguely-looking-like-an-okay mickey@
2005-01-10OpenBSD tagsuwe7-0/+14
2005-01-10remove unnecessary rlphy_reset(), mii_phy_tick() andbrad1-27/+70
some clean up. fixes issue with axe@usb. Tested by a number of developers and users.
2005-01-10minor docs for cuaU? supportderaadt1-1/+2
2005-01-10Remove unneccesary cast to long long and %llu format; print using %lu.otto1-4/+3
Spotted by tom@, ok millert@
2005-01-10Alphaserver 500/600 and sk(4); reminded by miodmartin1-16/+29
2005-01-10In csh-style history expansion, initialize s->u.freeme to NULL so wemillert1-1/+2
don't try to free garbage on cleanup. Fixes problem noticed by david@
2005-01-10- introduce TARGET_CANON/TARGET_ARCH shell variables, to make things slightlyespie1-40/+46
clearer. - don't put full path into symlinks that don't change directory. - add a few NO_CROSS directories: stuff that depends on libcrypto, stuff that needs host tools, and stuff that wants cross-configure. okay niklas@
2005-01-10-l outputs total always, not just to terminals (netbsd -r 1.50);jmc1-4/+6
-l output is one per line (like -1); -x also inhibits one per line output;
2005-01-10from netbsd uplcom.c revision 1.37:dlg1-11/+30
Make sure that we call uplcom_set_line_state() to get consistent state between our idea of flow controll settings and the chips one. In uplcom_set_line_state use the same value as the manufacturer suggests, since the previously used (umodem based) values do not seem to work. It is not completely clear what happened here - either the "not calling uplcom_set_line_state" due to luck prevented the non working state to be discovered or there are variants of the chip that need the old values. During testing none such chips have been found - if they ever apear we might have to make this function more intelligent, depending on the chip in use.
2005-01-10from freebsd, uplcom.c revision 1.23:dlg1-1/+10
Add support for CTS modemsignal as well. RI does not seem to be supported.
2005-01-10change vget() to only put a vnode back on the free lists if it actuallypedro1-6/+8
was there. should fix a (rare) corner case introduced by my last commit. ok tedu@, testing by joris, moritz@, danh@, otto@ and krw@. many thanks.
2005-01-10typo;jmc4-8/+8
2005-01-10add support for calling units (cuaU*)dlg2-126/+78
2005-01-10regendlg32-67/+74
2005-01-10add calling units (cuaU*) for use by devices supported by ucomdlg1-2/+3
2005-01-10Make the time spent scanning per channel consistent with other driversjsg1-2/+2
and much more reasonable.
2005-01-10ledma*, and le* at ledma? will help with anteres units; miod okderaadt3-3/+9
2005-01-10m_hdr.mh_flags has been u_short for some time now.jsg1-3/+2
Kill uneeded line while here.