From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-la0-f44.google.com (mail-la0-f44.google.com [209.85.215.44]) by dpdk.org (Postfix) with ESMTP id 2942C5938 for ; Mon, 24 Mar 2014 15:39:27 +0100 (CET) Received: by mail-la0-f44.google.com with SMTP id hr13so3754217lab.31 for ; Mon, 24 Mar 2014 07:40:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=hZXQJTavpKJaAGMs7qHHjU4QB+LLMTaFL4sJ91bMLG0=; b=CTMJP5/S3Vy8KiaRlIn3flBiJV0NbS+NMA88WqDExKIQ6yoqM0GwYO6cclb+LdgQFF ebQJpP1b9tavE82fJbWv3im9bdheEfqAcBW0z7JTxdMyb2Qz+ldVvqBiUELaQPxilglh VxENaSVGqpJgHUBJIbwYvcP4YxWpJTDBRHGqzi4tFrcJkWYftzveNo12lqkUKE66mPBf +GYOUUPjkpBcS9YXVs/PFEXK8wUXej1RFXIWbxwU605CmhzBRNo+2SYnoN0iS7uX2LdU EemhuXvNvxKvSR6Kl/rCgytrC5Val0JKsVzQFiXysUUt4G/XMWpAlAw5vs7uFA/B6Hs9 wuXA== MIME-Version: 1.0 X-Received: by 10.112.14.35 with SMTP id m3mr452177lbc.3.1395672059008; Mon, 24 Mar 2014 07:40:59 -0700 (PDT) Received: by 10.114.174.82 with HTTP; Mon, 24 Mar 2014 07:40:58 -0700 (PDT) Date: Mon, 24 Mar 2014 18:40:58 +0400 Message-ID: From: Vladimir Medvedkin To: "dev@dpdk.org" Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] VM L2 control register (PFVML2FLT) configuring in VMDQ mode 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: Mon, 24 Mar 2014 14:39:27 -0000 Hi all, I found that there is no way to configure pool behavior, for example accept broadcasts, in VMDQ mode. For SR-IOV there is rte_eth_dev_set_vf_rxmode(), but according to datasheet it doesn't matter whether the 82599's virtual environment operates in IOV mode or in Next Generation VMDq mode. So, we have 2 paths: either make single function by removing from rte_eth_dev_set_vf_rxmode() checking pool(or vf) number against dev_info.max_vfs or make similar function for vmdq mode. What is the best?