From: Kevin Traynor <ktraynor@redhat.com> To: dev@dpdk.org Cc: david.marchand@redhat.com, Kevin Traynor <ktraynor@redhat.com>, rosen.xu@intel.com, stable@dpdk.org Subject: [dpdk-stable] [v2 PATCH 5/8] net/ipn3ke: remove commented out code Date: Wed, 6 Nov 2019 19:02:00 +0000 Message-ID: <20191106190203.10750-6-ktraynor@redhat.com> (raw) In-Reply-To: <20191106190203.10750-1-ktraynor@redhat.com> These struct members and variable were commented out. Remove them. Fixes: c01c748e4ae6 ("net/ipn3ke: add new driver") Fixes: c820468ac99c ("net/ipn3ke: support TM") Cc: rosen.xu@intel.com Cc: stable@dpdk.org Signed-off-by: Kevin Traynor <ktraynor@redhat.com> Reviewed-by: David Marchand <david.marchand@redhat.com> --- drivers/net/ipn3ke/ipn3ke_ethdev.h | 7 ------- drivers/net/ipn3ke/ipn3ke_tm.c | 1 - 2 files changed, 8 deletions(-) diff --git a/drivers/net/ipn3ke/ipn3ke_ethdev.h b/drivers/net/ipn3ke/ipn3ke_ethdev.h index 985f20352..9b0cf309c 100644 --- a/drivers/net/ipn3ke/ipn3ke_ethdev.h +++ b/drivers/net/ipn3ke/ipn3ke_ethdev.h @@ -97,18 +97,11 @@ struct ipn3ke_tm_node { struct ipn3ke_tm_hierarchy { struct ipn3ke_tm_node *port_node; - /*struct ipn3ke_tm_node_list vt_node_list;*/ - /*struct ipn3ke_tm_node_list cos_node_list;*/ - uint32_t n_shaper_profiles; - /*uint32_t n_shared_shapers;*/ uint32_t n_tdrop_profiles; uint32_t n_vt_nodes; uint32_t n_cos_nodes; - struct ipn3ke_tm_node *port_commit_node; struct ipn3ke_tm_node_list vt_commit_node_list; struct ipn3ke_tm_node_list cos_commit_node_list; - - /*uint32_t n_tm_nodes[IPN3KE_TM_NODE_LEVEL_MAX];*/ }; diff --git a/drivers/net/ipn3ke/ipn3ke_tm.c b/drivers/net/ipn3ke/ipn3ke_tm.c index a93145d59..5a16c5f96 100644 --- a/drivers/net/ipn3ke/ipn3ke_tm.c +++ b/drivers/net/ipn3ke/ipn3ke_tm.c @@ -1088,5 +1088,4 @@ ipn3ke_tm_node_add_check_mount(uint32_t tm_id, struct rte_tm_error *error) { - /*struct ipn3ke_tm_internals *tm = IPN3KE_DEV_PRIVATE_TO_TM(dev);*/ uint32_t node_index; uint32_t parent_index; -- 2.21.0
next prev parent reply index Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top [not found] <20191001125315.6191-1-ktraynor@redhat.com> 2019-10-01 12:53 ` [dpdk-stable] [PATCH 1/9] net/pcap: fix argument checks Kevin Traynor 2019-10-04 10:57 ` Ferriter, Cian 2019-10-30 7:52 ` [dpdk-stable] [dpdk-dev] " David Marchand 2019-11-05 16:40 ` Kevin Traynor 2019-11-05 17:10 ` Ferriter, Cian 2019-11-06 19:03 ` Kevin Traynor 2019-10-01 13:03 ` [dpdk-stable] [PATCH 2/9] crypto/octeontx: fix possible NULL deference Kevin Traynor 2019-10-01 13:03 ` [dpdk-stable] [PATCH 3/9] net/bnxt: remove logically dead code Kevin Traynor 2019-10-02 1:28 ` [dpdk-stable] [dpdk-dev] " Ajit Khaparde 2019-10-30 7:43 ` David Marchand 2019-10-30 16:27 ` Ajit Khaparde 2019-11-05 15:39 ` Kevin Traynor 2019-10-01 13:04 ` [dpdk-stable] [PATCH 4/9] net/ipn3ke: fix incorrect commit check logic Kevin Traynor 2019-10-30 7:59 ` [dpdk-stable] [dpdk-dev] " David Marchand 2019-11-05 15:41 ` Kevin Traynor 2019-11-08 14:45 ` Xu, Rosen 2019-11-08 14:47 ` Kevin Traynor 2019-11-08 14:35 ` Xu, Rosen 2019-11-08 14:52 ` [dpdk-stable] " Xu, Rosen 2019-10-01 13:04 ` [dpdk-stable] [PATCH 5/9] net/ipn3ke: remove useless if statement Kevin Traynor 2019-10-30 8:01 ` David Marchand 2019-11-08 14:35 ` Xu, Rosen 2019-11-08 14:52 ` Xu, Rosen 2019-10-01 13:04 ` [dpdk-stable] [PATCH 6/9] net/ipn3ke: remove commented out code Kevin Traynor 2019-10-30 8:04 ` David Marchand 2019-11-08 14:40 ` Xu, Rosen 2019-11-08 14:51 ` Xu, Rosen 2019-10-01 13:04 ` [dpdk-stable] [PATCH 7/9] compress/octeontx: " Kevin Traynor 2019-10-30 8:06 ` [dpdk-stable] [dpdk-dev] " David Marchand 2019-10-01 13:04 ` [dpdk-stable] [PATCH 8/9] event/opdl: " Kevin Traynor 2019-10-03 10:50 ` Liang, Ma 2019-10-01 13:04 ` [dpdk-stable] [PATCH 9/9] net/bnxt: " Kevin Traynor 2019-10-01 15:42 ` Ajit Khaparde 2019-10-30 7:56 ` [dpdk-stable] [PATCH 2/9] crypto/octeontx: fix possible NULL deference David Marchand [not found] ` <20191106190203.10750-1-ktraynor@redhat.com> 2019-11-06 19:01 ` [dpdk-stable] [v2 PATCH 1/8] net/pcap: fix argument checks Kevin Traynor 2019-11-06 19:01 ` [dpdk-stable] [v2 PATCH 2/8] common/cpt: fix possible NULL deference Kevin Traynor 2019-11-06 19:01 ` [dpdk-stable] [v2 PATCH 3/8] net/ipn3ke: fix incorrect commit check logic Kevin Traynor 2019-11-08 14:50 ` Xu, Rosen 2019-11-06 19:01 ` [dpdk-stable] [v2 PATCH 4/8] net/ipn3ke: remove useless if statement Kevin Traynor 2019-11-08 14:49 ` Xu, Rosen 2019-11-06 19:02 ` Kevin Traynor [this message] 2019-11-08 14:50 ` [dpdk-stable] [v2 PATCH 5/8] net/ipn3ke: remove commented out code Xu, Rosen 2019-11-06 19:02 ` [dpdk-stable] [v2 PATCH 6/8] compress/octeontx: " Kevin Traynor 2019-11-06 19:02 ` [dpdk-stable] [v2 PATCH 7/8] event/opdl: " Kevin Traynor 2019-11-06 19:02 ` [dpdk-stable] [v2 PATCH 8/8] net/bnxt: " Kevin Traynor
Reply instructions: You may reply publically 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=20191106190203.10750-6-ktraynor@redhat.com \ --to=ktraynor@redhat.com \ --cc=david.marchand@redhat.com \ --cc=dev@dpdk.org \ --cc=rosen.xu@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 Archives are clonable: git clone --mirror http://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/ http://inbox.dpdk.org/stable \ stable@dpdk.org public-inbox-index stable Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.stable AGPL code for this site: git clone https://public-inbox.org/ public-inbox