All of lore.kernel.org
 help / color / mirror / Atom feed
From: Maxim Mikityanskiy <maximmi@nvidia.com>
To: David Ahern <dsahern@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	Jamal Hadi Salim <jhs@mojatatu.com>,
	Cong Wang <xiyou.wangcong@gmail.com>,
	Jiri Pirko <jiri@resnulli.us>
Cc: Saeed Mahameed <saeedm@nvidia.com>,
	Jakub Kicinski <kuba@kernel.org>,
	Tariq Toukan <tariqt@nvidia.com>,
	Yossi Kuperman <yossiku@nvidia.com>,
	"Dan Carpenter" <dan.carpenter@oracle.com>,
	<netdev@vger.kernel.org>,
	"Maxim Mikityanskiy" <maximmi@mellanox.com>
Subject: Re: [PATCH iproute2-next] tc/htb: Hierarchical QoS hardware offload
Date: Tue, 2 Feb 2021 13:46:29 +0200	[thread overview]
Message-ID: <01ce90dc-9880-ccad-cce4-e13dc22f8118@nvidia.com> (raw)
In-Reply-To: <8c818766-ec3f-4c0b-f737-ec558613b946@gmail.com>

On 2021-01-29 18:05, David Ahern wrote:
> On 12/15/20 12:42 AM, Maxim Mikityanskiy wrote:
>> This commit adds support for configuring HTB in offload mode. HTB
>> offload eliminates the single qdisc lock in the datapath and offloads
>> the algorithm to the NIC. The new 'offload' parameter is added to
>> enable this mode:
>>
>>      # tc qdisc replace dev eth0 root handle 1: htb offload
>>
>> Classes are created as usual, but filters should be moved to clsact for
>> lock-free classification (filters attached to HTB itself are not
>> supported in the offload mode):
>>
>>      # tc filter add dev eth0 egress protocol ip flower dst_port 80
>>      action skbedit priority 1:10
> 
> please add the dump in both stdout and json here.

Do you mean to add example output to the commit message?

>>
>> Signed-off-by: Maxim Mikityanskiy <maximmi@mellanox.com>
>> ---
>>   include/uapi/linux/pkt_sched.h | 1 +
>>   tc/q_htb.c                     | 9 ++++++++-
> 
> missing an update to man/man8/tc-htb.8

OK, I'll add.

>>   2 files changed, 9 insertions(+), 1 deletion(-)
>>
>> diff --git a/include/uapi/linux/pkt_sched.h b/include/uapi/linux/pkt_sched.h
>> index 9e7c2c60..79a699f1 100644
>> --- a/include/uapi/linux/pkt_sched.h
>> +++ b/include/uapi/linux/pkt_sched.h
>> @@ -434,6 +434,7 @@ enum {
>>   	TCA_HTB_RATE64,
>>   	TCA_HTB_CEIL64,
>>   	TCA_HTB_PAD,
>> +	TCA_HTB_OFFLOAD,
>>   	__TCA_HTB_MAX,
>>   };
>>   
>> diff --git a/tc/q_htb.c b/tc/q_htb.c
>> index c609e974..fd11dad6 100644
>> --- a/tc/q_htb.c
>> +++ b/tc/q_htb.c
>> @@ -30,11 +30,12 @@
>>   static void explain(void)
>>   {
>>   	fprintf(stderr, "Usage: ... qdisc add ... htb [default N] [r2q N]\n"
>> -		"                      [direct_qlen P]\n"
>> +		"                      [direct_qlen P] [offload]\n"
>>   		" default  minor id of class to which unclassified packets are sent {0}\n"
>>   		" r2q      DRR quantums are computed as rate in Bps/r2q {10}\n"
>>   		" debug    string of 16 numbers each 0-3 {0}\n\n"
>>   		" direct_qlen  Limit of the direct queue {in packets}\n"
>> +		" offload  hardware offload\n"
> 
> why 'offload hardware offload'? does not make sense to me and

"offload" is a new parameter, and "hardware offload" is the description, 
just like the other parameters above.

> you don't
> reference hardware below.

Where should I reference it?

> 
> 
> 
>>   		"... class add ... htb rate R1 [burst B1] [mpu B] [overhead O]\n"
>>   		"                      [prio P] [slot S] [pslot PS]\n"
>>   		"                      [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n"
>> @@ -68,6 +69,7 @@ static int htb_parse_opt(struct qdisc_util *qu, int argc,
>>   	};
>>   	struct rtattr *tail;
>>   	unsigned int i; char *p;
>> +	bool offload = false;
>>   
>>   	while (argc > 0) {
>>   		if (matches(*argv, "r2q") == 0) {
>> @@ -91,6 +93,8 @@ static int htb_parse_opt(struct qdisc_util *qu, int argc,
>>   			if (get_u32(&direct_qlen, *argv, 10)) {
>>   				explain1("direct_qlen"); return -1;
>>   			}
>> +		} else if (matches(*argv, "offload") == 0) {
>> +			offload = true;
>>   		} else {
>>   			fprintf(stderr, "What is \"%s\"?\n", *argv);
>>   			explain();
>> @@ -103,6 +107,8 @@ static int htb_parse_opt(struct qdisc_util *qu, int argc,
>>   	if (direct_qlen != ~0U)
>>   		addattr_l(n, 2024, TCA_HTB_DIRECT_QLEN,
>>   			  &direct_qlen, sizeof(direct_qlen));
>> +	if (offload)
>> +		addattr(n, 2024, TCA_HTB_OFFLOAD);
>>   	addattr_nest_end(n, tail);
>>   	return 0;
>>   }
>> @@ -344,6 +350,7 @@ static int htb_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
>>   		print_uint(PRINT_ANY, "direct_qlen", " direct_qlen %u",
>>   			   direct_qlen);
>>   	}
>> +	print_uint(PRINT_ANY, "offload", " offload %d", !!tb[TCA_HTB_OFFLOAD]);
>>   	return 0;
>>   }
>>   
>>
> 


  parent reply	other threads:[~2021-02-02 11:47 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-15  7:42 [PATCH iproute2-next] tc/htb: Hierarchical QoS hardware offload Maxim Mikityanskiy
2020-12-15  7:42 ` [PATCH net-next v3 0/4] HTB offload Maxim Mikityanskiy
2020-12-15  7:42 ` [PATCH net-next v3 1/4] net: sched: Add multi-queue support to sch_tree_lock Maxim Mikityanskiy
2020-12-15  7:42 ` [PATCH net-next v3 2/4] sch_htb: Hierarchical QoS hardware offload Maxim Mikityanskiy
2020-12-22  1:17   ` Jakub Kicinski
2021-01-04 21:55     ` Maxim Mikityanskiy
2020-12-15  7:42 ` [PATCH net-next v3 3/4] sch_htb: Stats for offloaded HTB Maxim Mikityanskiy
2020-12-15  7:42 ` [PATCH net-next v3 4/4] net/mlx5e: Support HTB offload Maxim Mikityanskiy
2020-12-15 22:26 ` [PATCH iproute2-next] tc/htb: Hierarchical QoS hardware offload Stephen Hemminger
     [not found] ` <8c818766-ec3f-4c0b-f737-ec558613b946@gmail.com>
2021-02-02 11:46   ` Maxim Mikityanskiy [this message]
2021-02-02 15:32     ` David Ahern

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=01ce90dc-9880-ccad-cce4-e13dc22f8118@nvidia.com \
    --to=maximmi@nvidia.com \
    --cc=dan.carpenter@oracle.com \
    --cc=davem@davemloft.net \
    --cc=dsahern@gmail.com \
    --cc=jhs@mojatatu.com \
    --cc=jiri@resnulli.us \
    --cc=kuba@kernel.org \
    --cc=maximmi@mellanox.com \
    --cc=netdev@vger.kernel.org \
    --cc=saeedm@nvidia.com \
    --cc=tariqt@nvidia.com \
    --cc=xiyou.wangcong@gmail.com \
    --cc=yossiku@nvidia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.