From patchwork Wed Mar 13 17:06:42 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Natanael Copa X-Patchwork-Id: 51160 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AAEDA2BD3; Wed, 13 Mar 2019 18:07:21 +0100 (CET) Received: from mx1.tetrasec.net (mx1.tetrasec.net [74.117.190.25]) by dpdk.org (Postfix) with ESMTP id CE8E2A3 for ; Wed, 13 Mar 2019 18:07:19 +0100 (CET) Received: from mx1.tetrasec.net (mail.local [127.0.0.1]) by mx1.tetrasec.net (Postfix) with ESMTP id 315499E1D55; Wed, 13 Mar 2019 17:07:19 +0000 (UTC) Received: from ncopa-desktop.lan (67.63.200.37.customer.cdi.no [37.200.63.67]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: n@tanael.org) by mx1.tetrasec.net (Postfix) with ESMTPSA id 2D6199E03AF; Wed, 13 Mar 2019 17:07:17 +0000 (UTC) From: Natanael Copa To: dev@dpdk.org Cc: Natanael Copa Date: Wed, 13 Mar 2019 18:06:42 +0100 Message-Id: <20190313170657.16688-1-ncopa@alpinelinux.org> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v3 00/15] Build fixes for musl libc X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" A set of patches to fix build with musl libc. I also did a few cleanups wrt macros and fixed a few scary compiler warnings while at it. Please note that those are only compile tested on x86_64 with musl libc. v2 has some code style fixes reported by checkpatch v3 is a full reroll of the entire patch set to enable automatted tests and logic for patchwork patchset. Natanael Copa (15): app/testpmd: replace uint with unsigned int net/cxgbe: replace uint with unsigned int bus/pci: add fallback for out[lwb]_p for non GNU libc bus/pci: factor out various ifdefs in pci_uio_ioport_{read,write} bus/fslmc: fix compile error with musl libc bus/fslmc: remove unused include of error.h net/nfp: build fix for musl libc app/test: include fcntl.h due to use of O_RDONLY app/test: fix setting of -D_GNU_SOURCE with meson bus/dpaa: use warn(3) instead of error(3) to improve portability bus/dpaa: fix warning: "__WORDSIZE" is not defined, evaluates to 0 crypto/dpaa2_sec: build fix for musl libc crypto/dpaa2_sec: simplify pr_{debug,err,warn} macros net/netvsc: fix compile warning for fcntl.h include eal/linux: simplify debug message in sigbus_handler app/test-pmd/testpmd.h | 2 +- app/test/meson.build | 2 +- app/test/test_eal_flags.c | 1 + drivers/bus/dpaa/base/fman/netcfg_layer.c | 4 +- drivers/bus/dpaa/base/qbman/bman_driver.c | 6 +- drivers/bus/dpaa/base/qbman/qman_driver.c | 12 ++-- drivers/bus/dpaa/include/compat.h | 2 +- drivers/bus/dpaa/include/fsl_qman.h | 3 +- drivers/bus/fslmc/qbman/include/compat.h | 2 +- drivers/bus/pci/linux/pci_uio.c | 82 ++++++++++++++-------- drivers/crypto/dpaa2_sec/hw/compat.h | 36 +++++----- drivers/net/cxgbe/base/common.h | 18 ++--- drivers/net/netvsc/hn_vf.c | 2 +- drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 2 + lib/librte_eal/linux/eal/eal_dev.c | 4 +- 15 files changed, 99 insertions(+), 79 deletions(-)