From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt0-f181.google.com (mail-qt0-f181.google.com [209.85.216.181]) by dpdk.org (Postfix) with ESMTP id C84D02C31 for ; Thu, 14 Jul 2016 22:42:29 +0200 (CEST) Received: by mail-qt0-f181.google.com with SMTP id u25so49140014qtb.1 for ; Thu, 14 Jul 2016 13:42:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=h3g+J6/UfkpoMK1ZSIcYQmhnVJJx/qEyG+cwX/2b3y8=; b=wvdgh33rKnU4ZGvrhpWWg1S+W/i9NwiSNZEsX/Muwz3+raZSlIOh/jsPIDSbvaVDRw fVJvtWZkF8uWF6vU0wDdwRo6RZEWp60PHnE0wSYJppRBgZtNGKu3EZ6uZhJUjaID5k6p T4cUflAHd/K/eAuP7k+YZElIV+ifjWz8WRvHGIF48/kp80YokzB95NohAH1PyttJdwaU XvGzM1bFteB3wddZNutJU3/o3XU3sY5utay1BBdZOrAUHnurzsXJI17OuxFXXg8bUytD r+NQH3vFuwOeSiXqSYJ+mzwyoIOPvDM9Mgw17EkuTHvTqMXvNC4yKqUbUyfx9HfpIuC/ UTag== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=h3g+J6/UfkpoMK1ZSIcYQmhnVJJx/qEyG+cwX/2b3y8=; b=hCaFQ8JPfyffB0wyoWgWBM2an2H0nziTHkGq76dnEkdCq7AA/uF6hE0pdcjUhUZ+MI pLVT1TJGNZ14Wmg0fY9Vy2ZeCAAC+fG9WO+GlJJqUEFuIKvZIFD4SQTysVpsBfawZSOP mCxkZcJhSfW7iNdjJRdTKNd6r0A+XsAE58NPSNxRtC67wFGc030o9Z8X/eRtXmVYWNQF qwmPLOrHFPmXR3pDdirOW459+reWVY34zZUk0UPrEXaqs6ViSJlIUfEZsP++Oq96ujeY GN1lKp2Y628/Wmnlv0phcCf3ia/MqBk/R0WJYcUokegXUslaS7ko+XMCNn7Ax8tL2Wjg AUwA== X-Gm-Message-State: ALyK8tK680lkZzPDzHwcWxs3nqWnQmL3Uz/legWpOb9/DxmhszDPzomkeOxJZTyPCdPEPSJsjrBrOyIjZ6G/Hg== X-Received: by 10.200.49.129 with SMTP id h1mr23812422qte.103.1468528949156; Thu, 14 Jul 2016 13:42:29 -0700 (PDT) MIME-Version: 1.0 Received: by 10.200.54.146 with HTTP; Thu, 14 Jul 2016 13:42:28 -0700 (PDT) From: lgy Date: Thu, 14 Jul 2016 13:42:28 -0700 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] How to enable trust for a VF managed by vfio-pci driver X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 20:42:30 -0000 Hi, I'd like to enable promiscuous mode for a VF and the solution I found online is to make it trust, so I first created the VF using i40e driver (version: 1.5.16) and use the command *ip link set eth8 vf 0 trust on* to configure it. Then I bind this VF to vfio-pci so it can be used by DPDK application, but the promiscuous mode is not working. My guess is when I unbind it from i40evf and bind to vfio-pci, the trust configuration has been reset to off, so I'm wondering how to enable promiscuous mode for a VF not managed by i40e driver? Thanks, Grace