diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-03-12 10:33:15 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-03-12 10:33:15 +0100 |
commit | f344a492d15831eb4feaf7c8b990f04e277449b7 (patch) | |
tree | f323251cf331cc56ce8e39ffb55cc9cc6a13279d /man/tc.xml | |
parent | network: rename type name to ProportionalIntegralControllerEnhanced (diff) | |
download | systemd-f344a492d15831eb4feaf7c8b990f04e277449b7.tar.xz systemd-f344a492d15831eb4feaf7c8b990f04e277449b7.zip |
man: use include directive for Parent= or friends
Diffstat (limited to 'man/tc.xml')
-rw-r--r-- | man/tc.xml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/man/tc.xml b/man/tc.xml new file mode 100644 index 0000000000..1711915c22 --- /dev/null +++ b/man/tc.xml @@ -0,0 +1,46 @@ +<?xml version="1.0"?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> + +<!-- + SPDX-License-Identifier: LGPL-2.1+ +--> + +<refsect1> + <variablelist class='network-directives'> + <varlistentry id='qdisc-parent'> + <term><varname>Parent=</varname></term> + <listitem> + <para>Specifies the parent Queueing Discipline (qdisc). Takes one of <literal>root</literal>, + <literal>clsact</literal>, <literal>ingress</literal> or a class id. The class id takes the + major and minor number in hexadecimal ranges 1 to ffff separated with a colon + (<literal>major:minor</literal>). Defaults to <literal>root</literal>.</para> + </listitem> + </varlistentry> + + <varlistentry id='qdisc-handle'> + <term><varname>Handle=</varname></term> + <listitem> + <para>Specifies the major number of unique identifier of the qdisc, known as the handle. + Takes a number in hexadecimal ranges 1 to ffff. Defaults to unset.</para> + </listitem> + </varlistentry> + + <varlistentry id='tclass-parent'> + <term><varname>Parent=</varname></term> + <listitem> + <para>Specifies the parent Queueing Discipline (qdisc). Takes one of <literal>root</literal>, + or a qdisc id. The qdisc id takes the major and minor number in hexadecimal ranges 1 to ffff + separated with a colon (<literal>major:minor</literal>). Defaults to <literal>root</literal>. + </para> + </listitem> + </varlistentry> + + <varlistentry id='tclass-classid'> + <term><varname>ClassId=</varname></term> + <listitem> + <para>Specifies the major and minur number of unique identifier of the class, known as the + class ID. Each number is in hexadecimal ranges 1 to ffff. Defaults to unset.</para> + </listitem> + </varlistentry> + </variablelist> +</refsect1> |