From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id B7D6C2C2F for ; Thu, 25 Oct 2018 01:59:22 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 341342217B; Wed, 24 Oct 2018 19:59:22 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Wed, 24 Oct 2018 19:59:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=8fXrL44yuEc+MbdADSxcYsq6DTp+a7NvNdLSvlUXBsg=; b=WqsJaf5qAOYf 6kZlI3B2LbCrNmGM0Ehu8YRdirfDMifeOGratpu33L6Cy/S0te99eezOPo4jTEF0 Cr+MZY0p0W/JmMnqignZfW3RYFGel7dtvZnjKFZ7HSYeRJKnVVyGutDFv5k8Ivlk EeBavlkIf/cvUDsOJFhGsYDeW3Q80Xc= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=8fXrL44yuEc+MbdADSxcYsq6DTp+a7NvNdLSvlUXB sg=; b=iB00zpPRqkJuM8Yp90e16L6M/KtnRBdD99nRuWw6FOs60UU4INdi3MXbG awzr1idnsgpcvv7FXyewB/kIELiehf4l+h/8Td+5g5PGtUbBVWizub/OLvLw4TGU grSfgEBmNM3Cz0jw5BCN7MekcayO5WUaEKKAiOmD4N76aR/FoDRBo3Rv+8nC6Cln muamQmnt+BTu8lFgbUXKb0LVnjLpkzwKJ0rHS/UWuQ4dgKv/KhKL/24Jgh4iR13B zmSO1U2TXvB4+qUMGsjV3ly01YiAtlINmxzw18ZMtNkSeEW4nrxtPH8jUtRLAhE1 diYzex9CKM6E0CllW/wchzsOfECnA== X-ME-Sender: X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id F2D29E44D4; Wed, 24 Oct 2018 19:59:20 -0400 (EDT) From: Thomas Monjalon To: Keith Wiles Cc: dev@dpdk.org, ferruh.yigit@intel.com Date: Thu, 25 Oct 2018 01:59:23 +0200 Message-ID: <5431907.T2mJXSpNFN@xps> In-Reply-To: <20181005144825.289-1-keith.wiles@intel.com> References: <20181005144825.289-1-keith.wiles@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2] add shorthand support for __rte_weak macro 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: , X-List-Received-Date: Wed, 24 Oct 2018 23:59:23 -0000 05/10/2018 16:48, Keith Wiles: > eal: add shorthand __rte_weak macro > qat: update code to use __rte_weak macro > avf: update code to use __rte_weak macro > fm10k: update code to use __rte_weak macro > i40e: update code to use __rte_weak macro > ixgbe: update code to use __rte_weak macro > mlx5: update code to use __rte_weak macro > virtio: update code to use __rte_weak macro > acl: update code to use __rte_weak macro > bpf: update code to use __rte_weak macro > > Merge all of the patches into one patch > > Signed-off-by: Keith Wiles > Reviewed-by: Ferruh Yigit Applied with below small change, thanks. - * short definition to mark a function or variable to a weak reference. + * Mark a function or variable to a weak reference.