summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Remove more one more stale comment regarding unpcb type-safety.rwatson2007-05-111-4/+0
|
* Clarify and update quite a few comments to reflect locking optimizations,rwatson2007-05-111-38/+21
| | | | | | | the addition of unpcb refcounts, and bug fixes. Some of these fixes are appropriate for MFC. MFC after: 3 days
* Coalesce two identical UCB licenses into a single license instance withrwatson2007-05-111-108/+87
| | | | | | | | one set of copyright years. White space and comment cleanup. Export $FreeBSD$ via __FBSDID.
* strlcpy() may be faster than snprintf(), but it is less portable, and thisdes2007-05-111-8/+8
| | | | | | | is not performance critical code anyway. Also, avoid using strlen() to obtain information which we already have. MFC after: 3 weeks
* Minor white space and style cleanups.rwatson2007-05-111-36/+27
|
* White space and style cleanup.rwatson2007-05-111-10/+11
|
* Minor white space/style normalization.rwatson2007-05-111-6/+8
|
* Normalize style a bit: reduce pseudo-randomness of comment layout andrwatson2007-05-112-74/+75
| | | | white space. Remove 'register'.
* Use ANSI C function declarations throughout netipx.rwatson2007-05-1112-162/+88
| | | | Remove 'register' use.
* Reduce network stack oddness: implement .pru_sockaddr and .pru_peeraddrrwatson2007-05-1114-64/+46
| | | | | | | | protocol entry points using functions named proto_getsockaddr and proto_getpeeraddr rather than proto_setsockaddr and proto_setpeeraddr. While it's true that sockaddrs are allocated and set, the net effect is to retrieve (get) the socket address or peer address from a socket, not set it, so align names to that intent.
* Remove unneeded wrappers for in_setsockaddr() and in_setpeeraddr(), whichrwatson2007-05-113-74/+6
| | | | | used to exist so pcbinfo locks could be acquired, but are no longer required as a result of socket/pcb reference model refinements.
* Fix pointy-hat problem with BUS_DMA_ROOTARG macro that caused problems for ↵mjacob2007-05-112-5/+5
| | | | | | | | sparc64. Candidate for immediate MFC. Noticed by: Everyone-maxim contacted.
* Do not dereference linux_to_bsd_signal[-1] if userland haskan2007-05-112-8/+10
| | | | | | | | passed zero as exit signal. GCC 4.2 changes the kernel data segment layout not to have 0 in that memory location. This code ran by luck before and now the luck has run out.
* Fix an incorrect replace of a timer reference made during the TCP timerandre2007-05-101-1/+1
| | | | | rewrite in rev. 1.132. This unmasked yet another bug that causes certain connections to get indefinately stuck in LAST_ACK state.
* Fix typo.des2007-05-101-1/+1
| | | | Submitted by: Bård Skaflestad <bardsk@math.ntnu.no>
* Move universally to ANSI C function declarations, with relativelyrwatson2007-05-1024-253/+149
| | | | consistent style(9)-ish layout.
* Bump __FreeBSD_version for the addition of flopen(3) to libutil.des2007-05-101-1/+1
| | | | Requested by: delphij
* The version string scheme embeds the freebsd major release version,scottl2007-05-102-2/+2
| | | | | something that I wasn't aware of with the last import. Adjust the string accordingly for 7-CURRENT.
* Collapse the mfi_ld object. Add an ioctl to help management apps mapscottl2007-05-105-44/+79
| | | | array Id's to FreeBSD device names.
* Well gag me with a spoon... I'm so used to working at high WARNS levelsdes2007-05-102-1/+5
| | | | that I make stupid fundamental mistakes like this when I don't.
* Remove superfluous unexpanded RCS tag.des2007-05-101-2/+0
|
* Use flopen(3).des2007-05-101-2/+2
| | | | MFC after: 3 weeks
* DTRT when O_NONBLOCK is specified.des2007-05-102-4/+29
| | | | MFC after: 3 weeks
* I'm tired of seeing this done incorrectly and non-portably, so add ades2007-05-104-6/+177
| | | | | | flopen(3) function which reliably opens and locks a file. MFC after: 3 weeks
* zfs & zpool have been moved from /usr/sbin into /sbin. The correspondingroberto2007-05-101-0/+3
| | | | | | libraries in /usr/lib has been replaced by symlinks into /lib already. Requested by: pjd
* Make a missing or empty VPD non-fatal, as it was prior to rev 1.131.mckay2007-05-101-8/+6
| | | | With this change, my D-Link DGE-530T rev A1 is operational again.
OpenPOWER on IntegriCloud