From: David Marchand <david.marchand@redhat.com> To: dev@dpdk.org Cc: maxime.coquelin@redhat.com, olivier.matz@6wind.com, fbl@sysclose.org, i.maximets@ovn.org, Ferruh Yigit <ferruh.yigit@intel.com>, Lance Richardson <lance.richardson@broadcom.com>, Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>, Ajit Khaparde <ajit.khaparde@broadcom.com> Subject: [dpdk-dev] [PATCH v2 1/4] mbuf: mark old offload flag as deprecated Date: Thu, 29 Apr 2021 10:04:35 +0200 Message-ID: <20210429080438.15032-2-david.marchand@redhat.com> (raw) In-Reply-To: <20210429080438.15032-1-david.marchand@redhat.com> PKT_RX_EIP_CKSUM_BAD has been declared deprecated but there was no warning to applications still using it. Fix this by marking as deprecated with the newly introduced RTE_DEPRECATED. Fixes: e8a419d6de4b ("mbuf: rename outer IP checksum macro") Signed-off-by: David Marchand <david.marchand@redhat.com> Reviewed-by: Flavio Leitner <fbl@sysclose.org> Acked-by: Olivier Matz <olivier.matz@6wind.com> --- Changes since v1: - updated commitlog following Olivier comment, --- lib/mbuf/rte_mbuf_core.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/mbuf/rte_mbuf_core.h b/lib/mbuf/rte_mbuf_core.h index c17dc95c51..bb38d7f581 100644 --- a/lib/mbuf/rte_mbuf_core.h +++ b/lib/mbuf/rte_mbuf_core.h @@ -83,7 +83,8 @@ extern "C" { * Deprecated. * This flag has been renamed, use PKT_RX_OUTER_IP_CKSUM_BAD instead. */ -#define PKT_RX_EIP_CKSUM_BAD PKT_RX_OUTER_IP_CKSUM_BAD +#define PKT_RX_EIP_CKSUM_BAD \ + RTE_DEPRECATED(PKT_RX_EIP_CKSUM_BAD) PKT_RX_OUTER_IP_CKSUM_BAD /** * A vlan has been stripped by the hardware and its tci is saved in -- 2.23.0
next prev parent reply other threads:[~2021-04-29 8:05 UTC|newest] Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-04-01 9:52 [dpdk-dev] [PATCH 0/5] Offload flags fixes David Marchand 2021-04-01 9:52 ` [dpdk-dev] [PATCH 1/5] mbuf: mark old offload flag as deprecated David Marchand 2021-04-07 20:14 ` Flavio Leitner 2021-04-08 7:23 ` Olivier Matz 2021-04-08 8:41 ` David Marchand 2021-04-01 9:52 ` [dpdk-dev] [PATCH 2/5] net/tap: do not touch Tx offload flags David Marchand 2021-04-07 20:15 ` Flavio Leitner 2021-04-08 7:41 ` Olivier Matz 2021-04-08 11:21 ` Flavio Leitner 2021-04-08 12:05 ` Olivier Matz 2021-04-08 12:58 ` Flavio Leitner 2021-04-09 13:30 ` Olivier Matz 2021-04-09 16:55 ` Flavio Leitner 2021-04-28 12:17 ` David Marchand 2021-04-08 12:16 ` Ananyev, Konstantin 2021-04-08 7:53 ` Olivier Matz 2021-04-28 12:12 ` David Marchand 2021-04-01 9:52 ` [dpdk-dev] [PATCH 3/5] net/virtio: " David Marchand 2021-04-13 14:17 ` Maxime Coquelin 2021-04-01 9:52 ` [dpdk-dev] [PATCH 4/5] net/virtio: refactor Tx offload helper David Marchand 2021-04-08 13:05 ` Flavio Leitner 2021-04-09 2:31 ` Ruifeng Wang 2021-04-01 9:52 ` [dpdk-dev] [PATCH 5/5] vhost: fix offload flags in Rx path David Marchand 2021-04-08 8:28 ` Olivier Matz 2021-04-08 18:38 ` Flavio Leitner 2021-04-13 15:27 ` Maxime Coquelin 2021-04-27 17:09 ` David Marchand 2021-04-27 17:19 ` David Marchand 2021-04-29 8:04 ` [dpdk-dev] [PATCH v2 0/4] Offload flags fixes David Marchand 2021-04-29 8:04 ` David Marchand [this message] 2021-04-29 12:14 ` [dpdk-dev] [PATCH v2 1/4] mbuf: mark old offload flag as deprecated Lance Richardson 2021-04-29 16:45 ` Ajit Khaparde 2021-04-29 8:04 ` [dpdk-dev] [PATCH v2 2/4] net/virtio: do not touch Tx offload flags David Marchand 2021-04-29 13:51 ` Flavio Leitner 2021-04-29 8:04 ` [dpdk-dev] [PATCH v2 3/4] net/virtio: refactor Tx offload helper David Marchand 2021-04-29 12:59 ` Maxime Coquelin 2021-04-29 8:04 ` [dpdk-dev] [PATCH v2 4/4] vhost: fix offload flags in Rx path David Marchand 2021-04-29 13:30 ` Maxime Coquelin 2021-04-29 13:31 ` Maxime Coquelin 2021-04-29 20:21 ` David Marchand 2021-04-30 8:38 ` Maxime Coquelin 2021-04-29 20:09 ` David Marchand 2021-04-29 18:39 ` Flavio Leitner 2021-04-29 19:18 ` David Marchand 2021-05-03 13:26 ` [dpdk-dev] [PATCH v3 0/4] Offload flags fixes David Marchand 2021-05-03 13:26 ` [dpdk-dev] [PATCH v3 1/4] mbuf: mark old offload flag as deprecated David Marchand 2021-05-03 14:02 ` Maxime Coquelin 2021-05-03 14:12 ` David Marchand 2021-05-03 13:26 ` [dpdk-dev] [PATCH v3 2/4] net/virtio: do not touch Tx offload flags David Marchand 2021-05-03 13:26 ` [dpdk-dev] [PATCH v3 3/4] net/virtio: refactor Tx offload helper David Marchand 2021-05-03 13:26 ` [dpdk-dev] [PATCH v3 4/4] vhost: fix offload flags in Rx path David Marchand 2021-05-03 15:24 ` [dpdk-dev] [PATCH v3 0/4] Offload flags fixes Maxime Coquelin 2021-05-03 16:21 ` David Marchand 2021-05-03 16:43 ` [dpdk-dev] [PATCH v4 0/3] " David Marchand 2021-05-03 16:43 ` [dpdk-dev] [PATCH v4 1/3] net/virtio: do not touch Tx offload flags David Marchand 2021-05-03 16:43 ` [dpdk-dev] [PATCH v4 2/3] net/virtio: refactor Tx offload helper David Marchand 2021-05-03 16:43 ` [dpdk-dev] [PATCH v4 3/3] vhost: fix offload flags in Rx path David Marchand 2021-05-04 11:07 ` Flavio Leitner 2021-05-08 6:24 ` Wang, Yinan 2021-05-12 3:29 ` Wang, Yinan 2021-05-12 15:20 ` David Marchand 2021-05-13 6:34 ` Wang, Yinan 2021-05-04 8:29 ` [dpdk-dev] [PATCH v4 0/3] Offload flags fixes Maxime Coquelin
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=20210429080438.15032-2-david.marchand@redhat.com \ --to=david.marchand@redhat.com \ --cc=ajit.khaparde@broadcom.com \ --cc=andrew.rybchenko@oktetlabs.ru \ --cc=dev@dpdk.org \ --cc=fbl@sysclose.org \ --cc=ferruh.yigit@intel.com \ --cc=i.maximets@ovn.org \ --cc=lance.richardson@broadcom.com \ --cc=maxime.coquelin@redhat.com \ --cc=olivier.matz@6wind.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
DPDK patches and discussions This inbox may be cloned and mirrored by anyone: git clone --mirror https://inbox.dpdk.org/dev/0 dev/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 dev dev/ https://inbox.dpdk.org/dev \ dev@dpdk.org public-inbox-index dev Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.dev AGPL code for this site: git clone https://public-inbox.org/public-inbox.git