Merge branch 'master' into net-next
This commit is contained in:
commit
f7708201f8
|
|
@ -26,10 +26,10 @@ police - policing action
|
||||||
|
|
||||||
.ti -8
|
.ti -8
|
||||||
.IR CONTROL " :="
|
.IR CONTROL " :="
|
||||||
.BI conform-exceed " EXCEEDACT\fR[\fB/\fIEXCEEDACT"
|
.BI conform-exceed " EXCEEDACT\fR[\fB/\fINOTEXCEEDACT"
|
||||||
|
|
||||||
.ti -8
|
.ti -8
|
||||||
.IR EXCEEDACT " := { "
|
.IR EXCEEDACT/NOTEXCEEDACT " := { "
|
||||||
.BR pipe " | " ok " | " reclassify " | " drop " | " continue " }"
|
.BR pipe " | " ok " | " reclassify " | " drop " | " continue " }"
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
The
|
The
|
||||||
|
|
@ -94,11 +94,9 @@ Fine-tune the in-kernel packet rate estimator.
|
||||||
are time values and control the frequency in which samples are taken and over
|
are time values and control the frequency in which samples are taken and over
|
||||||
what timespan an average is built.
|
what timespan an average is built.
|
||||||
.TP
|
.TP
|
||||||
.BI conform-exceed " EXCEEDACT\fR[\fB/\fIEXCEEDACT\fR]"
|
.BI conform-exceed " EXCEEDACT\fR[\fB/\fINOTEXCEEDACT\fR]"
|
||||||
Define how to handle packets which exceed (and, if the second
|
Define how to handle packets which exceed or conform the
|
||||||
.I EXCEEDACT
|
configured bandwidth limit. Possible values are:
|
||||||
is given, also those who don't), the configured bandwidth limit. Possible values
|
|
||||||
are:
|
|
||||||
.RS
|
.RS
|
||||||
.IP continue
|
.IP continue
|
||||||
Don't do anything, just continue with the next action in line.
|
Don't do anything, just continue with the next action in line.
|
||||||
|
|
|
||||||
|
|
@ -36,11 +36,12 @@ static void usage(void)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Usage: ... police rate BPS burst BYTES[/BYTES] [ mtu BYTES[/BYTES] ]\n");
|
fprintf(stderr, "Usage: ... police rate BPS burst BYTES[/BYTES] [ mtu BYTES[/BYTES] ]\n");
|
||||||
fprintf(stderr, " [ peakrate BPS ] [ avrate BPS ] [ overhead BYTES ]\n");
|
fprintf(stderr, " [ peakrate BPS ] [ avrate BPS ] [ overhead BYTES ]\n");
|
||||||
fprintf(stderr, " [ linklayer TYPE ] [ ACTIONTERM ]\n");
|
fprintf(stderr, " [ linklayer TYPE ] [ CONTROL ]\n");
|
||||||
|
|
||||||
fprintf(stderr, "New Syntax ACTIONTERM := conform-exceed <EXCEEDACT>[/NOTEXCEEDACT]\n");
|
fprintf(stderr, "Where: CONTROL := conform-exceed <EXCEEDACT>[/NOTEXCEEDACT]\n");
|
||||||
fprintf(stderr, "Where: *EXCEEDACT := pipe | ok | reclassify | drop | continue\n");
|
fprintf(stderr, " Define how to handle packets which exceed (<EXCEEDACT>)\n");
|
||||||
fprintf(stderr, "Where: pipe is only valid for new syntax\n");
|
fprintf(stderr, " or conform (<NOTEXCEEDACT>) the configured bandwidth limit.\n");
|
||||||
|
fprintf(stderr, " EXCEEDACT/NOTEXCEEDACT := { pipe | ok | reclassify | drop | continue }\n");
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue