From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 5459668F3 for ; Wed, 9 Jul 2014 15:03:01 +0200 (CEST) Received: by mail-wg0-f50.google.com with SMTP id n12so500364wgh.9 for ; Wed, 09 Jul 2014 06:03:23 -0700 (PDT) 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:content-type; bh=ySpMMFfGp+oU992NjrblFV59DkAN3CQntcJBKqPAKm4=; b=ZlL5cfL47LBU8e2bDDryO63dUVuy8nT66N4+4DYx6bCVzF7Qh/bHFV4Y/nSeVnZ65y ohEiEQEzrknNSSQ2atLhuH3lm98cWvituks67t+Gowy0dOcnMgDUye6fBPMo7MfgZ3RC gAhi4l9H5d/2lSRKBl2D/rnt5QFEe4uK5Lz0CaBCjSL5Z5IWSwk8feDfR0VGW9blgsu0 6sL95B+begtKtdlWwox8X3wMCptAD1NZ3crzkKC+JoXT1DXjkWH6S+zoixltkruEZcrE owXJfohUndqPvh3RygsGxsMwk5t+eDerPTFWujdOWZFPiq2OaFasD/ixLBqHySbcQIhX 6sGQ== X-Gm-Message-State: ALoCoQkH/7e3EJewpovpbHb6aOflXmKG7dC0RfiMxnnLkDi1pu8+wwnIJZPvbMMHQKNmvG1VVjcr X-Received: by 10.194.104.97 with SMTP id gd1mr46091203wjb.77.1404911003539; Wed, 09 Jul 2014 06:03:23 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id jy8sm103297545wjc.7.2014.07.09.06.03.22 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 09 Jul 2014 06:03:22 -0700 (PDT) From: Thomas Monjalon To: sothy shan Date: Wed, 09 Jul 2014 15:03:14 +0200 Message-ID: <10643925.PO8B9qmg9Z@xps13> Organization: 6WIND User-Agent: KMail/4.13.1 (Linux/3.14.6-1-ARCH; KDE/4.13.1; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] implicit declaration of function rte_igb_pmd_init() 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: Wed, 09 Jul 2014 13:03:01 -0000 Hi, 2014-07-09 14:52, sothy shan: > /home/cubiq/sothy/dpdk-ovs/openvswitch/datapath/dpdk/init.c:42:0: > /home/cubiq/sothy/dpdk-ovs/openvswitch/datapath/dpdk/init_drivers.h: = In > function =E2=80=98init_drivers=E2=80=99: > /home/cubiq/sothy/dpdk-ovs/openvswitch/datapath/dpdk/init_drivers.h:4= 9:4: > error: implicit declaration of function =E2=80=98rte_igb_pmd_init=E2=80= =99 > [-Werror=3Dimplicit-function-declaration] > (rte_igb_pmd_init() < 0) || > ^ You are building an openvswitch application using an old DPDK API. This function is not public anymore in DPDK 1.7.0. Please fix and report it on the appropriate mailing list. You can use some macros in version.h to keep compatibility with older versions. --=20 Thomas