summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add prototypes for ether_aton_r() and ether_ntoa_r() missed in previousrwatson2007-05-131-0/+2
| | | | commit.
* Add ether_aton_r and ether_ntoa_r to public symbol map for libc.rwatson2007-05-131-0/+2
| | | | Pointed out by: deischen
* Add some notes about symbol versioning and the switch to libthr.deischen2007-05-131-0/+13
|
* Bump FreeBSD version for enabling of symbol versioning and changingdeischen2007-05-131-1/+1
| | | | default threading library to libthr.
* Remove .mcount from gmon's Symbol map and add it to the appropriatedeischen2007-05-135-2/+27
| | | | | | | arch. It can be named differently depending on the arch (.mcount, _mcount). Submitted by: marius
* Enable symbol versioning by default. Use WITHOUT_SYMVER to disable it.deischen2007-05-1318-786/+62
| | | | | | | | | | Warning, after symbol versioning is enabled, going back is not easy (use WITHOUT_SYMVER at your own risk). Change the default thread library to libthr. There most likely still needs to be a version bump for at least the thread libraries. If necessary, this will happen later.
* Add regression tests for ethers(3) functions, including new _r variants.rwatson2007-05-133-1/+246
| | | | | | | | | | Four tests currently fail: test_ether_line_bad_1() and test_ether_line_bad_2() due to bugs in ether_line(3). test_ether_ntohost() and test_ether_hostton() due to not being fully implemented tests.
* Add and document ether_ntoa_r() and ether_aton_r() functions, which acceptrwatson2007-05-132-37/+85
| | | | | | passed storage buffers rather than using static storage. Reimplement ether_ntoa() and ether_aton() in terms of these functions. These variants are thread-safe.
* Move to more conformant style(9) before making functional changes.rwatson2007-05-131-51/+35
|
* o Add a script to check ntpd(8) state. Default is off.maxim2007-05-133-1/+37
| | | | | | PR: conf/112604 Submitted by: Oliver Fromme MFC after: 1 month
* Disable PREEMPTION option. It causes some problem on pc98.nyan2007-05-131-1/+1
|
* Bump config(8) version and build requirement for config(8) to 600006. Thiswkoszek2007-05-139-9/+9
| | | | | | | | | | is caused by my latest changes to config(8). You're supposed to install new config(8) in order to prevent yourself from seeing a warning about old version of that tool. You should configure the kernel with a new config(8) then. Oked by: rwatson, cognet (mentor)
* Replace rev. 1.9 with patch from OpenBSD.pav2007-05-121-3/+3
| | | | | | Submitted by: Ray Lai <ray@cyth.net> Obtained from: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/tip/acu.c.diff?r1=1.13&r2=1.14 MFC after: 1 week
* This is loser's commit message:wkoszek2007-05-121-1/+12
| | | | | | | | | | | Remember about tricky cases, where options contain unfriendly characters, from the ANSI-C string point of view ('"' in this case). The x09 build breakage was caused by SC_CUT_SEPCHARS options. I did test this patch number of times; each time unprofessionally and inappropriately. OKed by: cognet (mentor)
* Replace incomprehensive description of -m by much clearer text from OpenBSD,pav2007-05-121-2/+3
| | | | | | | | | with the exception of one word. PR: docs/112465 Submitted by: naddy Obtained from: OpenBSD MFC after: 1 week
* Replace a fairly opaque sentence with a much clearer wording from NetBSD.pav2007-05-121-2/+2
| | | | | | PR: docs/101330 (inspired by) Submitted by: Peter Gildea <peter@gildea.com> Obtained from: NetBSD
* Add ${.CURDIR} before kernconf.tmpl in order to let the build see newlywkoszek2007-05-121-1/+1
| | | | | | added kernconft.tmpl file. Approved by: cognet (mentor)
* Improve INCLUDE_CONFIG_FILE support.wkoszek2007-05-128-90/+422
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change will let us to have full configuration of a running kernel available in sysctl: sysctl -b kern.conftxt The same configuration is also contained within the kernel image. It can be obtained with: config -x <kernelfile> Current functionality lets you to quickly recover kernel configuration, by simply redirecting output from commands presented above and starting kernel build procedure. "include" statements are also honored, which means options and devices from included files are also included. Please note that comments from configuration files are not preserved by default. In order to preserve them, you can use -C flag for config(8). This will bring configuration file and included files literally; however, redirection to a file no longer works directly. This commit was followed by discussion, that took place on freebsd-current@. For more details, look here: http://lists.freebsd.org/pipermail/freebsd-current/2007-March/069994.html http://lists.freebsd.org/pipermail/freebsd-current/2007-May/071844.html Development of this patch took place in Perforce, hierarchy: //depot/user/wkoszek/wkoszek_kconftxt/ Support from: freebsd-current@ (links above) Reviewed by: imp@ Approved by: imp@
* o Fix several style bugs in the previous commit.maxim2007-05-121-7/+15
| | | | Prodded by: bde
* Talk more about swap backingpav2007-05-121-1/+8
| | | | | | PR: docs/78041 (inspired by) Submitted by: Lars Kristiansen <lars+lister.freebsd@adventuras.no> MFC after: 1 week
* Fix crash when using 'du' capability: NULL return of strpbrk was not handledpav2007-05-121-2/+2
| | | | | | | PR: bin/108368 Reported by: Ivo Hazmuk <ivo@vutbr.cz> Submitted by: rdivacky MFC after: 2 weeks
* Remove cred argument, which was removed from code by phk two years agopav2007-05-122-7/+3
| | | | | | PR: docs/110200 Submitted by: Jamie Jones <jamie@bishopston.net> MFC after: 1 week
* Correct two typospav2007-05-121-2/+2
| | | | | | PR: docs/66771 Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us> MFC after: 1 week
* Remove %m formatter, it's ifdef 0'ed in the code from the very beginningpav2007-05-121-2/+0
| | | | MFC after: 1 week
* Expand documentation for LD_TRACE_LOADED_OBJECTS_FMT? variablespav2007-05-121-0/+6
| | | | | | PR: docs/66265 (inspired by) Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us> MFC after: 1 week
* Expand documentation of -f optionpav2007-05-121-1/+8
| | | | | | PR: docs/66265 Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us> MFC after: 1 week
* Document /boot/mbr (non-interactive boot block)pav2007-05-121-0/+10
| | | | | | PR: doc/111840 Submitted by: Warren Block <wblock@wonkity.com> MFC after: 1 week
* Fix -D description to read debug_optionspav2007-05-121-1/+1
| | | | | | PR: doc/97939 Submitted by: Serg Podtynnyi <n-ice@yandex.ru> MFC after: 1 week
* o Make iostat -Ix work: print per-interval I/O extended statistics.maxim2007-05-121-7/+25
| | | | | | PR: bin/112559 Submitted by: Dan Nelson MFC after: 2 weeks
* Add missing .El.brueffer2007-05-121-0/+1
| | | | Found by: man2hwnotes.pl
* Add missing .El.brueffer2007-05-121-0/+1
| | | | Found by: man2hwnotes.pl
* axe(4) supports altq now.brueffer2007-05-122-2/+4
|
* Add missing curly braces.brueffer2007-05-121-1/+2
| | | | Approved by: rwatson (mentor)
* ALTQify.brueffer2007-05-121-5/+7
| | | | | | | Submitted by: J.R. Oldroyd Reviewed by: mlaier Approved by: rwatson (mentor) MFC after: 1 week
* Remove compat ifdefs for FreeBSD versions < 500014, makes the codebrueffer2007-05-1212-120/+3
| | | | | | | quite a bit easier to read. Approved by: rwatson (mentor) MFC after: 1 weeks
* - Add bits for userland profiling. For sun4u this is compile-tested only.marius2007-05-113-8/+73
| | | | - Replace magic 14 with PIL_TICK.
* Autogenerate hardware notes for hptiop(4).brueffer2007-05-112-0/+3
|
* Connect hptiop(4) to the build. Only install hptmv(4) on i386 and amd64.brueffer2007-05-111-1/+4
|
* Manpage for the hptiop(4) driver. Could use a little more content.brueffer2007-05-111-0/+80
|
* New release notes:brueffer2007-05-111-1/+21
| | | | | | | | | | | - vm.kmem_size_min tunable added - fdisk -p - ipfw RH0 and MIPv6 RH2 filtering - pw -M - Camellia cipher added Modified release notes: - twa(4) was actually updated to version 3.70.03.006
* Mistake in the logic deciding what adapters needjfv2007-05-111-1/+2
| | | | | | | | to map the IO BAR. Causing the driver to fail on th 82542. Reviewed by:pdeuskar Approved by:pdeuskar
* Drop everything that doesn't belong into this new file.andre2007-05-111-1929/+0
| | | | It's neither functional not connected to the build yet.
* Drop everything that doesn't belong into this new file.andre2007-05-111-2980/+0
| | | | It's neither functional nor connected to the build yet.
* Make the TCP timer callout obtain Giant if the network stack is markedandre2007-05-113-4/+18
| | | | | | as non-mpsafe. This change is to be removed when all protocols are mp-safe.
* Forced commit to note repo copy from sys/netinet/tcp_input.c rev. 1.349.andre2007-05-110-0/+0
|
* Forced commit to note repo copy from sys/netinet/tcp_subr.c rev. 1.280.andre2007-05-110-0/+0
|
* Add the timestamp offset to struct tcptw so we can generate properandre2007-05-113-6/+13
| | | | | ACKs in TIME_WAIT state that don't get dropped by the PAWS check on the receiver.
* - Initialize login->id and fix problem for non-zero login id.simokawa2007-05-111-1/+2
| | | | | | - Increase maxopenings for multiple lun/initiators. MFC after: 3 days
* Performance optimization of the "encryption without compression" case bymav2007-05-111-70/+103
| | | | | | | avoiding memory allocation and data copying. Encrypting directly at the original mbuf chain. Approved by: glebius (mentor)
* Bad merge.mjacob2007-05-111-1/+1
|
OpenPOWER on IntegriCloud