From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id A85791B716 for ; Wed, 9 May 2018 17:29:12 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from shahafs@mellanox.com) with ESMTPS (AES256-SHA encrypted); 9 May 2018 18:06:11 +0300 Received: from unicorn01.mtl.labs.mlnx. (unicorn01.mtl.labs.mlnx [10.7.12.62]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id w49F4SrL008373; Wed, 9 May 2018 18:04:29 +0300 From: Shahaf Shuler To: bluca@debian.org Cc: stable@dpdk.org, nelio.laranjeiro@6wind.com, adrien.mazarguil@6wind.com, yskoh@mellanox.com Date: Wed, 9 May 2018 18:03:56 +0300 Message-Id: X-Mailer: git-send-email 2.12.0 MIME-Version: 1.0 In-Reply-To: References: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH v2 04/20] net/mlx5: normalize function prototypes X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 May 2018 15:29:13 -0000 From: NĂ©lio Laranjeiro [ upstream commit c9e88d35daf9a19bf9b653dd96c216be4a214d32 ] Signed-off-by: Nelio Laranjeiro Acked-by: Adrien Mazarguil --- drivers/net/mlx5/mlx5_flow.c | 2 +- drivers/net/mlx5/mlx5_mr.c | 11 ++++++----- drivers/net/mlx5/mlx5_rxq.c | 16 ++++++++-------- drivers/net/mlx5/mlx5_txq.c | 8 ++++---- 4 files changed, 19 insertions(+), 18 deletions(-) diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c index 76900b095a..a99d64f922 100644 --- a/drivers/net/mlx5/mlx5_flow.c +++ b/drivers/net/mlx5/mlx5_flow.c @@ -875,7 +875,7 @@ priv_flow_convert_items_validate(struct priv *priv __rte_unused, * @return * A verbs flow attribute on success, NULL otherwise. */ -static struct ibv_flow_attr* +static struct ibv_flow_attr * priv_flow_convert_allocate(struct priv *priv __rte_unused, unsigned int priority, unsigned int size, diff --git a/drivers/net/mlx5/mlx5_mr.c b/drivers/net/mlx5/mlx5_mr.c index 38a8e2f409..4e1495800f 100644 --- a/drivers/net/mlx5/mlx5_mr.c +++ b/drivers/net/mlx5/mlx5_mr.c @@ -66,8 +66,9 @@ mlx5_check_mempool_cb(struct rte_mempool *mp __rte_unused, * @return * 0 on success (mempool is virtually contiguous), -1 on error. */ -static int mlx5_check_mempool(struct rte_mempool *mp, uintptr_t *start, - uintptr_t *end) +static int +mlx5_check_mempool(struct rte_mempool *mp, uintptr_t *start, + uintptr_t *end) { struct mlx5_check_mempool_data data; @@ -97,7 +98,7 @@ static int mlx5_check_mempool(struct rte_mempool *mp, uintptr_t *start, * @return * mr on success, NULL on failure. */ -struct mlx5_mr* +struct mlx5_mr * priv_txq_mp2mr_reg(struct priv *priv, struct mlx5_txq_data *txq, struct rte_mempool *mp, unsigned int idx) { @@ -244,7 +245,7 @@ mlx5_mp2mr_iter(struct rte_mempool *mp, void *arg) * @return * The memory region on success. */ -struct mlx5_mr* +struct mlx5_mr * priv_mr_new(struct priv *priv, struct rte_mempool *mp) { const struct rte_memseg *ms = rte_eal_get_physmem_layout(); @@ -304,7 +305,7 @@ priv_mr_new(struct priv *priv, struct rte_mempool *mp) * @return * The memory region on success. */ -struct mlx5_mr* +struct mlx5_mr * priv_mr_get(struct priv *priv, struct rte_mempool *mp) { struct mlx5_mr *mr; diff --git a/drivers/net/mlx5/mlx5_rxq.c b/drivers/net/mlx5/mlx5_rxq.c index 8b9cc1dd04..2fc6e08aa7 100644 --- a/drivers/net/mlx5/mlx5_rxq.c +++ b/drivers/net/mlx5/mlx5_rxq.c @@ -601,7 +601,7 @@ mlx5_rx_intr_disable(struct rte_eth_dev *dev, uint16_t rx_queue_id) * @return * The Verbs object initialised if it can be created. */ -struct mlx5_rxq_ibv* +struct mlx5_rxq_ibv * mlx5_priv_rxq_ibv_new(struct priv *priv, uint16_t idx) { struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx]; @@ -819,7 +819,7 @@ mlx5_priv_rxq_ibv_new(struct priv *priv, uint16_t idx) * @return * The Verbs object if it exists. */ -struct mlx5_rxq_ibv* +struct mlx5_rxq_ibv * mlx5_priv_rxq_ibv_get(struct priv *priv, uint16_t idx) { struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx]; @@ -932,7 +932,7 @@ mlx5_priv_rxq_ibv_releasable(struct priv *priv __rte_unused, * @return * A DPDK queue object on success. */ -struct mlx5_rxq_ctrl* +struct mlx5_rxq_ctrl * mlx5_priv_rxq_new(struct priv *priv, uint16_t idx, uint16_t desc, unsigned int socket, const struct rte_eth_rxconf *conf, struct rte_mempool *mp) @@ -1057,7 +1057,7 @@ mlx5_priv_rxq_new(struct priv *priv, uint16_t idx, uint16_t desc, * @return * A pointer to the queue if it exists. */ -struct mlx5_rxq_ctrl* +struct mlx5_rxq_ctrl * mlx5_priv_rxq_get(struct priv *priv, uint16_t idx) { struct mlx5_rxq_ctrl *rxq_ctrl = NULL; @@ -1170,7 +1170,7 @@ mlx5_priv_rxq_verify(struct priv *priv) * @return * A new indirection table. */ -struct mlx5_ind_table_ibv* +struct mlx5_ind_table_ibv * mlx5_priv_ind_table_ibv_new(struct priv *priv, uint16_t queues[], uint16_t queues_n) { @@ -1232,7 +1232,7 @@ mlx5_priv_ind_table_ibv_new(struct priv *priv, uint16_t queues[], * @return * An indirection table if found. */ -struct mlx5_ind_table_ibv* +struct mlx5_ind_table_ibv * mlx5_priv_ind_table_ibv_get(struct priv *priv, uint16_t queues[], uint16_t queues_n) { @@ -1331,7 +1331,7 @@ mlx5_priv_ind_table_ibv_verify(struct priv *priv) * @return * An hash Rx queue on success. */ -struct mlx5_hrxq* +struct mlx5_hrxq * mlx5_priv_hrxq_new(struct priv *priv, uint8_t *rss_key, uint8_t rss_key_len, uint64_t hash_fields, uint16_t queues[], uint16_t queues_n) { @@ -1400,7 +1400,7 @@ mlx5_priv_hrxq_new(struct priv *priv, uint8_t *rss_key, uint8_t rss_key_len, * @return * An hash Rx queue on success. */ -struct mlx5_hrxq* +struct mlx5_hrxq * mlx5_priv_hrxq_get(struct priv *priv, uint8_t *rss_key, uint8_t rss_key_len, uint64_t hash_fields, uint16_t queues[], uint16_t queues_n) { diff --git a/drivers/net/mlx5/mlx5_txq.c b/drivers/net/mlx5/mlx5_txq.c index b10700beb6..f64618faae 100644 --- a/drivers/net/mlx5/mlx5_txq.c +++ b/drivers/net/mlx5/mlx5_txq.c @@ -369,7 +369,7 @@ is_empw_burst_func(eth_tx_burst_t tx_pkt_burst) * @return * The Verbs object initialised if it can be created. */ -struct mlx5_txq_ibv* +struct mlx5_txq_ibv * mlx5_priv_txq_ibv_new(struct priv *priv, uint16_t idx) { struct mlx5_txq_data *txq_data = (*priv->txqs)[idx]; @@ -547,7 +547,7 @@ mlx5_priv_txq_ibv_new(struct priv *priv, uint16_t idx) * @return * The Verbs object if it exists. */ -struct mlx5_txq_ibv* +struct mlx5_txq_ibv * mlx5_priv_txq_ibv_get(struct priv *priv, uint16_t idx) { struct mlx5_txq_ctrl *txq_ctrl; @@ -751,7 +751,7 @@ txq_set_params(struct mlx5_txq_ctrl *txq_ctrl) * @return * A DPDK queue object on success. */ -struct mlx5_txq_ctrl* +struct mlx5_txq_ctrl * mlx5_priv_txq_new(struct priv *priv, uint16_t idx, uint16_t desc, unsigned int socket, const struct rte_eth_txconf *conf) @@ -796,7 +796,7 @@ mlx5_priv_txq_new(struct priv *priv, uint16_t idx, uint16_t desc, * @return * A pointer to the queue if it exists. */ -struct mlx5_txq_ctrl* +struct mlx5_txq_ctrl * mlx5_priv_txq_get(struct priv *priv, uint16_t idx) { struct mlx5_txq_ctrl *ctrl = NULL; -- 2.12.0