From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrien Mazarguil Subject: [PATCH 2/3] mlx4: do not complain about port state Date: Fri, 30 Oct 2015 20:00:08 +0100 Message-ID: <1446231609-8463-2-git-send-email-adrien.mazarguil@6wind.com> References: <1446231609-8463-1-git-send-email-adrien.mazarguil@6wind.com> To: dev@dpdk.org Return-path: Received: from mail-wi0-f171.google.com (mail-wi0-f171.google.com [209.85.212.171]) by dpdk.org (Postfix) with ESMTP id BEEEB939E for ; Fri, 30 Oct 2015 20:00:32 +0100 (CET) Received: by wicfx6 with SMTP id fx6so16536539wic.1 for ; Fri, 30 Oct 2015 12:00:32 -0700 (PDT) Received: from 6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id ly4sm8435265wjb.4.2015.10.30.12.00.31 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 30 Oct 2015 12:00:32 -0700 (PDT) In-Reply-To: <1446231609-8463-1-git-send-email-adrien.mazarguil@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Port is considering inactive when the related netdevice is down. There is no reason to warn about it (and confuse users) since it's automatically brought up later by the PMD. Signed-off-by: Adrien Mazarguil --- drivers/net/mlx4/mlx4.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/mlx4/mlx4.c b/drivers/net/mlx4/mlx4.c index 4cf2f7d..3b25492 100644 --- a/drivers/net/mlx4/mlx4.c +++ b/drivers/net/mlx4/mlx4.c @@ -4985,9 +4985,9 @@ mlx4_pci_devinit(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev) goto port_error; } if (port_attr.state != IBV_PORT_ACTIVE) - WARN("bad state for port %d: \"%s\" (%d)", - port, ibv_port_state_str(port_attr.state), - port_attr.state); + DEBUG("port %d is not active: \"%s\" (%d)", + port, ibv_port_state_str(port_attr.state), + port_attr.state); /* Allocate protection domain. */ pd = ibv_alloc_pd(ctx); -- 2.1.0