#
38f1b189 |
| 26-Apr-2012 |
Peter Grehan <grehan@FreeBSD.org> |
IFC @ r234692
sys/amd64/include/cpufunc.h sys/amd64/include/fpu.h sys/amd64/amd64/fpu.c sys/amd64/vmm/vmm.c
- Add API to allow vmm FPU state init/save/restore.
FP stuff discussed with: kib
|
Revision tags: release/8.3.0_cvs, release/8.3.0 |
|
#
8833b15f |
| 03-Apr-2012 |
Gleb Smirnoff <glebius@FreeBSD.org> |
Merge head r232686 through r233825 into projects/pf/head.
|
#
3030137a |
| 24-Mar-2012 |
Joel Dahl <joel@FreeBSD.org> |
Remove superfluous paragraph macro.
|
#
8fa0b743 |
| 23-Jan-2012 |
Xin LI <delphij@FreeBSD.org> |
IFC @230489 (pending review).
|
Revision tags: release/9.0.0 |
|
#
3ee1a36e |
| 22-Nov-2011 |
Peter Grehan <grehan@FreeBSD.org> |
IFC @ r227804
Pull in the virtio drivers from head.
|
#
c53bbc07 |
| 14-Nov-2011 |
Andre Oppermann <andre@FreeBSD.org> |
mdoc fix for r227499.
Reported by: brueffer
|
#
95386930 |
| 14-Nov-2011 |
Andre Oppermann <andre@FreeBSD.org> |
Note the ip_len bug fixed in r226105 in the BUGS section.
|
Revision tags: release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0 |
|
#
c2025a76 |
| 16-Aug-2010 |
Joel Dahl <joel@FreeBSD.org> |
Fix typos, spelling, formatting and mdoc mistakes found by Nobuyuki while translating these manual pages. Minor corrections by me.
Submitted by: Nobuyuki Koganemaru <n-kogane@syd.odn.ne.jp>
|
Revision tags: release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0, release/8.0.0_cvs, release/8.0.0 |
|
#
10b3b545 |
| 17-Sep-2009 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Merge from head
|
#
7e857dd1 |
| 12-Jun-2009 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
- Merge from HEAD
|
#
79d6b3f3 |
| 01-Jun-2009 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Document IP_BINDANY IP socket option.
Reviewed by: brueffer
|
Revision tags: release/7.2.0_cvs, release/7.2.0 |
|
#
1829d5da |
| 12-Mar-2009 |
Warner Losh <imp@FreeBSD.org> |
Update the projects tree to a newer FreeBSD current.
|
#
d10910e6 |
| 09-Mar-2009 |
Bruce M Simpson <bms@FreeBSD.org> |
Merge IGMPv3 and Source-Specific Multicast (SSM) to the FreeBSD IPv4 stack.
Diffs are minimized against p4. PCS has been used for some protocol verification, more widespread testing of recorded sour
Merge IGMPv3 and Source-Specific Multicast (SSM) to the FreeBSD IPv4 stack.
Diffs are minimized against p4. PCS has been used for some protocol verification, more widespread testing of recorded sources in Group-and-Source queries is needed. sizeof(struct igmpstat) has changed.
__FreeBSD_version is bumped to 800070.
show more ...
|
#
108ad5bd |
| 04-Mar-2009 |
Bruce M Simpson <bms@FreeBSD.org> |
Add source-specific multicast (SSM) option documentation.
|
Revision tags: release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0 |
|
#
71498f30 |
| 12-Jun-2007 |
Bruce M Simpson <bms@FreeBSD.org> |
Import rewrite of IPv4 socket multicast layer to support source-specific and protocol-independent host mode multicast. The code is written to accomodate IPv6, IGMPv3 and MLDv2 with only a little addi
Import rewrite of IPv4 socket multicast layer to support source-specific and protocol-independent host mode multicast. The code is written to accomodate IPv6, IGMPv3 and MLDv2 with only a little additional work.
This change only pertains to FreeBSD's use as a multicast end-station and does not concern multicast routing; for an IGMPv3/MLDv2 router implementation, consider the XORP project.
The work is based on Wilbert de Graaf's IGMPv3 code drop for FreeBSD 4.6, which is available at: http://www.kloosterhof.com/wilbert/igmpv3.html
Summary * IPv4 multicast socket processing is now moved out of ip_output.c into a new module, in_mcast.c. * The in_mcast.c module implements the IPv4 legacy any-source API in terms of the protocol-independent source-specific API. * Source filters are lazy allocated as the common case does not use them. They are part of per inpcb state and are covered by the inpcb lock. * struct ip_mreqn is now supported to allow applications to specify multicast joins by interface index in the legacy IPv4 any-source API. * In UDP, an incoming multicast datagram only requires that the source port matches the 4-tuple if the socket was already bound by source port. An unbound socket SHOULD be able to receive multicasts sent from an ephemeral source port. * The UDP socket multicast filter mode defaults to exclusive, that is, sources present in the per-socket list will be blocked from delivery. * The RFC 3678 userland functions have been added to libc: setsourcefilter, getsourcefilter, setipv4sourcefilter, getipv4sourcefilter. * Definitions for IGMPv3 are merged but not yet used. * struct sockaddr_storage is now referenced from <netinet/in.h>. It is therefore defined there if not already declared in the same way as for the C99 types. * The RFC 1724 hack (specify 0.0.0.0/8 addresses to IP_MULTICAST_IF which are then interpreted as interface indexes) is now deprecated. * A patch for the Rhyolite.com routed in the FreeBSD base system is available in the -net archives. This only affects individuals running RIPv1 or RIPv2 via point-to-point and/or unnumbered interfaces. * Make IPv6 detach path similar to IPv4's in code flow; functionally same. * Bump __FreeBSD_version to 700048; see UPDATING.
This work was financially supported by another FreeBSD committer.
Obtained from: p4://bms_netdev Submitted by: Wilbert de Graaf (original work) Reviewed by: rwatson (locking), silence from fenner, net@ (but with encouragement)
show more ...
|
#
04bcf5a9 |
| 18-Mar-2007 |
Bruce M Simpson <bms@FreeBSD.org> |
Document a major IGMP related annoyance. Add comments about IGMP bits which will go when we take SSM. Xref multicast(4).
MFC after: 3 days
|
Revision tags: release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0 |
|
#
24135314 |
| 14-May-2006 |
Bruce M Simpson <bms@FreeBSD.org> |
Don't quote IP_MAX_MEMBERSHIPS as 20 any more.
|
Revision tags: release/6.1.0_cvs, release/6.1.0 |
|
#
78ad5421 |
| 18-Nov-2005 |
Ruslan Ermilov <ru@FreeBSD.org> |
-mdoc sweep.
|
Revision tags: release/6.0.0_cvs, release/6.0.0 |
|
#
c9ebaafa |
| 26-Sep-2005 |
Andre Oppermann <andre@FreeBSD.org> |
Document the IP_DONTFRAG IP socket option.
Sponsored by: TCP/IP Optimization Fundraise 2005
|
#
5090c754 |
| 22-Aug-2005 |
Andre Oppermann <andre@FreeBSD.org> |
Document IP_MINTTL socket option.
MFC after: 2 weeks Sponsored by: TCP/IP Optimization Fundraise 2005
|
Revision tags: release/5.4.0_cvs, release/5.4.0 |
|
#
6ee79c59 |
| 23-Mar-2005 |
Maxim Konovalov <maxim@FreeBSD.org> |
o Document net.inet.ip.portrange.random* sysctls. o Correct a comment about random port allocation threshold implementation.
Reviewed by: silby, ru MFC after: 3 days
|
#
0227791b |
| 13-Feb-2005 |
Ruslan Ermilov <ru@FreeBSD.org> |
Expand *n't contractions.
|
Revision tags: release/4.11.0_cvs, release/4.11.0 |
|
#
5c8e5f24 |
| 21-Jan-2005 |
Ruslan Ermilov <ru@FreeBSD.org> |
Fixed xrefs.
|
Revision tags: release/5.3.0_cvs, release/5.3.0 |
|
#
c48524c2 |
| 21-Jun-2004 |
Mike Pritchard <mpp@FreeBSD.org> |
Spelling fixes.
|
#
bf7f20c2 |
| 16-Jun-2004 |
Ruslan Ermilov <ru@FreeBSD.org> |
Assorted markup, spelling, and grammar fixes.
|