From: Konstantin Ananyev <konstantin.ananyev@intel.com> To: dev@dpdk.org Cc: cristian.dumitrescu@intel.com, jasvinder.singh@intel.com, Konstantin Ananyev <konstantin.ananyev@intel.com>, stable@dpdk.org Subject: [dpdk-stable] [PATCH v2 1/2] examples/qos_sched: fixup colors value overrun Date: Thu, 18 Mar 2021 11:56:12 +0000 Message-ID: <20210318115613.5503-1-konstantin.ananyev@intel.com> (raw) In-Reply-To: <20210316170723.22036-1-konstantin.ananyev@intel.com> '3' is not valid RTE_COLOR_ enum value. Fixes: de3cfa2c9823 ("sched: initial import") Cc: stable@dpdk.org Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com> --- examples/qos_sched/app_thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/qos_sched/app_thread.c b/examples/qos_sched/app_thread.c index dbc878b55..a5f402190 100644 --- a/examples/qos_sched/app_thread.c +++ b/examples/qos_sched/app_thread.c @@ -53,7 +53,7 @@ get_pkt_sched(struct rte_mbuf *m, uint32_t *subport, uint32_t *pipe, *queue = pipe_queue - *traffic_class; /* Color (Destination IP) */ - *color = pdata[COLOR_OFFSET] & 0x03; + *color = pdata[COLOR_OFFSET] % RTE_COLORS; return 0; } -- 2.25.1
prev parent reply other threads:[~2021-03-18 11:56 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-03-16 17:07 [dpdk-stable] [PATCH " Konstantin Ananyev 2021-03-18 11:56 ` Konstantin Ananyev [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=20210318115613.5503-1-konstantin.ananyev@intel.com \ --to=konstantin.ananyev@intel.com \ --cc=cristian.dumitrescu@intel.com \ --cc=dev@dpdk.org \ --cc=jasvinder.singh@intel.com \ --cc=stable@dpdk.org \ /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
patches for DPDK stable branches This inbox may be cloned and mirrored by anyone: git clone --mirror https://inbox.dpdk.org/stable/0 stable/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 stable stable/ https://inbox.dpdk.org/stable \ stable@dpdk.org public-inbox-index stable Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.stable AGPL code for this site: git clone https://public-inbox.org/public-inbox.git