|
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0 |
|
| #
685dc743 |
| 16-Aug-2023 |
Warner Losh <[email protected]> |
sys: Remove $FreeBSD$: one-line .c pattern
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
|
| #
4d846d26 |
| 10-May-2023 |
Warner Losh <[email protected]> |
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD
The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD
The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause.
Discussed with: pfg MFC After: 3 days Sponsored by: Netflix
show more ...
|
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0 |
|
| #
662c1305 |
| 01-Sep-2020 |
Mateusz Guzik <[email protected]> |
net: clean up empty lines in .c and .h files
|
|
Revision tags: release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0 |
|
| #
fe267a55 |
| 27-Nov-2017 |
Pedro F. Giffuni <[email protected]> |
sys: general adoption of SPDX licensing ID tags.
Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error pro
sys: general adoption of SPDX licensing ID tags.
Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task.
The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts.
No functional change intended.
show more ...
|
|
Revision tags: release/10.4.0, release/11.1.0 |
|
| #
426b3d04 |
| 02-Dec-2016 |
Julian Elischer <[email protected]> |
Changes to allow the patching of packets with an offset (and other changes.. see man page)
PR: 206185 Submitted by: Dmitry Vagin <[email protected]> MFC after: 1 week Relnotes: yes (also ng_check
Changes to allow the patching of packets with an offset (and other changes.. see man page)
PR: 206185 Submitted by: Dmitry Vagin <[email protected]> MFC after: 1 week Relnotes: yes (also ng_checksum node)
show more ...
|
|
Revision tags: release/11.0.1, release/11.0.0 |
|
| #
bf909fc9 |
| 01-Aug-2016 |
Julian Elischer <[email protected]> |
slite style changes. There is an incoming patch that rewrites a lot of this module and I want to get the style and whitespace changes in a separate commit (or maybe more).
PR: 206185 Submitted by: D
slite style changes. There is an incoming patch that rewrites a lot of this module and I want to get the style and whitespace changes in a separate commit (or maybe more).
PR: 206185 Submitted by: Dmitry Vagin MFC after: 1 month
show more ...
|
|
Revision tags: release/10.3.0, release/10.2.0, release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0, release/9.1.0 |
|
| #
3a0cd8db |
| 22-Apr-2012 |
Alexander V. Chernikov <[email protected]> |
Fix panic in ng_patch(4) caused by checksum flags being added to mbuf flags.
Tested by: Maxim Ignatenko <[email protected]> Approved by: kib(mentor)
MFC after: 3 days
|
|
Revision tags: release/8.3.0_cvs, release/8.3.0, release/9.0.0 |
|
| #
ffbfc0aa |
| 18-Apr-2011 |
Andrey V. Elsukov <[email protected]> |
Use M_WAITOK flag instead M_WAIT for malloc.
Suggested by: glebius MFC after: 1 week
|
|
Revision tags: release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0 |
|
| #
cac2fe69 |
| 15-Jun-2010 |
Andrey V. Elsukov <[email protected]> |
* Include sys/systm.h for KASSERT() * Remove unneeded includes and comment * Replace home made OFFSETOF() macro with standard offsetof()
Pointed out by: bde Approved by: kib (mentor)
|
| #
6c0a2eb1 |
| 10-Jun-2010 |
Andrey V. Elsukov <[email protected]> |
Style(9) fixes: * Sort includes * Replace #define<SPACE> to #define<TAB> * Split declarations and initializations * Split long lines
Requested by: kib Approved by: kib (mentor) MFC after: 1 month
|
| #
d359a62d |
| 09-Jun-2010 |
Andrey V. Elsukov <[email protected]> |
New netgraph node ng_patch(4). It performs data modification of packets passing through. Modifications are restricted to a subset of C language operations on unsigned integers of 8, 16, 32 or 64 bit
New netgraph node ng_patch(4). It performs data modification of packets passing through. Modifications are restricted to a subset of C language operations on unsigned integers of 8, 16, 32 or 64 bit size. These are: set to new value (=), addition (+=), subtraction (-=), multiplication (*=), division (/=), negation (= -), bitwise AND (&=), bitwise OR (|=), bitwise eXclusive OR (^=), shift left (<<=), shift right (>>=). Several operations are all applied to a packet sequentially in order they were specified by user.
Submitted by: Maxim Ignatenko <gelraen.ua at gmail.com> Vadim Goncharov <vadimnuclight at tpu.ru> Discussed with: net@ Approved by: mav (mentor) MFC after: 1 month
show more ...
|