From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id 3946732A5 for ; Tue, 8 Mar 2016 18:06:47 +0100 (CET) Received: by mail-wm0-f44.google.com with SMTP id l68so36620140wml.1 for ; Tue, 08 Mar 2016 09:06:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=kE3TbDFHAq9+951eG9BIhULfDxkPm64g2BQgCcGjtDk=; b=vsFpmn8MNo6ZuYYDwHVzEsq1Ce9hylbMpv9VR1ZuRf9+iIofMrFugRZWvI1C+EzByJ JCbs+FYc9dJgUWj6/d3HNf7yF7ZvmiBHy8Y3CMg3p6yEVqN2bQJf7KdqylaTayvD42pE ZFH+f6PwpVEFEZbNURa4p548UtX917h+O8X4tY95qoMw0S5xdycMc80NNZCW0ejWEhY+ c8HeANoAFYyX2N1DNVWJLp/qaQCIyIlV3F9v/pbD0XMHOY072RBkFoHvuzJufykXh35S BslWb6hE93RZCmunRPRpvOOlrB/qEvpWWcc0IKO4MKPRRe8zpY+U9ActL+1FwQSzHoRk ReeQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding; bh=kE3TbDFHAq9+951eG9BIhULfDxkPm64g2BQgCcGjtDk=; b=fXwgNVzISpDKZRG0Bj2J3LKVXTMnv3M37R6tCyTz/elujBj9+SOWD/3IKTDLjR++K/ dA3sFPezTCVZKqpRiXPtB/yHWK3w8A7fcLmqq967yQumInWFc6Z2WTOEgM1H9pqni+zq PetX5wVg9UL5njuRD4ewP0bhedTUDneMAqDvvfsFwCrXZc3/FAbEQl20krBaq6Pwj030 b7E+791WA8pWU1Li30rCD1p/TVskvjee/I2/4hpBNooQXoBlsc07Jhh2NE7Gcnd0voWV /fMW9fitSmEh2KmyB7dc7Rjvy5z/niRyMTlqrsjnzlyBkabKACEbvQyeed/G1RRNKz/7 GyDQ== X-Gm-Message-State: AD7BkJIRZV5oYOxwCQw7T3BuvMBWMTitrI51PpJAIBZRxEKsmzzF2nk5/nz3Ft3GWtQhaVEx X-Received: by 10.194.121.34 with SMTP id lh2mr29991490wjb.145.1457456807030; Tue, 08 Mar 2016 09:06:47 -0800 (PST) Received: from xps13.localnet (171.36.101.84.rev.sfr.net. [84.101.36.171]) by smtp.gmail.com with ESMTPSA id gk4sm3885372wjd.7.2016.03.08.09.06.45 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 08 Mar 2016 09:06:45 -0800 (PST) From: Thomas Monjalon To: Helin Zhang Date: Tue, 08 Mar 2016 18:05:08 +0100 Message-ID: <10892657.iyd1LS9jva@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1456113585-15259-3-git-send-email-helin.zhang@intel.com> References: <1450665486-8335-3-git-send-email-helin.zhang@intel.com> <1456113585-15259-1-git-send-email-helin.zhang@intel.com> <1456113585-15259-3-git-send-email-helin.zhang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org, zhe.tag@intel.com Subject: Re: [dpdk-dev] [PATCH v2 2/3] eal: remove pci config of extended tag X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Mar 2016 17:06:47 -0000 2016-02-22 11:59, Helin Zhang: > --- a/lib/librte_eal/common/include/rte_pci.h > +++ b/lib/librte_eal/common/include/rte_pci.h > @@ -580,12 +580,14 @@ void rte_eal_pci_ioport_write(struct rte_pci_ioport *p, > #ifdef RTE_PCI_CONFIG > /** > * Set special config space registers for performance purpose. > + * It is deprecated, as all configurations have been moved into > + * each PMDs respectively. > * > * @param dev > * A pointer to a rte_pci_device structure describing the device > * to use > */ > -void pci_config_space_set(struct rte_pci_device *dev); > +void pci_config_space_set(struct rte_pci_device *dev) __rte_deprecated; There is a missing prototype error because #include is missing.