From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f180.google.com (mail-wi0-f180.google.com [209.85.212.180]) by dpdk.org (Postfix) with ESMTP id 2482E7EEF for ; Thu, 9 Oct 2014 20:31:05 +0200 (CEST) Received: by mail-wi0-f180.google.com with SMTP id em10so2715875wid.13 for ; Thu, 09 Oct 2014 11:38:28 -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=tQK+X3xOSc0QZ64AAIw93YvK0UlsTx57oQa9YGZLaTo=; b=hzDfbh0IuY2zKQQeE8azAqvWcKCAOsNiECUNHQIAboywYWBZpXi+eC5wFJe1tBZ0i7 OoAGG/9WGGkB+jrQ7LrfH8tG6nVT2nR+qDe9Ru9CemjsYWPVYJ8QeHtlNAv4YuLPCXwr KFv/zD9bvJu1+rWwwzs7MRx1MapF3ovaiVrf5Rx4Oeyih6WPytCQqjs4uWRxSkZexN6q TCl74sDfopieYwmstT1xSvWl5A5n+CPiRFGqkCwdii3r+yClN8HcGDMdd1VYMnaKsqgE Gyc3rRgD5Hh8HIYTm7+hKUa+J8v06IPUZpLqMJJC4B3FI0k6hHg9bL5whwRA9x4wdL/R P7Hg== X-Gm-Message-State: ALoCoQkI9xVL8Doque9XdpbCHIAfNcFeL273BAKSJvMGd+otvqw8GLs2gbSQ2qdV1OURBvWIDtPY X-Received: by 10.181.8.194 with SMTP id dm2mr45406wid.6.1412879907943; Thu, 09 Oct 2014 11:38:27 -0700 (PDT) Received: from xps13.localnet (13.17.90.92.rev.sfr.net. [92.90.17.13]) by mx.google.com with ESMTPSA id gw6sm63965wib.8.2014.10.09.11.38.26 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 09 Oct 2014 11:38:27 -0700 (PDT) From: Thomas Monjalon To: Pablo de Lara Date: Thu, 09 Oct 2014 20:38:05 +0200 Message-ID: <141288571.BedMkrLIpZ@xps13> Organization: 6WIND User-Agent: KMail/4.13.3 (Linux/3.15.8-1-ARCH; KDE/4.13.3; x86_64; ; ) In-Reply-To: <1412202445-7832-1-git-send-email-pablo.de.lara.guarch@intel.com> References: <1412202445-7832-1-git-send-email-pablo.de.lara.guarch@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] pmd: Fixed compilation error due to old RTE_DRV_LOG when bypass=y 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: Thu, 09 Oct 2014 18:31:05 -0000 2014-10-01 23:27, Pablo de Lara: > RTE_DRV_LOG macro has changed, so now it requires at least 2 arguments, > which have been added in ixgbe_bypass, specifying log type, to fix compilation error > > Signed-off-by: Pablo de Lara Acked-by: Thomas Monjalon Applied with this commit log: ixgbe: fix build with bypass enabled Since commit aae1047905621 ("use the right debug macro"), DEBUGOUT was replaced by PMD_DRV_LOG which requires at least 2 arguments. But the level argument was missing. Thanks -- Thomas