netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Amery Hung <ameryhung@gmail.com>
Cc: bpf@vger.kernel.org, netdev@vger.kernel.org,
	alexei.starovoitov@gmail.com, andrii@kernel.org,
	daniel@iogearbox.net, edumazet@google.com, kuba@kernel.org,
	xiyou.wangcong@gmail.com, jhs@mojatatu.com,
	martin.lau@kernel.org, jiri@resnulli.us, stfomichev@gmail.com,
	toke@redhat.com, sinquersw@gmail.com,
	ekarani.silvestre@ccc.ufcg.edu.br, yangpeihao@sjtu.edu.cn,
	yepeilin.cs@gmail.com, kernel-team@meta.com
Subject: Re: [PATCH bpf-next v7 00/10] bpf qdisc
Date: Thu, 10 Apr 2025 23:50:36 +0000	[thread overview]
Message-ID: <174432903676.3863413.8348102163001498736.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20250409214606.2000194-1-ameryhung@gmail.com>

Hello:

This series was applied to bpf/bpf-next.git (net)
by Martin KaFai Lau <martin.lau@kernel.org>:

On Wed,  9 Apr 2025 14:45:56 -0700 you wrote:
> Hi all,
> 
> This patchset aims to support implementing qdisc using bpf struct_ops.
> This version takes a step back and only implements the minimum support
> for bpf qdisc. 1) support of adding skb to bpf_list and bpf_rbtree
> directly and 2) classful qdisc are deferred to future patchsets. In
> addition, we only allow attaching bpf qdisc to root or mq for now.
> This is to prevent accidentally breaking exisiting classful qdiscs
> that rely on data in a child qdisc. This limit may be lifted in the
> future after careful inspection.
> 
> [...]

Here is the summary with links:
  - [bpf-next,v7,01/10] bpf: Prepare to reuse get_ctx_arg_idx
    https://git.kernel.org/bpf/bpf-next/c/a5c234d9bac6
  - [bpf-next,v7,02/10] bpf: net_sched: Support implementation of Qdisc_ops in bpf
    (no matching commit)
  - [bpf-next,v7,03/10] bpf: net_sched: Add basic bpf qdisc kfuncs
    https://git.kernel.org/bpf/bpf-next/c/81bb1c2c3e8e
  - [bpf-next,v7,04/10] bpf: net_sched: Add a qdisc watchdog timer
    https://git.kernel.org/bpf/bpf-next/c/f2ccce960e92
  - [bpf-next,v7,05/10] bpf: net_sched: Support updating bstats
    https://git.kernel.org/bpf/bpf-next/c/9658e4249727
  - [bpf-next,v7,06/10] bpf: net_sched: Disable attaching bpf qdisc to non root
    https://git.kernel.org/bpf/bpf-next/c/0ddc97ad5337
  - [bpf-next,v7,07/10] libbpf: Support creating and destroying qdisc
    https://git.kernel.org/bpf/bpf-next/c/8c52471cd771
  - [bpf-next,v7,08/10] selftests/bpf: Add a basic fifo qdisc test
    https://git.kernel.org/bpf/bpf-next/c/cb7e598ef547
  - [bpf-next,v7,09/10] selftests/bpf: Add a bpf fq qdisc to selftest
    https://git.kernel.org/bpf/bpf-next/c/69dfd77a5adc
  - [bpf-next,v7,10/10] selftests/bpf: Test attaching bpf qdisc to mq and non root
    https://git.kernel.org/bpf/bpf-next/c/93cb5375fb16

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



      parent reply	other threads:[~2025-04-10 23:49 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-09 21:45 [PATCH bpf-next v7 00/10] bpf qdisc Amery Hung
2025-04-09 21:45 ` [PATCH bpf-next v7 01/10] bpf: Prepare to reuse get_ctx_arg_idx Amery Hung
2025-04-09 21:45 ` [PATCH bpf-next v7 02/10] bpf: net_sched: Support implementation of Qdisc_ops in bpf Amery Hung
2025-04-10 23:49   ` Martin KaFai Lau
2025-04-09 21:45 ` [PATCH bpf-next v7 03/10] bpf: net_sched: Add basic bpf qdisc kfuncs Amery Hung
2025-04-11 13:32   ` Kumar Kartikeya Dwivedi
2025-04-11 16:58     ` Amery Hung
2025-04-11 17:08       ` Kumar Kartikeya Dwivedi
2025-04-11 17:17         ` Amery Hung
2025-04-11 17:22           ` Kumar Kartikeya Dwivedi
2025-04-11 18:36         ` Martin KaFai Lau
2025-04-11 20:03           ` Amery Hung
2025-04-11 20:11             ` Martin KaFai Lau
2025-04-09 21:46 ` [PATCH bpf-next v7 04/10] bpf: net_sched: Add a qdisc watchdog timer Amery Hung
2025-04-09 21:46 ` [PATCH bpf-next v7 05/10] bpf: net_sched: Support updating bstats Amery Hung
2025-04-09 21:46 ` [PATCH bpf-next v7 06/10] bpf: net_sched: Disable attaching bpf qdisc to non root Amery Hung
2025-04-09 21:46 ` [PATCH bpf-next v7 07/10] libbpf: Support creating and destroying qdisc Amery Hung
2025-04-09 21:46 ` [PATCH bpf-next v7 08/10] selftests/bpf: Add a basic fifo qdisc test Amery Hung
2025-04-10 23:59   ` Martin KaFai Lau
2025-04-11 17:20     ` Amery Hung
2025-04-09 21:46 ` [PATCH bpf-next v7 09/10] selftests/bpf: Add a bpf fq qdisc to selftest Amery Hung
2025-04-09 21:46 ` [PATCH bpf-next v7 10/10] selftests/bpf: Test attaching bpf qdisc to mq and non root Amery Hung
2025-04-10 23:50 ` patchwork-bot+netdevbpf [this message]

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=174432903676.3863413.8348102163001498736.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=alexei.starovoitov@gmail.com \
    --cc=ameryhung@gmail.com \
    --cc=andrii@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=edumazet@google.com \
    --cc=ekarani.silvestre@ccc.ufcg.edu.br \
    --cc=jhs@mojatatu.com \
    --cc=jiri@resnulli.us \
    --cc=kernel-team@meta.com \
    --cc=kuba@kernel.org \
    --cc=martin.lau@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=sinquersw@gmail.com \
    --cc=stfomichev@gmail.com \
    --cc=toke@redhat.com \
    --cc=xiyou.wangcong@gmail.com \
    --cc=yangpeihao@sjtu.edu.cn \
    --cc=yepeilin.cs@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).