All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sch_cake: revise docs for RFC 8622 LE PHB support
@ 2021-06-12  6:54 Tyson Moore
  2021-06-12 17:16 ` Toke Høiland-Jørgensen
  2021-06-14 19:20 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Tyson Moore @ 2021-06-12  6:54 UTC (permalink / raw)
  To: toke, jhs, xiyou.wangcong, jiri, davem, kuba; +Cc: netdev, Tyson Moore

Commit b8392808eb3fc28e ("sch_cake: add RFC 8622 LE PHB support to CAKE
diffserv handling") added the LE mark to the Bulk tin. Update the
comments to reflect the change.

Signed-off-by: Tyson Moore <tyson@tyson.me>
---
 net/sched/sch_cake.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/net/sched/sch_cake.c b/net/sched/sch_cake.c
index 7d37638ee1..ea710f1857 100644
--- a/net/sched/sch_cake.c
+++ b/net/sched/sch_cake.c
@@ -2338,7 +2338,7 @@ static int cake_config_precedence(struct Qdisc *sch)
 
 /*	List of known Diffserv codepoints:
  *
- *	Least Effort (CS1)
+ *	Least Effort (CS1, LE)
  *	Best Effort (CS0)
  *	Max Reliability & LLT "Lo" (TOS1)
  *	Max Throughput (TOS2)
@@ -2360,7 +2360,7 @@ static int cake_config_precedence(struct Qdisc *sch)
  *	Total 25 codepoints.
  */
 
-/*	List of traffic classes in RFC 4594:
+/*	List of traffic classes in RFC 4594, updated by RFC 8622:
  *		(roughly descending order of contended priority)
  *		(roughly ascending order of uncontended throughput)
  *
@@ -2375,7 +2375,7 @@ static int cake_config_precedence(struct Qdisc *sch)
  *	Ops, Admin, Management (CS2,TOS1) - eg. ssh
  *	Standard Service (CS0 & unrecognised codepoints)
  *	High Throughput Data (AF1x,TOS2)  - eg. web traffic
- *	Low Priority Data (CS1)           - eg. BitTorrent
+ *	Low Priority Data (CS1,LE)        - eg. BitTorrent
 
  *	Total 12 traffic classes.
  */
@@ -2391,7 +2391,7 @@ static int cake_config_diffserv8(struct Qdisc *sch)
  *		Video Streaming          (AF4x, AF3x, CS3)
  *		Bog Standard             (CS0 etc.)
  *		High Throughput          (AF1x, TOS2)
- *		Background Traffic       (CS1)
+ *		Background Traffic       (CS1, LE)
  *
  *		Total 8 traffic classes.
  */
@@ -2435,7 +2435,7 @@ static int cake_config_diffserv4(struct Qdisc *sch)
  *	    Latency Sensitive  (CS7, CS6, EF, VA, CS5, CS4)
  *	    Streaming Media    (AF4x, AF3x, CS3, AF2x, TOS4, CS2, TOS1)
  *	    Best Effort        (CS0, AF1x, TOS2, and those not specified)
- *	    Background Traffic (CS1)
+ *	    Background Traffic (CS1, LE)
  *
  *		Total 4 traffic classes.
  */
@@ -2473,7 +2473,7 @@ static int cake_config_diffserv4(struct Qdisc *sch)
 static int cake_config_diffserv3(struct Qdisc *sch)
 {
 /*  Simplified Diffserv structure with 3 tins.
- *		Low Priority		(CS1)
+ *		Low Priority		(CS1, LE)
  *		Best Effort
  *		Latency Sensitive	(TOS4, VA, EF, CS6, CS7)
  */
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] sch_cake: revise docs for RFC 8622 LE PHB support
  2021-06-12  6:54 [PATCH] sch_cake: revise docs for RFC 8622 LE PHB support Tyson Moore
@ 2021-06-12 17:16 ` Toke Høiland-Jørgensen
  2021-06-14 19:20 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Toke Høiland-Jørgensen @ 2021-06-12 17:16 UTC (permalink / raw)
  To: Tyson Moore, jhs, xiyou.wangcong, jiri, davem, kuba; +Cc: netdev, Tyson Moore

Tyson Moore <tyson@tyson.me> writes:

> Commit b8392808eb3fc28e ("sch_cake: add RFC 8622 LE PHB support to CAKE
> diffserv handling") added the LE mark to the Bulk tin. Update the
> comments to reflect the change.
>
> Signed-off-by: Tyson Moore <tyson@tyson.me>

Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] sch_cake: revise docs for RFC 8622 LE PHB support
  2021-06-12  6:54 [PATCH] sch_cake: revise docs for RFC 8622 LE PHB support Tyson Moore
  2021-06-12 17:16 ` Toke Høiland-Jørgensen
@ 2021-06-14 19:20 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-06-14 19:20 UTC (permalink / raw)
  To: Tyson Moore; +Cc: toke, jhs, xiyou.wangcong, jiri, davem, kuba, netdev

Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Sat, 12 Jun 2021 02:54:11 -0400 you wrote:
> Commit b8392808eb3fc28e ("sch_cake: add RFC 8622 LE PHB support to CAKE
> diffserv handling") added the LE mark to the Bulk tin. Update the
> comments to reflect the change.
> 
> Signed-off-by: Tyson Moore <tyson@tyson.me>
> ---
>  net/sched/sch_cake.c | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)

Here is the summary with links:
  - sch_cake: revise docs for RFC 8622 LE PHB support
    https://git.kernel.org/netdev/net/c/4f667b8e049e

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



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-14 19:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-12  6:54 [PATCH] sch_cake: revise docs for RFC 8622 LE PHB support Tyson Moore
2021-06-12 17:16 ` Toke Høiland-Jørgensen
2021-06-14 19:20 ` patchwork-bot+netdevbpf

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.