summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix build in the !NOATM case by using the begemot library in place oftrhodes2004-09-245-7/+35
| | | | | | | | using libisc which was a part of BIND8. Discussed with: des, re, dougb Submitted by: harti (one part) Reviewed by: harti (previous version)
* This commit was generated by cvs2svn to compensate for changes in r135768,trhodes2004-09-243-0/+968
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of harti's begemot library.trhodes2004-09-243-0/+968
|
* Ruslan has educated me both on the wisdom of why this approach isdougb2004-09-241-9/+6
| | | | | | better than mine, and why to wait for review. Submitted by: ru
* Few (trailing) whitespace and spelling fixes.joerg2004-09-241-6/+6
|
* Protect fdc->flags within the worker thread, too.joerg2004-09-241-1/+6
| | | | | | 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.
* Sort forward declared structures.jhb2004-09-241-2/+2
|
* Some more whitespace, style, and comment fixes.jhb2004-09-241-14/+16
| | | | Submitted by: bde (mostly)
* Add a proc *p pointer for td->td_proc to make this code easier to read.jhb2004-09-241-8/+8
|
* Remove a duplicated word.blackend2004-09-241-1/+1
| | | | Submitted by: Pawel Worach <pawel.worach@telia.com>
* add my script that helps me handle MFC's. It takes in a commit messagejmg2004-09-242-1/+31
| | | | | | | 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..
* Document that kthread_exit()ing will cause a wakeup(9) on the threadjoerg2004-09-241-2/+9
| | | | | | handle. MFC after: 1 week
* Retire the BIND 8 sources.des2004-09-24351-139105/+0
|
* It's named.pid, not named/pid.des2004-09-241-1/+1
| | | | Pointy hat to: dougb@
* Improve the panic message for a busted MP table with conflicting entriesjhb2004-09-241-1/+3
| | | | | | | for the same PCI interrupt. Tested by: Pavel Gubin pg at ie dot tusur dot ru MFC after: 3 days
* Fix the WANT_BIND_LIBS knob by correctly spelling it as WITH_BIND_LIBSdougb2004-09-2411-16/+30
| | | | | | | | | 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.
* Allow %' to be used as a format flag by printf(1). This makes itkeramida2004-09-241-1/+1
| | | | | | | | | | 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
* Print number of "waits" per second during transmission, not just waitsrwatson2004-09-241-0/+1
| | | | per call to send().
* Reconnect namedb. While it may not be optimal, our old named.conf fromdes2004-09-241-2/+0
| | | | BIND 8 is quite usable for BIND 9.
* Don't look for swap blocks in objects that aren't swap-backed.das2004-09-241-0/+3
| | | | | | | I expect that this will fix the following panic, reported by Jun: swap_pager_isswapped: failed to locate all swap meta blocks MT5 candidate
* More remnants of BIND 8; these live in usr.sbin now.des2004-09-243-34/+0
|
* Add mfc.des2004-09-241-0/+2
|
* A simple shell script to help MFC an entire directory to a branch where itdes2004-09-242-0/+48
| | | | does not already exist.
* Break the NO_BIND knob out from the pack, and begin documentingdougb2004-09-242-4/+12
| | | | the finer granularity for the various BIND features.
* Don't expose BIND libraries and their headers to the public by default,ru2004-09-2420-32/+94
| | | | | | | | | | | | | | | 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
* Indent.maxim2004-09-241-7/+7
|
* o Merge rev. 1.5 libexec/ftpd/ftpd.c from DragonflyBSD:maxim2004-09-241-0/+2
| | | | | | | | | | | | 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
* Lock the flags field with the mutex.phk2004-09-241-8/+25
| | | | Improve a number of comments.
* _tcb_ctor takes two args.cognet2004-09-244-4/+4
|
* Add ttyu0 as a serial console, as we're using the uart(4) driver on arm.cognet2004-09-241-0/+1
|
* Sync with DragonFly BSD.simokawa2004-09-241-17/+93
|
* o Turn net.inet.ip.check_interface sysctl off by default.maxim2004-09-241-1/+1
| | | | | | | | | | | 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
* Fix a comment typo: s/neccessary/necessary/keramida2004-09-241-1/+1
|
* Document vfs.root.mountdelay value.pjd2004-09-242-0/+9
| | | | Reminded by: ru
* Rename 'mount_root_delay' tunable to 'vfs.root.mountdelay', which fitspjd2004-09-241-1/+1
| | | | | | a bit better to our current naming scheme. Discussed with: ru
* XXX mark two places where we do not hold a threadcount on the dev whenphk2004-09-242-0/+3
| | | | | | | | 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.
* Remove the cdevsw() function which is now unused.phk2004-09-242-9/+0
|
* Hold threadcount while throbbing cdevsw in our underlying driver.phk2004-09-241-20/+25
| | | | | This is a bit heavyhanded, and will be simplified once the tty code learns to properly deal with disappearing hw and drivers.
* Hold thread reference while we frob cdevsw.phk2004-09-241-3/+9
|
* es_ES monetdef changed from spanish Ptas. to Euro withoutache2004-09-241-2/+2
| | | | | | | switching to cents PR: 67549 Submitted by: Jose M Rodriguez <freebsd@wanadoo.es>
* Hold proper thread count while frobbing drivers ioctl.phk2004-09-242-12/+26
|
* Hold threadcount reference when we call into the underlying consolephk2004-09-241-12/+52
| | | | driver.
* Eliminate devsw() call, we are not dereferencing the pointer.phk2004-09-241-1/+1
|
* Remove devsw() call missed in last commit.phk2004-09-241-1/+0
|
* Don't read the byte at *argv[strlen(*argv) + 1].das2004-09-241-1/+1
| | | | PR: 71743
* Remove SI_ISDISK, I found a better solution.phk2004-09-241-1/+0
|
* Assert topology is held in g_dev_getprovider().phk2004-09-241-3/+5
| | | | | 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.
* Hold thread reference while frobbing cdevsw.phk2004-09-241-18/+24
|
* Make sure we don't call _thr_start_sig_daemon() when SYSTEM_SCOPE_ONLY is ↵ssouhlal2004-09-242-4/+6
| | | | | | defined. This makes libpthread usable on powerpc. Approved by: grehan (mentor), deischen
* Remove __isnanl() to avoid conflicting with the same function in libm.das2004-09-241-10/+0
| | | | | | | | | | | __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
OpenPOWER on IntegriCloud