Age | Commit message (Collapse) | Author |
|
|
|
from Martin Furter
|
|
|
|
will work and add PHY wake up code for RTL8401E.
From brad
|
|
|
|
|
|
--print-requires-private)
- process Requires.private before processing Requires, order matters
these are first steps towards a working --static. static doesn't work yet as
libraries get re-ordered in a funky way.
|
|
- fix another test which should fail now
|
|
it skips leading zeroes if there are any. To accommodate the
difference with the protocol we need to prepend those zeroes
ourselves.
Fixes PR 6601, tested by Pawel Wieleba, sthen, otto.
Huge thanks to Pawel for spending nearly a week testing diffs.
ok sthen
|
|
simplify: actually create a tmp directory hierarchy that exactly mimics
what fake contains. This avoids trouble with makewhatis checks.
Don't even try to remember what files are there, just wipe it all with
rmtree.
|
|
|
|
level that allows one to retrieve the original routing domain
of UDP datagrams diverted by the pf via "divert-to" with a
recvmsg(2).
ok claudio
|
|
|
|
|
|
|
|
symmetric.
dont leak bufs on xs failure and make sure we free the buf back to the
right dma pool.
|
|
like to be talked to on odd paths, and even luns like being talked to
on even paths.
|
|
|
|
scsi_init_inquiry(). cut the compiled INQUIRY code over to it.
ok and tweaks from krw@
ok matthew@
|
|
|
|
the rx ring, schedule a timeout to keep trying until it gets some.
a timeout is used here cos the chip doesnt have a way of reporting
if its out of descriptors or when there's a ring overflow. we have
to manage that ourselves in software.
mikeb reported this issue on an ipsec gateway. ipsec would consume
all the mbufs while they were stuck in crypto waiting for the cpu
to catch up, by which time it was too late to give more to the
hardware. without any rx descriptors the chip would never interrupt
and we'd never try to fill the ring again.
the fix was tested by and is ok mikeb@
|
|
fixes ssh-add for passphrase-protected ssh1-keys; noted by naddy@; ok djm@
|
|
ok millert@
|
|
Unknown whether this also applies to product id 3b23 as well as 3b22.
Problem reported by John Danks in PR6630
ok dlg@
|
|
|
|
Okay drahn@, ``Go ahead, don't wait for me'' miod@.
|
|
if defined WSDISPLAY_COMPAT_RAWKBD). Move keyboard array from dev/adb/keyboard.h
to dev/adb/akbdmap.h.
ok miod@
|
|
|
|
|
|
- zap --short-errors which isn't helping us
|
|
- move actual printing to STDERR to one place, this makes it easier to:
- honor $mode{estdout} (--errors-to-stdout) which was silently ignored untill now
|
|
- Factorize lots of prints into a common debug/error subroutine.
This reduces unneeded clutter when testing for $mode{printerr}
or $mode{debug}. Will be adjusted further when fixing --errors-to-stdout
|
|
- style nit
|
|
what is an operator and what is a valid version.
(all version comparison regress tests pass now)
- add back 'rc' support
ok sthen@
|
|
List. So turn a DIAGNOSTIC panic into returning failure.
ok mglocker@, miod@
|
|
|
|
help from jmc@
|
|
Problem found and fix tested by jmc@.
Note that the patch to Makefile.in is useful for two additional reasons:
1. It removes an ugly reimplementation of the bsd.man.mk .8.cat8 target.
2. It will be required anyway when installing source manuals in the future.
The bsd-wrapper patch looks redundant, but isn't. These rules are not
in bsd.man.mk because elsewhere, the source files (*.8 etc.) are part of
the source tree, not generated files.
|
|
- only do the above check, and print an error if we lack a required field
if $mode{printerr}.
- put code setting $D together
|
|
|
|
- tweak other corruption tests
- add reminder to add tests for --static
|
|
in FreeBSD. This seems to fix a lot of problems on 82599 based cards
including the VLAN problems and the corrupted receives.
Putting this in now to work on it in tree since a few additional things
need to be merged. Tested by myself, deraadt@ and jsg@ on both 98er and
99er cards.
OK jsg@, deraadt@
|
|
|
|
|
|
|
|
|
|
the correct code according whether the daemon did start successfully or
not.
rc_wait()
This function has been extended, first we need to pass in which mode we
are running (start or stop) and second we can pass a number of seconds
to wait (optionnal, will default to 30s).
The function will return the correct code whether we are running during
"rc_cmd start" or "rc_cmd stop".
rc_cmd() start
If we are running in background mode, then we call rc_wait with the
"start" argument.
The sleep(1) is needed to prevent a race condition where the process
will appear in the list before failing and rc_check will see it as
running. Call rc_post() when failing to prevent being left in an
inconsistent state (because rc_pre() would have run successfully)
rc_cmd() stop
We are now calling rc_wait with the "stop" argument.
"looks good" sthen@, ok robert@
|
|
|
|
upcomming ix(4) update.
|
|
least one chip sii3112 or sii314, owned by henning) that spuriously
returns failure. This is only backing out one of the dying cases.
As well, I have found one other case where attempts are made to advance
IO even after obvious failure. I suspect that I should find that issue
next.
discussed with henning, kettenis, and matthew
|