openbsd
14 years agoPlug memory leak.
ray [Sat, 17 Jul 2010 00:00:32 +0000 (00:00 +0000)]
Plug memory leak.

OK nicm

14 years agoSimplify print_status by removing NULL handling.
ray [Fri, 16 Jul 2010 23:27:58 +0000 (23:27 +0000)]
Simplify print_status by removing NULL handling.

OK nicm

14 years agoClose FILEs when fork fails.
ray [Fri, 16 Jul 2010 21:47:02 +0000 (21:47 +0000)]
Close FILEs when fork fails.

OK nicm

14 years agoExit strip(1) with an error, if an objfile could not be read.
mpf [Fri, 16 Jul 2010 21:44:06 +0000 (21:44 +0000)]
Exit strip(1) with an error, if an objfile could not be read.
Input and OK millert@

14 years agorevisison -> revision
ray [Fri, 16 Jul 2010 19:58:22 +0000 (19:58 +0000)]
revisison -> revision

14 years agoCombine two diff_output lines into one, from diff.
ray [Fri, 16 Jul 2010 17:53:20 +0000 (17:53 +0000)]
Combine two diff_output lines into one, from diff.

OK stsp xsa nicm

14 years agoMove the description of load averages/top line to a better place.
lum [Fri, 16 Jul 2010 16:27:02 +0000 (16:27 +0000)]
Move the description of load averages/top line to a better place.
Suggestions and ok canacar@

14 years agofix up the mini synopses in the subsections; fix from ingo
jmc [Fri, 16 Jul 2010 16:10:20 +0000 (16:10 +0000)]
fix up the mini synopses in the subsections; fix from ingo

14 years agomore timing paranoia - compare all parts of the expected decrypted
djm [Fri, 16 Jul 2010 14:07:35 +0000 (14:07 +0000)]
more timing paranoia - compare all parts of the expected decrypted
data before returning. AFAIK not exploitable in the SSH protocol.
"groovy" deraadt@

14 years agodiff exits 2 on error, not 1.
ray [Fri, 16 Jul 2010 08:06:00 +0000 (08:06 +0000)]
diff exits 2 on error, not 1.

OK millert

14 years agoWe never create or destroy pmaps from interrupt context, so wrapping the
kettenis [Fri, 16 Jul 2010 06:22:31 +0000 (06:22 +0000)]
We never create or destroy pmaps from interrupt context, so wrapping the
associated pool calls in splvm()/splx() is unnecessary and confusing.

ok deraadt@, drahn@

14 years agoMake the terminal checking capability of systat better.
lum [Fri, 16 Jul 2010 05:22:48 +0000 (05:22 +0000)]
Make the terminal checking capability of systat better.
Checks taken from top(1) screen.c/init_termcap()
ok canacar@ sthen@ nicm@

14 years agoavoid bogus compiler warning
djm [Fri, 16 Jul 2010 04:45:30 +0000 (04:45 +0000)]
avoid bogus compiler warning

14 years agogc sc_lock. it is unused. ioctl commands can run concurrently now that
dlg [Fri, 16 Jul 2010 01:23:11 +0000 (01:23 +0000)]
gc sc_lock. it is unused. ioctl commands can run concurrently now that
iopools handle sleeping for ccbs.

14 years agoText ending in a full stop, exclamation mark or question mark
schwarze [Fri, 16 Jul 2010 00:34:33 +0000 (00:34 +0000)]
Text ending in a full stop, exclamation mark or question mark
should not flag the end of a sentence if:

1) The punctuation is followed by closing delimiters
and not preceded by alphanumeric characters, like in
"There is no full stop (.) in this sentence"

or

2) The punctuation is a child of a macro
and not preceded by alphanumeric characters, like in
"There is no full stop
.Pq \&.
in this sentence"

jmc@ and sobrado@ like this

14 years agoAfter .Sm on, spacing ought to restart right away, before the next token,
schwarze [Fri, 16 Jul 2010 00:03:29 +0000 (00:03 +0000)]
After .Sm on, spacing ought to restart right away, before the next token,
and not with a delay, after the next token.  But be careful not to cause
leading white space at the beginning of a line or column.
Improves chmod(1), ksh(1), tar(1), ps(1) and probably many more.
ok kristaps@ jmc@ sobrado@

14 years agowhen mpii(4) gets an async event (ie, sas topology change or
dlg [Thu, 15 Jul 2010 23:52:32 +0000 (23:52 +0000)]
when mpii(4) gets an async event (ie, sas topology change or
integrated raid has changed state) that needs an acknowledgement,
it currently goes scsi_io_get. because events are handled at interrupt
time it cannot wait for ccbs, so if the ccb pool is empty, it wont
get a ccb to ack the event with.

this cuts the code over to using iohandlers to ack these events.
when an ack is required, it shoves the rcb onto a queue and schedules
an iohandler to be run whenever a ccb becomes available. the majority
of the time the ccb will be there and the reply will happen
immediately. however, if the hba is busy we might be deferred until
some other command completes and gives its ccb back to the pool.

because it looks like we can now receive many events at a time
(rather than just one at a time like in mpi), im using a queue to
store the events in. the alternative was an iohandler per rcb, but
that struck me as a bit too heavy.

mikeb is really impressed
no objection from krw@

14 years agodocument .Sm; prodded by kristaps@
schwarze [Thu, 15 Jul 2010 23:46:58 +0000 (23:46 +0000)]
document .Sm; prodded by kristaps@

14 years agosome escapes i missed;
jmc [Thu, 15 Jul 2010 21:54:20 +0000 (21:54 +0000)]
some escapes i missed;

14 years agocvs and rcs use diff_output() to print everything since it is not
ray [Thu, 15 Jul 2010 21:32:37 +0000 (21:32 +0000)]
cvs and rcs use diff_output() to print everything since it is not
always to stdout. A large number of differences are due to this.
This diff reduces many more differences between diff and cvs/rcs.
Personally I think it's kinda ugly. =(

"Looks fine" millert

14 years agorepair incorrect block nesting, which screwed up indentation;
schwarze [Thu, 15 Jul 2010 21:20:38 +0000 (21:20 +0000)]
repair incorrect block nesting, which screwed up indentation;
problem reported and fix OK by jmc@

14 years agoMore delimiters that need quoting inside macros, hunted down by jmc@,
schwarze [Thu, 15 Jul 2010 20:51:38 +0000 (20:51 +0000)]
More delimiters that need quoting inside macros, hunted down by jmc@,
who asked me to commit because he is just running out of the door.

14 years agoAccording to Linux ath9k, the AR9280 1.0 was never sold.
damien [Thu, 15 Jul 2010 20:37:38 +0000 (20:37 +0000)]
According to Linux ath9k, the AR9280 1.0 was never sold.
Since this is the only chip revision that requires split TKIP MIC keys,
remove code that deal with that.

14 years agoremove dead code (AR9286 1.1 does not really exist.)
damien [Thu, 15 Jul 2010 20:25:27 +0000 (20:25 +0000)]
remove dead code (AR9286 1.1 does not really exist.)

14 years agoWhen the first argument or arguments of a macro are opening delimiters
schwarze [Thu, 15 Jul 2010 20:04:35 +0000 (20:04 +0000)]
When the first argument or arguments of a macro are opening delimiters
(parentheses and/or square brackets), both modern groff and mandoc first
output those leading delimiters as plain text, then start the macro scope
after these opening delimiters.  This is similar to printing trailing
punctuation and trailing closing delimiters on a macro line outside and
after the macro scope.  For example, ".Sq ( text )" is "(`text')",
not "`(text)'".  Thus, we now need to quote leading opening delimiters
when we want them inside the macro scope.
These are the cases in src/bin.

"makes sense" jmc@

14 years agosync ar5008_bb_load_noisefloor() with ar9003_bb_load_noisefloor().
damien [Thu, 15 Jul 2010 19:38:40 +0000 (19:38 +0000)]
sync ar5008_bb_load_noisefloor() with ar9003_bb_load_noisefloor().
we must not restore the noisefloor values if load failed on AR5008
family too.

14 years agofix PDADC value for target index (AR5008 family only.)
damien [Thu, 15 Jul 2010 19:33:34 +0000 (19:33 +0000)]
fix PDADC value for target index (AR5008 family only.)

14 years agoOn AR9285, the antCtrlCommon ROM field may have the upper 16 bits set.
damien [Thu, 15 Jul 2010 19:29:00 +0000 (19:29 +0000)]
On AR9285, the antCtrlCommon ROM field may have the upper 16 bits set.
Remove an incorrect mask to fix antenna diversity on some chips.

14 years agosync initialization values for AR9160 and AR9280 with ath9k.
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.

14 years agoRemove initialization values for chips that never made it into production:
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.

14 years agoRemove unused arguments from check(). From cvs/rcs.
ray [Thu, 15 Jul 2010 18:31:33 +0000 (18:31 +0000)]
Remove unused arguments from check(). From cvs/rcs.

OK millert

14 years agoDie immediately if pread fails. It's a fatal error so treat it as
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

14 years agoUse warnx instead of warn since errno wasn't set. From diff.
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

14 years agosync the elf types and their comments; ok millert
jmc [Thu, 15 Jul 2010 18:15:31 +0000 (18:15 +0000)]
sync the elf types and their comments; ok millert

14 years agodocument the missing "note section";
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

14 years agoknock out MetaGeek Wi-Spy 2.4i from attaching to uhid.
sthen [Thu, 15 Jul 2010 15:45:48 +0000 (15:45 +0000)]
knock out MetaGeek Wi-Spy 2.4i from attaching to uhid.

14 years agosync
sthen [Thu, 15 Jul 2010 15:45:15 +0000 (15:45 +0000)]
sync

14 years agoadd MetaGeek Wi-Spy 2.4i
sthen [Thu, 15 Jul 2010 15:44:55 +0000 (15:44 +0000)]
add MetaGeek Wi-Spy 2.4i

14 years agostore openssl error output during verification, and log it if it didn't work.
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.

14 years agoCorrect function in panic string. From Christophe Fillot
claudio [Thu, 15 Jul 2010 13:30:45 +0000 (13:30 +0000)]
Correct function in panic string. From Christophe Fillot

14 years agoSync with diff/diffreg.c r1.75:
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

14 years agowhitespace
espie [Thu, 15 Jul 2010 10:37:32 +0000 (10:37 +0000)]
whitespace

14 years agom_getptr(m, 0, ...) may return an mbuf different from m -- if m has no
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

14 years ago* Comment poll support in conf.h
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

14 years agoadd two new members to structs audio_encoding and audio_prinfo.
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

14 years agolimit the pools from 14 bits down. We cannot use PAGE_SIZE because it
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 :)

14 years agothe uvm_km_putpage is calling into tangly uvm guts again on not pmap direct.
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]

14 years agosync
sthen [Wed, 14 Jul 2010 23:54:14 +0000 (23:54 +0000)]
sync

14 years agosync from mirrors.dat
sthen [Wed, 14 Jul 2010 23:47:54 +0000 (23:47 +0000)]
sync from mirrors.dat

14 years agopass the correct af if not specified.
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@

14 years agoReturn -1 on error as advertised.
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

14 years agoimplement poll() for video(4)
jakemsr [Wed, 14 Jul 2010 21:24:33 +0000 (21:24 +0000)]
implement poll() for video(4)
ok mglocker

14 years agoThe append side of a socketbuffer is not allowed to call sbflush().
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.

14 years agoIn urndis_decap(), delay the memcpy() for as long as possible. There is
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

14 years agourndis_newbuf() is only called with NULL as it's third argument so just
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

14 years agoNewer 8168x and 810x chipsets have a different way of stopping the chipset.
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.

14 years agoMake pane/window wrapping more logical (so with 10 windows, +10 from
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.

14 years agoAnother hand knitted offsetof() that needs to die. This time steal the
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.

14 years agofinally ssh synopsis looks nice again! this commit just removes a ton of
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;

14 years agouse offsetof() instead of self knitted version to please gcc4.
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

14 years agoZero the pitem array so checking items after those used works as
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

14 years agoLet vga_pci.c build in kernel configs without acpi. ok kettenis@
matthieu [Wed, 14 Jul 2010 11:21:53 +0000 (11:21 +0000)]
Let vga_pci.c build in kernel configs without acpi. ok kettenis@

14 years agoEliminate some unused malloc(9) type defines. Also get rid of the
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@

14 years agoFix a mrt fd leak by moving the block which closes finished dumps.
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@

14 years agoadd regress tests for upcoming redirection changes to ftp
halex [Wed, 14 Jul 2010 06:19:26 +0000 (06:19 +0000)]
add regress tests for upcoming redirection changes to ftp

14 years agoSCSI HBA drivers need to report success/error through xs, not xs->bp.
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.

14 years agohandle printing of RTM_DESYNC in route monitor.
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.

14 years agohandle RTM_DESYNC. if the kernel says we're out of sync with the kernel
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.

14 years agoif we produce a lot of rtsock messages it is possible we will hit a
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.

14 years agooops; Fred Crowson
deraadt [Wed, 14 Jul 2010 00:15:07 +0000 (00:15 +0000)]
oops; Fred Crowson

14 years agos/timing_safe_cmp/timingsafe_bcmp/g
djm [Tue, 13 Jul 2010 23:13:16 +0000 (23:13 +0000)]
s/timing_safe_cmp/timingsafe_bcmp/g

14 years agoupdate our recommended hash function to sha256 and note md5 is broken.
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

14 years agouse PHY semaphore on 8275/82576 adapters in addition to 80003es2lan.
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.

14 years agoDon't silently overwrite untracked local files with newly-added
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

14 years agoTest for the awesome let's-silently-overwrite-local-files bug.
nicm [Tue, 13 Jul 2010 21:31:17 +0000 (21:31 +0000)]
Test for the awesome let's-silently-overwrite-local-files bug.

14 years agodelete unnccessary include
deraadt [Tue, 13 Jul 2010 21:10:50 +0000 (21:10 +0000)]
delete unnccessary include

14 years agorename some thread related interfaces so they are logical
deraadt [Tue, 13 Jul 2010 21:01:05 +0000 (21:01 +0000)]
rename some thread related interfaces so they are logical

14 years agoregress for merge bug.
nicm [Tue, 13 Jul 2010 20:47:56 +0000 (20:47 +0000)]
regress for merge bug.

14 years agoDo not put the file into conflict if it is no longer modified (user has
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

14 years agoPR 6423 fix for cvs too, requested by xsa@.
nicm [Tue, 13 Jul 2010 20:41:55 +0000 (20:41 +0000)]
PR 6423 fix for cvs too, requested by xsa@.

14 years agoDon't read before the beginning of the log message if it is zero-length
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

14 years agofix overflow of dirsize; from FreeBSD; PR 6426; ok beck@ millert@
otto [Tue, 13 Jul 2010 18:52:25 +0000 (18:52 +0000)]
fix overflow of dirsize; from FreeBSD; PR 6426; ok beck@ millert@

14 years agoDo not put a data buffer on the stack; malloc it (we will use dma_alloc
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

14 years agoneed pool.h to initialize the dma allocator
deraadt [Tue, 13 Jul 2010 16:49:16 +0000 (16:49 +0000)]
need pool.h to initialize the dma allocator

14 years agodma_alloc() and dma_free(). This is a thin shim on top of a bag of
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

14 years agohandle Tm, like in tiff2ps
espie [Tue, 13 Jul 2010 15:39:03 +0000 (15:39 +0000)]
handle Tm, like in tiff2ps

14 years agowork around a strange problem in locality of @_ by copying stuff.
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@

14 years agoFix (pflow) display in rule printing. Spotted by dhill@, ok henning@
sthen [Tue, 13 Jul 2010 13:11:57 +0000 (13:11 +0000)]
Fix (pflow) display in rule printing. Spotted by dhill@, ok henning@

14 years agoFix dmesg printing.
kettenis [Tue, 13 Jul 2010 13:07:35 +0000 (13:07 +0000)]
Fix dmesg printing.

ok krw@, claudio@

14 years ago- find.fp_wsize *= find.fp_mss, 1;
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>

14 years agoAvoid double free in ldap modify requests. The values received in the
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.

14 years agoWhen cleaning /tmp at boot, run the slower find unconditionally.
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@.

14 years agoimplement a timing_safe_cmp() function to compare memory without leaking
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@

14 years agoFix a broken mask for core temperature 1 and 2, and bias properly for degC.
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.

14 years agono more rmd160(1);
jmc [Tue, 13 Jul 2010 07:01:23 +0000 (07:01 +0000)]
no more rmd160(1);

14 years agono need for userland to refer to section 2/3 pages;
jmc [Tue, 13 Jul 2010 06:57:37 +0000 (06:57 +0000)]
no need for userland to refer to section 2/3 pages;

14 years agosync
deraadt [Tue, 13 Jul 2010 06:03:59 +0000 (06:03 +0000)]
sync

14 years agoFix PR 6417: if we're starting a thread and there's no other threads
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@

14 years agoFix PR 6376: restore more thread library state if execve fails,
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@

14 years agoMerge release 1.10.4 (all code by kristaps@), providing four new features:
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.