From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52])
 by dpdk.org (Postfix) with ESMTP id 2D83A5683
 for <dev@dpdk.org>; Fri, 27 Nov 2015 19:34:47 +0100 (CET)
Received: by wmvv187 with SMTP id v187so81196861wmv.1
 for <dev@dpdk.org>; Fri, 27 Nov 2015 10:34: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
 :content-type; bh=713l44XxpvhO6Kp4nCLowS5guXIrKlLsBbg9iy2lyE8=;
 b=zdg9zptVvYbc8AiC9pHKYdul5rDMXAsQwb0dQ1vkWQSlC1HvIbSrqPW8g1QMP4kpkB
 cyUuCi5JXI/jhRiK8WHVXqAkRBq0+hUtMxsYfmnRA4WqCea8RRGrWrm1go1geJuYh281
 t9M0yGt+ETUyEZNrMuV95/NA7ejK2WXwK8ZCviK8pw2OsgL4kKsn5N61R9hgPgPEh9XC
 wLdNRNVH5+2tQRHAoCDFgo6JcA91OUlCuIXSZpX9OQ3zfx+BZIpAkRypuuyK8oLIyJ32
 ifHarnKRFCW0YeS3Rf5TiyVE3Sw+N15+I5i5kh7zDfMiELOXaiEBOthMTBrLoqEOgYDB
 SPBQ==
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=713l44XxpvhO6Kp4nCLowS5guXIrKlLsBbg9iy2lyE8=;
 b=Ucwm9sUimiOXkHplmhg2Cr22UIx/XbDYztx3IXNQ3pF35Pr52cu7Wa07uVLHPJ+olV
 dgAlQED/aotGOwqyrqtQcGZ5gE1w9WQOjaXty8i52wL7bgXbIznhjWMbDW/XgU6dJQNP
 9VJsYENxVjpaa2/UCFfpB4p0OkveRZqN48nmIgiwtHDZgiTkKSRG8FP301o0cxZYhWmJ
 HdzamEAoo1WOFEjr3gJcEis01CELQvzvRajwag1yu4hHuLu4H9mEPcE3kPu/6XyL1mY7
 n94P2z3MribbDrDjbZ0Y97n2caaZDdaaSMCu0k7qEOEIxGPLFjaGTWtH+hfH5qXHvHRR
 vrug==
X-Gm-Message-State: ALoCoQlGEyRBN94D40XuJFH2tkj2J7tb5ux92e2ThaQzZI6VwO+x/hKzdIdLID0Kfl+q0JE9Z6Vh
X-Received: by 10.194.200.134 with SMTP id js6mr66348996wjc.114.1448649286947; 
 Fri, 27 Nov 2015 10:34:46 -0800 (PST)
Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])
 by smtp.gmail.com with ESMTPSA id qm9sm708318wjc.39.2015.11.27.10.34.46
 (version=TLSv1/SSLv3 cipher=OTHER);
 Fri, 27 Nov 2015 10:34:46 -0800 (PST)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Wenzhuo Lu <wenzhuo.lu@intel.com>
Date: Fri, 27 Nov 2015 19:33:26 +0100
Message-ID: <5641465.N2pWPaDSHz@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <1448604455-7526-1-git-send-email-wenzhuo.lu@intel.com>
References: <1448604455-7526-1-git-send-email-wenzhuo.lu@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] e1000: fix VF mac address issue
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 27 Nov 2015 18:34:47 -0000

2015-11-27 14:07, Wenzhuo Lu:
> If use DPDK PF + DPDK VF on igb NICs, we find the MAC address of VF
> port is always 0. Because we forget to give it a value if this MAC
> address is not assigned by PF. This patch'll assign a random MAC
> address to igb VF port as ixgbe does.
> 
> Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>

Applied with an entry in the release notes, thanks