damien [Thu, 15 Jul 2010 19:24:04 +0000 (19:24 +0000)]
sync initialization values for AR9160 and AR9280 with ath9k.
see http://marc.info/?l=linux-wireless&m=
127802223525594&w=2 for the
list of changes/fixes.
damien [Thu, 15 Jul 2010 19:07:43 +0000 (19:07 +0000)]
Remove initialization values for chips that never made it into production:
- AR9280 1.0
- AR9285 1.0 and 1.1
- AR9287 1.0
Remove checks that are now useless since we know we will never see those
chips, and rename some functions.
ray [Thu, 15 Jul 2010 18:31:33 +0000 (18:31 +0000)]
Remove unused arguments from check(). From cvs/rcs.
OK millert
ray [Thu, 15 Jul 2010 18:23:50 +0000 (18:23 +0000)]
Die immediately if pread fails. It's a fatal error so treat it as
such. Besides, we weren't handling the NULL being returned.
From diff. Minor nit by nicm.
OK xsa stsp nicm
ray [Thu, 15 Jul 2010 18:19:18 +0000 (18:19 +0000)]
Use warnx instead of warn since errno wasn't set. From diff.
OK xsa stsp nicm
jmc [Thu, 15 Jul 2010 18:15:31 +0000 (18:15 +0000)]
sync the elf types and their comments; ok millert
jmc [Thu, 15 Jul 2010 16:48:41 +0000 (16:48 +0000)]
document the missing "note section";
reported by Michael Kerrisk, freebsd pr 147995
big thanks to miod and millert for filling in the blanks
sthen [Thu, 15 Jul 2010 15:45:48 +0000 (15:45 +0000)]
knock out MetaGeek Wi-Spy 2.4i from attaching to uhid.
sthen [Thu, 15 Jul 2010 15:45:15 +0000 (15:45 +0000)]
sync
sthen [Thu, 15 Jul 2010 15:44:55 +0000 (15:44 +0000)]
add MetaGeek Wi-Spy 2.4i
espie [Thu, 15 Jul 2010 13:38:30 +0000 (13:38 +0000)]
store openssl error output during verification, and log it if it didn't work.
claudio [Thu, 15 Jul 2010 13:30:45 +0000 (13:30 +0000)]
Correct function in panic string. From Christophe Fillot
ray [Thu, 15 Jul 2010 11:10:23 +0000 (11:10 +0000)]
Sync with diff/diffreg.c r1.75:
Return -1 on error as advertised.
Handle case when only one stream failed.
OK xsa, stsp
espie [Thu, 15 Jul 2010 10:37:32 +0000 (10:37 +0000)]
whitespace
claudio [Thu, 15 Jul 2010 09:45:09 +0000 (09:45 +0000)]
m_getptr(m, 0, ...) may return an mbuf different from m -- if m has no
data in it. m_getptr() hops over empty buffers and points to the first
allocated data byte. Because of this the m_dup_pkthdr() call done by
m_copym0() can panic because not the first mbuf is passed.
Found the hard way by myself, diff by blambert@ commiitting for him since
he is not around. Tested and OK myself
mglocker [Thu, 15 Jul 2010 04:46:33 +0000 (04:46 +0000)]
* Comment poll support in conf.h
* Comment why we call the video interrupt in the mmap interface now in
uvideo.c
jakemsr [Thu, 15 Jul 2010 03:43:11 +0000 (03:43 +0000)]
add two new members to structs audio_encoding and audio_prinfo.
for both structs, the new members are 'bps' and 'msb', which
describe the number of bytes per sample and data alignment in the
sample, respectively. drivers must properly set these fields in
the 'query_encoding', 'set_parameters' and 'get_default_params'
hardware interface methods.
discussed with ratchov, deraadt
deraadt [Thu, 15 Jul 2010 03:20:47 +0000 (03:20 +0000)]
limit the pools from 14 bits down. We cannot use PAGE_SIZE because it
is a variable on sparc. This should be revisited... after the arguments
for pagesize vs 4K complete :)
tedu [Thu, 15 Jul 2010 00:14:17 +0000 (00:14 +0000)]
the uvm_km_putpage is calling into tangly uvm guts again on not pmap direct.
go back to something more like the previous design, and have the thread do
the heavy lifting. solves vmmaplk panics.
ok deraadt oga thib
[and even simple diffs are hard to get perfect. help from mdempsky and deraadt]
sthen [Wed, 14 Jul 2010 23:54:14 +0000 (23:54 +0000)]
sync
sthen [Wed, 14 Jul 2010 23:47:54 +0000 (23:47 +0000)]
sync from mirrors.dat
dhill [Wed, 14 Jul 2010 23:44:41 +0000 (23:44 +0000)]
pass the correct af if not specified.
fixes printing active connections twice.
ok claudio@
ray [Wed, 14 Jul 2010 22:15:57 +0000 (22:15 +0000)]
Return -1 on error as advertised.
Handle case when only one stream failed.
OK otto, millert
jakemsr [Wed, 14 Jul 2010 21:24:33 +0000 (21:24 +0000)]
implement poll() for video(4)
ok mglocker
claudio [Wed, 14 Jul 2010 20:56:35 +0000 (20:56 +0000)]
The append side of a socketbuffer is not allowed to call sbflush().
Learned the hard way. dlg@ confirmed that it is save to just remove them,
the desync will still work but the reader needs to dequeue all packets first.
mk [Wed, 14 Jul 2010 20:44:17 +0000 (20:44 +0000)]
In urndis_decap(), delay the memcpy() for as long as possible. There is
no point in copying before having done the final sanity check (we copied
before the last one).
ok armani
mk [Wed, 14 Jul 2010 20:21:55 +0000 (20:21 +0000)]
urndis_newbuf() is only called with NULL as it's third argument so just
get rid of it.
ok armani
naddy [Wed, 14 Jul 2010 19:24:27 +0000 (19:24 +0000)]
Newer 8168x and 810x chipsets have a different way of stopping the chipset.
From FreeBSD via Brad.
nicm [Wed, 14 Jul 2010 18:37:49 +0000 (18:37 +0000)]
Make pane/window wrapping more logical (so with 10 windows, +10 from
window 5 stays in the same place), and tidy the code. From Tiago Cunha.
claudio [Wed, 14 Jul 2010 17:09:13 +0000 (17:09 +0000)]
Another hand knitted offsetof() that needs to die. This time steal the
mask2prefixlen6 version from bgpd.
jmc [Wed, 14 Jul 2010 17:06:58 +0000 (17:06 +0000)]
finally ssh synopsis looks nice again! this commit just removes a ton of
hacks we had in place to make it work with old groff;
claudio [Wed, 14 Jul 2010 17:06:52 +0000 (17:06 +0000)]
use offsetof() instead of self knitted version to please gcc4.
stolen from ospf.h
nicm [Wed, 14 Jul 2010 13:13:42 +0000 (13:13 +0000)]
Zero the pitem array so checking items after those used works as
expected, also do not look beyond the size of the array.
ok otto deraadt
matthieu [Wed, 14 Jul 2010 11:21:53 +0000 (11:21 +0000)]
Let vga_pci.c build in kernel configs without acpi. ok kettenis@
matthew [Wed, 14 Jul 2010 10:31:54 +0000 (10:31 +0000)]
Eliminate some unused malloc(9) type defines. Also get rid of the
mysterious and unused mbtypes[] array in mbuf.h.
ok tedu@, deraadt@
claudio [Wed, 14 Jul 2010 09:00:08 +0000 (09:00 +0000)]
Fix a mrt fd leak by moving the block which closes finished dumps.
The previous location also depended on poll results and in most cases was
therefor not entered because finished dumps are not added to the poll array.
Problem reported by Peter Haag, OK henning@
halex [Wed, 14 Jul 2010 06:19:26 +0000 (06:19 +0000)]
add regress tests for upcoming redirection changes to ftp
matthew [Wed, 14 Jul 2010 06:16:04 +0000 (06:16 +0000)]
SCSI HBA drivers need to report success/error through xs, not xs->bp.
By trying to do the latter, ioprbs(4) was inadvertently always
signalling to the SCSI mid and upper layers that read/write requests
succeeded, even if they failed or only partially completed.
Light testing by claudio@, which is still way more effort than this
driver deserved.
dlg [Wed, 14 Jul 2010 01:23:04 +0000 (01:23 +0000)]
handle printing of RTM_DESYNC in route monitor.
reviewed by deraadt@
written by sthen@ who said i should commit it cos he was going to sleep.
dlg [Wed, 14 Jul 2010 01:00:32 +0000 (01:00 +0000)]
handle RTM_DESYNC. if the kernel says we're out of sync with the kernel
routing table and interface list, do a reload of the kernel state.
ive been running this in production for 2 or 3 weeks.
tested by sthen@
ok sthen@ claudio@ deraadt@
code written by andrew sallaway at the univeristy of queensland.
dlg [Wed, 14 Jul 2010 00:42:57 +0000 (00:42 +0000)]
if we produce a lot of rtsock messages it is possible we will hit a
condition that prevents us from queuing it, which in turn means that
processes listening on the routing socket for changes to the kernel state
will get out of sync. currently this is handled by the following comment:
/* should notify about lost packet */
this change introduces a new rtsock message called RTM_DESYNC that
notifies about lost packets and uses it instead of this comment.
when we detect loss we flush all the message in the routing socket and
attempt to queue an RTM_DESYNC message instead. to guarantee that we will
enqueue DESYNC we keep trying it when an attempt to enqueue or dequeue
any messages is made, and in the worst case a timeout tries to guarantee
that desync is added to the socket.
ive been running this in production for 2 or 3 weeks.
tested by sthen@
ok sthen@ claudio@ deraadt@
code written by andrew sallaway at the univeristy of queensland.
deraadt [Wed, 14 Jul 2010 00:15:07 +0000 (00:15 +0000)]
oops; Fred Crowson
djm [Tue, 13 Jul 2010 23:13:16 +0000 (23:13 +0000)]
s/timing_safe_cmp/timingsafe_bcmp/g
tedu [Tue, 13 Jul 2010 22:34:45 +0000 (22:34 +0000)]
update our recommended hash function to sha256 and note md5 is broken.
ok deraadt jmc millert sobrado
jsg [Tue, 13 Jul 2010 21:55:52 +0000 (21:55 +0000)]
use PHY semaphore on 8275/82576 adapters in addition to 80003es2lan.
From SAITOH Masanobu.
Confirmed to fix pr 6427, and should fix 6301 as well.
Tested by a bunch of people, and discussed with claudio
during c2k10.
nicm [Tue, 13 Jul 2010 21:33:44 +0000 (21:33 +0000)]
Don't silently overwrite untracked local files with newly-added
repository files.
slightly earlier version ok zinovik xsa
nicm [Tue, 13 Jul 2010 21:31:17 +0000 (21:31 +0000)]
Test for the awesome let's-silently-overwrite-local-files bug.
deraadt [Tue, 13 Jul 2010 21:10:50 +0000 (21:10 +0000)]
delete unnccessary include
deraadt [Tue, 13 Jul 2010 21:01:05 +0000 (21:01 +0000)]
rename some thread related interfaces so they are logical
nicm [Tue, 13 Jul 2010 20:47:56 +0000 (20:47 +0000)]
regress for merge bug.
nicm [Tue, 13 Jul 2010 20:47:19 +0000 (20:47 +0000)]
Do not put the file into conflict if it is no longer modified (user has
edited it back to repository state).
ok zinovik
nicm [Tue, 13 Jul 2010 20:41:55 +0000 (20:41 +0000)]
PR 6423 fix for cvs too, requested by xsa@.
nicm [Tue, 13 Jul 2010 20:07:24 +0000 (20:07 +0000)]
Don't read before the beginning of the log message if it is zero-length
(possible when it comes from stdin).
Tweaked version of a fix from Peter Hendrickson in PR 6423.
ok deraadt
otto [Tue, 13 Jul 2010 18:52:25 +0000 (18:52 +0000)]
fix overflow of dirsize; from FreeBSD; PR 6426; ok beck@ millert@
deraadt [Tue, 13 Jul 2010 16:50:26 +0000 (16:50 +0000)]
Do not put a data buffer on the stack; malloc it (we will use dma_alloc
later, when we trust it)
ok matthew
deraadt [Tue, 13 Jul 2010 16:49:16 +0000 (16:49 +0000)]
need pool.h to initialize the dma allocator
deraadt [Tue, 13 Jul 2010 16:47:02 +0000 (16:47 +0000)]
dma_alloc() and dma_free(). This is a thin shim on top of a bag of
pools, sized by powers of 2, which are constrained to dma memory.
ok matthew tedu thib
espie [Tue, 13 Jul 2010 15:39:03 +0000 (15:39 +0000)]
handle Tm, like in tiff2ps
espie [Tue, 13 Jul 2010 15:38:27 +0000 (15:38 +0000)]
work around a strange problem in locality of @_ by copying stuff.
okay millert@
sthen [Tue, 13 Jul 2010 13:11:57 +0000 (13:11 +0000)]
Fix (pflow) display in rule printing. Spotted by dhill@, ok henning@
kettenis [Tue, 13 Jul 2010 13:07:35 +0000 (13:07 +0000)]
Fix dmesg printing.
ok krw@, claudio@
henning [Tue, 13 Jul 2010 12:56:06 +0000 (12:56 +0000)]
- find.fp_wsize *= find.fp_mss, 1;
+ find.fp_wsize *= find.fp_mss;
From: Ed Schouten <ed at FreeBSD.org>
martinh [Tue, 13 Jul 2010 12:54:51 +0000 (12:54 +0000)]
Avoid double free in ldap modify requests. The values received in the
modify request is linked into the stored ber structure, and then both are
freed. Fix this by unlinking the values from the request.
sthen [Tue, 13 Jul 2010 12:28:13 +0000 (12:28 +0000)]
When cleaning /tmp at boot, run the slower find unconditionally.
Previously if the quick rm -rf failed, find was not run, so some files
were not removed. Looks good to tedu@.
djm [Tue, 13 Jul 2010 11:52:06 +0000 (11:52 +0000)]
implement a timing_safe_cmp() function to compare memory without leaking
timing information by short-circuiting like memcmp() and use it for
some of the more sensitive comparisons (though nothing high-value was
readily attackable anyway); "looks ok" markus@
mlarkin [Tue, 13 Jul 2010 07:33:10 +0000 (07:33 +0000)]
Fix a broken mask for core temperature 1 and 2, and bias properly for degC.
Tested on Thinkpad T510.
jmc [Tue, 13 Jul 2010 07:01:23 +0000 (07:01 +0000)]
no more rmd160(1);
jmc [Tue, 13 Jul 2010 06:57:37 +0000 (06:57 +0000)]
no need for userland to refer to section 2/3 pages;
deraadt [Tue, 13 Jul 2010 06:03:59 +0000 (06:03 +0000)]
sync
guenther [Tue, 13 Jul 2010 04:24:46 +0000 (04:24 +0000)]
Fix PR 6417: if we're starting a thread and there's no other threads
running, then we need to start a gc thread...except when this is
the very call to start a gc thread!
"This works for me" marc@
guenther [Tue, 13 Jul 2010 03:10:29 +0000 (03:10 +0000)]
Fix PR 6376: restore more thread library state if execve fails,
including the scheduling timer, sigmask, fd nonblocking status, and
handling of the signals used by the thread library.
ok marc@, additional testing by ajacoutot@
schwarze [Tue, 13 Jul 2010 01:09:12 +0000 (01:09 +0000)]
Merge release 1.10.4 (all code by kristaps@), providing four new features:
1) Proper .Bk support: allow output line breaks at input line breaks,
but keep input lines together in the output, finally fixing
synopses like aucat(1), mail(1) and tmux(1).
2) Mostly finished -Tps (PostScript) output.
3) Implement -Thtml output for .Nm blocks and .Bk -words.
4) Allow iterative interpolation of user-defined roff(7) strings.
Also contains some minor bugfixes and some performance improvements.
krw [Tue, 13 Jul 2010 00:30:30 +0000 (00:30 +0000)]
Correct comment. scsi_sense_data is now 18 bytes, not 32.
tedu [Mon, 12 Jul 2010 23:16:55 +0000 (23:16 +0000)]
replace rmd160 links with sha256. it's way more popular and more better, too.
too many oks to enumerate.
while here, add Xr to the relevant libc functions in each page.
djm [Mon, 12 Jul 2010 22:41:13 +0000 (22:41 +0000)]
expand %h to the hostname in ssh_config Hostname options. While this
sounds useless, it is actually handy for working with unqualified
hostnames:
Host *.*
Hostname %h
Host *
Hostname %h.example.org
"I like it" markus@
djm [Mon, 12 Jul 2010 22:38:52 +0000 (22:38 +0000)]
Make ExitOnForwardFailure work with fork-after-authentication ("ssh -f")
for protocol 2. ok markus@
nicm [Mon, 12 Jul 2010 18:03:38 +0000 (18:03 +0000)]
Update to 1.4.14b.
From their change log:
o Fix memory-leak of signal handler array with kqueue. [backport]
o Make evutil_make_socket_nonblocking() leave any other flags alone.
o Adjusted fcntl() retval comparison on evutil_make_socket_nonblocking().
o Re-add event_siglcb; some old code _was_ still using it. :(
o Fix a free(NULL) in min_heap.h
o Clean up properly when adding a signal handler fails.
Also a local change to use an int rather than a long for fcntl().
ok guenther deraadt
jmc [Mon, 12 Jul 2010 16:28:29 +0000 (16:28 +0000)]
document gcc4; requested by brad
jmc [Mon, 12 Jul 2010 16:26:45 +0000 (16:26 +0000)]
ksh.1: add ((, )), ]], and `name' to the list of reserved words for compounds
sh.1: add ]] and `name' to the list; additionally document the commands
`select' (requested by Ross L Richardson) and [[
ok millert sobrado
espie [Mon, 12 Jul 2010 15:54:48 +0000 (15:54 +0000)]
missed one next -> return, as noticed by marco@
bluhm [Mon, 12 Jul 2010 14:35:13 +0000 (14:35 +0000)]
Merge duplicate log messages into one log_warn().
ok claudio@
espie [Mon, 12 Jul 2010 09:31:52 +0000 (09:31 +0000)]
need to copy f() parameters, otherwise strange bugs with sub expressions
may occur (bug in locality in @_ ?)
Add missing bagage to State.pm to be able to interact directly with
Makewhatis, later.
guenther [Mon, 12 Jul 2010 03:52:52 +0000 (03:52 +0000)]
After forking, clear the 'thread joining this one' pointer in the child,
as the child only has the one thread remaining.
ok marc@
chl [Sun, 11 Jul 2010 23:16:42 +0000 (23:16 +0000)]
remove unused variable and unused static prototype.
ok nicm@
nicm [Sun, 11 Jul 2010 17:06:45 +0000 (17:06 +0000)]
Return the command client return code with MSG_EXIT now that MSG_ERROR and
MSG_PRINT are unused.
New clients should be compatible with old tmux servers but vice versa may print
an error.
dhill [Sun, 11 Jul 2010 15:53:12 +0000 (15:53 +0000)]
bcrypt_gensalt is already declared in pwd.h
"sure" deraadt@
miod [Sun, 11 Jul 2010 14:09:10 +0000 (14:09 +0000)]
typo
espie [Sun, 11 Jul 2010 10:05:18 +0000 (10:05 +0000)]
move compare into LibSpec, it's not so specific to Signature after all
jmc [Sun, 11 Jul 2010 07:37:30 +0000 (07:37 +0000)]
sort SEE ALSO;
espie [Sun, 11 Jul 2010 07:27:25 +0000 (07:27 +0000)]
display updateset name alongside collisionreport (turns out it's not
always obvious)
espie [Sun, 11 Jul 2010 07:25:10 +0000 (07:25 +0000)]
tie back to bsd.port.mk, to make REVISION and EPOCH more obvious.
espie [Sun, 11 Jul 2010 07:19:05 +0000 (07:19 +0000)]
thinko (found by Daniel Dickman)
jordan [Sat, 10 Jul 2010 22:24:14 +0000 (22:24 +0000)]
Fixup structures to be correct size
ok claudio@
guenther [Sat, 10 Jul 2010 21:29:37 +0000 (21:29 +0000)]
A process on the zombie list can have a NULL p_pgrp if it sleeps when
grabbing allproclk in proc_zap(); skip such processes in sysctl(KERN_PROC*)
and handle the NULL pointer in ddb's ps.
ok tedu@
naddy [Sat, 10 Jul 2010 21:00:34 +0000 (21:00 +0000)]
Reduce the delays a bit in the miibus read/write routines.
Although with aditional 20us delays added just before returning
from miibus read/writes as required by the hardware.
Based on the Linux r8169 driver; from Brad.
drahn [Sat, 10 Jul 2010 20:55:14 +0000 (20:55 +0000)]
Add a bootstrap loader, this allow u-boot to auto-boot from the media
without modifying the u-boot environment.
drahn [Sat, 10 Jul 2010 20:47:10 +0000 (20:47 +0000)]
Remove debug print left in on last commit.
gilles [Sat, 10 Jul 2010 20:40:34 +0000 (20:40 +0000)]
fields are incorrectly named in structure descriptions
"of course" deraadt@
miod [Sat, 10 Jul 2010 19:40:06 +0000 (19:40 +0000)]
No mention of compat_freebsd anymore.
miod [Sat, 10 Jul 2010 19:38:36 +0000 (19:38 +0000)]
sun4e bits