DPDK patches and discussions
 help / color / mirror / Atom feed
From: Weiguo Li <liwg06@foxmail.com>
To: dev@dpdk.org
Subject: [PATCH 11/16] kni: add define guards to avoid multi-inclusion
Date: Sun,  6 Feb 2022 11:58:41 +0800	[thread overview]
Message-ID: <tencent_93CC9E464690EBA87DE78E848988C4FCF10A@qq.com> (raw)
In-Reply-To: <20220206035846.2840462-1-liwg06@foxmail.com>

Supplement define guards to prevent multiple inclusion.

Signed-off-by: Weiguo Li <liwg06@foxmail.com>
---
 kernel/linux/kni/compat.h | 5 +++++
 lib/kni/rte_kni_fifo.h    | 5 ++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/kernel/linux/kni/compat.h b/kernel/linux/kni/compat.h
index 664785674f..0879a7666e 100644
--- a/kernel/linux/kni/compat.h
+++ b/kernel/linux/kni/compat.h
@@ -3,6 +3,9 @@
  * Minimal wrappers to allow compiling kni on older kernels.
  */
 
+#ifndef _KNI_COMPAT_H_
+#define _KNI_COMPAT_H_
+
 #include <linux/version.h>
 
 #ifndef RHEL_RELEASE_VERSION
@@ -141,3 +144,5 @@
 #if KERNEL_VERSION(5, 9, 0) > LINUX_VERSION_CODE
 #define HAVE_TSK_IN_GUP
 #endif
+
+#endif /* _KNI_COMPAT_H_ */
diff --git a/lib/kni/rte_kni_fifo.h b/lib/kni/rte_kni_fifo.h
index d2ec82fe87..73d70c9bda 100644
--- a/lib/kni/rte_kni_fifo.h
+++ b/lib/kni/rte_kni_fifo.h
@@ -2,7 +2,8 @@
  * Copyright(c) 2010-2014 Intel Corporation
  */
 
-
+#ifndef _RTE_KNI_FIFO_H_
+#define _RTE_KNI_FIFO_H_
 
 /**
  * @internal when c11 memory model enabled use c11 atomic memory barrier.
@@ -115,3 +116,5 @@ kni_fifo_free_count(struct rte_kni_fifo *fifo)
 	uint32_t fifo_read = __KNI_LOAD_ACQUIRE(&fifo->read);
 	return (fifo_read - fifo_write - 1) & (fifo->len - 1);
 }
+
+#endif /* _RTE_KNI_FIFO_H_ */
-- 
2.25.1


  parent reply	other threads:[~2022-02-06  3:59 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20220206035846.2840462-1-liwg06@foxmail.com>
2022-02-06  3:58 ` [PATCH 02/16] event/octeontx: " Weiguo Li
2022-02-08 16:27   ` Thomas Monjalon
2022-02-09  3:02     ` [PATCH v2 00/16] " Weiguo Li
2022-02-09  6:29       ` Stephen Hemminger
2022-02-09  7:24       ` [PATCH v3 0/4] " Weiguo Li
2022-02-06  3:58 ` [PATCH 03/16] net/cxgbe: add define guards to avoid multiple inclusion Weiguo Li
2022-02-06  3:58 ` [PATCH 04/16] net/enetfec: " Weiguo Li
2022-02-06  3:58 ` [PATCH 05/16] net/i40e: " Weiguo Li
2022-02-06  3:58 ` [PATCH 06/16] net/netvsc: add define guards to avoid multi-inclusion Weiguo Li
2022-02-06  3:58 ` [PATCH 07/16] net/qede: " Weiguo Li
2022-02-06  3:58 ` [PATCH 08/16] net/tap: " Weiguo Li
2022-02-06  3:58 ` [PATCH 09/16] net/virtio: " Weiguo Li
2022-02-06  3:58 ` [PATCH 10/16] raw/ifpga/base: " Weiguo Li
2022-02-06  3:58 ` Weiguo Li [this message]
2022-02-06  3:58 ` [PATCH 12/16] acl: " Weiguo Li
2022-02-06  3:58 ` [PATCH 13/16] eal: " Weiguo Li
2022-02-06 16:24   ` Dmitry Kozlyuk
2022-02-06  3:58 ` [PATCH 14/16] efd: " Weiguo Li
2022-02-06  3:58 ` [PATCH 15/16] hash: " Weiguo Li
2022-02-06  3:58 ` [PATCH 16/16] pcapng: " Weiguo Li

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=tencent_93CC9E464690EBA87DE78E848988C4FCF10A@qq.com \
    --to=liwg06@foxmail.com \
    --cc=dev@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
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).