summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diffdir.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-11-11Compute syhcnronous transfer periods with a better accuracy, to get bettermiod1-9/+9
results on the 16.5MHz clock case. ok krw@
2010-11-11DEC 3000/400 has a 22.5MHz TURBOchannel bus instead of the usual 25MHz;miod4-16/+24
correctly report this. Then, in asc@tc, compute synchronous transfer periods (involving the bus clock) with a better accuracy. ok krw@
2010-11-11Pass a few more M_ZERO to malloc() or its wrappers, when useful; ok krw@miod7-30/+24
2010-11-11Remove commented out references to old kerberosIV libraries we do notmiod2-22/+2
ship since ages. ok deraadt@ millert@
2010-11-11Kill unused cinit(), and skip some diagnostic printf if optionmiod1-12/+3
DIAGNOSTIC is not set. ok deraadt@
2010-11-11Correctly disassemble ssnop.miod1-3/+3
2010-11-11Missed that part in previous.ajacoutot1-2/+2
from jmc@
2010-11-11Add libXi doc dirmatthieu1-1/+3
2010-11-11Unconfuse usage.ajacoutot2-5/+5
prodded by and ok espie@, ok jmc@
2010-11-10The acpibat(4) notify function should not unconditionally call both _BIFkettenis1-13/+9
and _BST. Some machines (like the Toshiba Satellite Pro U550 18F mentioned in PR 6508) have AML that does a Notify(0x81) from the _BST method, which leads to infinite recursion. Instead call _BIF when the argument is 0x81 and call _BST when the argument is 0x80 or 0x00 (the latter indicates we're polling). Simplify the battery detection logic while there. ok mikeb@, marco@
2010-11-10Several updates for the Osprey (AR9380):damien5-32/+581
- Add the different ROM templates for the different chips - Fix AR_PHY_65NM_CH0_TOP_XPABIASLVL definition - Apply attenuation settings from the ROM
2010-11-10s/NWD2705/NWD2205/damien1-3/+3
2010-11-10pass aesni_ctr_enc an initial counter block instead of an initialization vectormikeb2-18/+21
2010-11-10Enable low latency interrupt moderation and set the LL intervalclaudio2-3/+12
to the maximum value to reduce the number of low latency interrupts hitting the card when the ring is getting full. Tested at least by deraadt@ on 99 and myself on 99 and 98 ix(4). OK mikeb@
2010-11-10Make sure that the initial configuration of the child is zeroed outclaudio2-4/+4
by using calloc(). This fixes an issue where the RDE would start up as route-collector because uninitialized memory made the RDE switch to that mode. OK henning@, sthen@, phessler@
2010-11-10Make -dvv flags produce debug traces of decoded BER messages on stderr.martinh7-9/+309
Also shows a hexdump of the input buffer if BER decoding fails. Useful when debugging protocol issues.
2010-11-10Prefix debug logging on stderr with time and pid, like syslog.martinh1-2/+17
2010-11-10use only libcrypto APIs that are retained with OPENSSL_NO_DEPRECATED.djm6-17/+33
these have been around for years by this time. ok markus
2010-11-09when setting the rdomain, use the same define as the kerneljsg1-2/+2
for the maximum route-id instead of a currently incorrect number ok claudio@
2010-11-09correct some bit tests spotted by -Wparentheses in newer gcc.jsg1-2/+2
ok oga@
2010-11-09the ZyXEL NWD2705 is a run(4) RT3070damien1-2/+3
2010-11-09Update for recent changes to ruby.port.mk.jeremy1-3/+30
OK landry@
2010-11-09more ultra nano adapters.damien1-3/+11
some, like the DWA-121 or GW-USNano2 are not yet available (they just passed wi-fi alliance certification) but it shouldn't take too long before they hit the shelves.
2010-11-09update struct uvmexp, and fix some spacing issues while here;jmc1-59/+84
ok tedu
2010-11-08tweak previous;jmc1-3/+3
2010-11-08Don't print 'Null message body; hope that's ok' in the rc output if theajacoutot1-2/+2
call to rc.firstime doesn't output anything to mail(1). ok deraadt@ halex@
2010-11-08Add %F, %g, %G, %u, %z (extended) and %Z.jasper2-9/+334
This is mostly a sync with NetBSD. tested in a bulk build by landry@ ok millert@
2010-11-08neither systat(1) nor slstats(8) understands `-M core' and `-N system';sobrado1-12/+10
while here, sort these options. ok jmc@, millert@
2010-11-08getdirentries(2) should be avoided outside of libc so use scandir(3)millert1-115/+41
instead. This makes slurpdir() just a thin wrapper around scandir(3). OK schwarze@
2010-11-08No need to differentiate newly installed files versus automaticallyajacoutot1-2/+2
updated files in the output, this is confusing. ok sthen@
2010-11-08clear ERL register on secondary processorssyuu1-16/+4
2010-11-08fixup number rounding; ok reykmikeb1-2/+2
2010-11-08use a well established define instead of rolling our own; no binary changemikeb1-7/+5
2010-11-07syncderaadt20-19/+21
2010-11-07there is no library function called sched_prio(), so this manual pagederaadt2-6/+5
was incorrectly named. there should be no sched_prio(3) page; it is misleading.
2010-11-07do not list MLINKed man pages multiple times in SEE ALSO;jmc1-3/+2
2010-11-07tweak previous;jmc1-3/+5
2010-11-07fix a test in ar5008_rx_free()damien1-2/+2
2010-11-07regenkettenis2-2/+22
2010-11-07A few more NVIDIA devices found on the latest 13" MacBook Pro (MacBookPro7,1).kettenis1-1/+5
2010-11-07Add sched_get_priority_{min,max}. tested in a bulk by landry@.fgsch6-9/+133
input and ok from phessler@ and guenther@
2010-11-07regenkettenis2-2/+7
2010-11-07NVIDIA GeForce 320M as found on the latest 13" MacBook Pro (MacBookPro7,1).kettenis1-1/+2
2010-11-07more EXIT STATUS bits; from Daniel Dickmanjmc3-8/+14
2010-11-06Move raid1 and crypto io to a workq. This is to avoid a potential VOP_marco4-41/+78
call while in interrupt context. Contains an additional spl dance as found by thib. Tested by many opn various arches. Note that raid 0/4/5/6 have not been moved over yet.
2010-11-06tweak previous;jmc1-2/+3
2010-11-06syncderaadt19-19/+19
2010-11-06make sio_onvol(3) return a integer exposing whether a volume knobratchov11-178/+181
is available for the stream. As we're at it, remove macros and functions that are neither used nor documented.
2010-11-06The Buffalo WLI-UC-GNM is a Ralink RT3070V.damien1-1/+2
2010-11-06Add two RTL8188CUS:damien1-1/+3
- Full River FR-W100NUL - Planex GW-USValue-EZ The GW-USValue-EZ is damn small! I hope it ships with tweezers.