| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
using libisc which was a part of BIND8.
Discussed with: des, re, dougb
Submitted by: harti (one part)
Reviewed by: harti (previous version)
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
|
|
|
|
|
|
| |
better than mine, and why to wait for review.
Submitted by: ru
|
| |
|
|
|
|
|
|
| |
Use kthread_exit() instead of falling through the end of the worker
thread's main function. Since kthread_exit() wakeup(9)s everyone
sleeping on the thread handle, drop the superfluous wakeup() call.
|
| |
|
|
|
|
| |
Submitted by: bde (mostly)
|
| |
|
|
|
|
| |
Submitted by: Pawel Worach <pawel.worach@telia.com>
|
|
|
|
|
|
|
| |
and generates the proper (hopefully) update -j lines + commit line to do
the MFC... This has saved me a lot of time doing recent MFC's...
You still should use diff to verify the changes before doing the commit..
|
|
|
|
|
|
| |
handle.
MFC after: 1 week
|
| |
|
|
|
|
| |
Pointy hat to: dougb@
|
|
|
|
|
|
|
| |
for the same PCI interrupt.
Tested by: Pavel Gubin pg at ie dot tusur dot ru
MFC after: 3 days
|
|
|
|
|
|
|
|
|
| |
to match how similar syntax is used in the ports system. Thanks to kris
for pointing out my mistake here.
Install the lwres library unless the user defines NO_BIND, or the new
knob, NO_BIND_LIBS_LWRES. There is at least one potential customer
for this library in the wings. Thanks to nectar for the reminder.
|
|
|
|
|
|
|
|
|
|
| |
possible to print the thousands separator in the locale setups that
have one, by something like this:
$ env -i LC_NUMERIC=en_US.ISO8859-1 ./printf "%'0.2f\n" 12345
12,345.00
Reviewed by: das
|
|
|
|
| |
per call to send().
|
|
|
|
| |
BIND 8 is quite usable for BIND 9.
|
|
|
|
|
|
|
| |
I expect that this will fix the following panic, reported by Jun:
swap_pager_isswapped: failed to locate all swap meta blocks
MT5 candidate
|
| |
|
| |
|
|
|
|
| |
does not already exist.
|
|
|
|
| |
the finer granularity for the various BIND features.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
but have a knob (WANT_BIND_LIBS) to build and install them in /usr/lib
and /usr/include. Rumors are that this may be useful at a later point,
let's see.
What this really means is that all BIND libraries are now internal to
buildworld (by default, unless WANT_BIND_LIBS is defined), and linked
statically into various BIND executables.
While here, removed redundant -I's from CFLAGS in lib/bind makefiles.
Sponsored by: des
OK'ed by: dougb
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Do not unconditionally fork() after accept(). accept() can
return -1 due to an interrupted system call (i.e. SIGCHLD).
If we fork in that case ftpd can get into an
accept()/SIGCHLD/fork/[fail]/repeat loop.
Reported-by: fabian <fabian.duelli@bluewin.ch>
Obtained from: DragonflyBSD
MFC after: 1 month
|
|
|
|
| |
Improve a number of comments.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
When net.inet.ip.check_interface was MFCed to RELENG_4 3+ years ago in
rev. 1.130.2.17 ip_input.c it was 1 by default but shortly changed to
0 (accidently?) in rev. 1.130.2.20 in RELENG_4 only. Among with the
fact this knob is not documented it breaks POLA especially in bridge
environment.
OK'ed by: andre
Reviewed by: -current
|
| |
|
|
|
|
| |
Reminded by: ru
|
|
|
|
|
|
| |
a bit better to our current naming scheme.
Discussed with: ru
|
|
|
|
|
|
|
|
| |
frobbing the cdevsw.
In both cases we examine only the cdevsw and it is a good question if we
weren't better off copying those properties into the cdev in the first
place. This question will be revisited.
|
| |
|
|
|
|
|
| |
This is a bit heavyhanded, and will be simplified once the tty code
learns to properly deal with disappearing hw and drivers.
|
| |
|
|
|
|
|
|
|
| |
switching to cents
PR: 67549
Submitted by: Jose M Rodriguez <freebsd@wanadoo.es>
|
| |
|
|
|
|
| |
driver.
|
| |
|
| |
|
|
|
|
| |
PR: 71743
|
| |
|
|
|
|
|
| |
Don't call devsw(). It is not necessary, and we do not need to hold dev_lock
to compare the devsw pointer to our own since we do not dereference it.
|
| |
|
|
|
|
|
|
| |
defined. This makes libpthread usable on powerpc.
Approved by: grehan (mentor), deischen
|
|
|
|
|
|
|
|
|
|
|
| |
__isnan() and __isnanf() must remain in libc for hysterical raisins.
On the other hand, __isnanl() must live in libm because libm uses it
internally and can't depend on older versions of libc to provide it.
Fortunately, we don't need __isnanl() in both libraries.
Prodded by: ale
PR: 71698
MT5 candidate
|