DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev]  [PATCH] net/dpaa2: remove unused global variable
@ 2018-02-10 11:57 Jerin Jacob
  2018-02-10 12:02 ` Hemant Agrawal
  0 siblings, 1 reply; 4+ messages in thread
From: Jerin Jacob @ 2018-02-10 11:57 UTC (permalink / raw)
  To: dev; +Cc: Jerin Jacob, hemant.agrawal

Due to the missing __packed definition, compiler treating
it as as global variable.

#grep "Allocating common symbols" -A 100 build/app/testacl.map
__packed   0x8  /build/lib/librte_pmd_dpaa2.a(dpaa2_rxtx.o)

Fixes: a5fc38d422a7 ("net/dpaa2: support Rx packet parsing")

Cc: hemant.agrawal@nxp.com
Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
---
 drivers/net/dpaa2/base/dpaa2_hw_dpni_annot.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/dpaa2/base/dpaa2_hw_dpni_annot.h b/drivers/net/dpaa2/base/dpaa2_hw_dpni_annot.h
index 41931e858..779cdf2b2 100644
--- a/drivers/net/dpaa2/base/dpaa2_hw_dpni_annot.h
+++ b/drivers/net/dpaa2/base/dpaa2_hw_dpni_annot.h
@@ -37,7 +37,7 @@ struct dpaa2_fas {
 	uint8_t ppid;
 	__le16 ifpid;
 	__le32 status;
-} __packed;
+}  __attribute__((__packed__));
 
 /**
  * HW Packet Annotation  Register structures
-- 
2.16.1

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

end of thread, other threads:[~2018-02-13 15:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-10 11:57 [dpdk-dev] [PATCH] net/dpaa2: remove unused global variable Jerin Jacob
2018-02-10 12:02 ` Hemant Agrawal
2018-02-10 12:44   ` Jerin Jacob
2018-02-13 15:35   ` Thomas Monjalon

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).