From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-f44.google.com (mail-it0-f44.google.com [209.85.214.44]) by dpdk.org (Postfix) with ESMTP id 07C1A58DD for ; Thu, 22 Sep 2016 16:09:07 +0200 (CEST) Received: by mail-it0-f44.google.com with SMTP id n143so82483581ita.1 for ; Thu, 22 Sep 2016 07:09:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=semihalf-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=NkW4HY9W69bmMXNDmVNnh2TfaXFt/Lv8FPdIPHXceEs=; b=AingeOf4/pvQGosRXCg/6CWm2EVo+5to4REFuIfXyaN2p1jGi4F4yZs49P5efRICQX ASbEmP7YIqfoCxrsvSufSFF4tkLyOjadsoYUSwJZ7Fk+nNiPXy7NJodVVj89qLKUGDAq mMqKvxdnm5BBVy4RnaC434R17MhIty+nUUP4POoIfInX979hG3loOuuGr2cozTwnflQm oDEU0PiQNKIt58fSroEQe3Ab50gTuwQFZSvk1aublP3Tt8ZT/AkdkYS7leAMGqxYjGAH fPP3SBL2jTzSSZfMgRUvRZ5sc09rJ/qk6oNW78TyL6+SQoAgYraItIrADEMcoLIUBuxw yhvQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=NkW4HY9W69bmMXNDmVNnh2TfaXFt/Lv8FPdIPHXceEs=; b=BTnz6+xffnuYi1annWfVkT/pAlvXREoqecIBUh9y+BHcRnjrjzDThXd2H18hz9u7Ko BEO/0zKPbCBao9zYI6xOW3MbCpSHwAsgUOJO4E32NUW9FjgGBusfw01yiKvN7pJNJkut bPDaL8hnx4w1mUC0OdBz1PF/Ef2gamZ6t6lKki9CYBwfeD+Up8sPPpErfF/l1g3rSahc HD46JRVtmiHay4cvHHwUQulaTMB6KnaepPaGbt5YsQ4jCvsEyoFsweTn6++u7g9UzYHT tnB1brll8rHn+9WM63QUWc55aZbMS95yK9DFWjWIlZqRqd30ytf3gQtcOrR9fLQuX8gm ga3g== X-Gm-Message-State: AE9vXwO7gJ1KPRAMI7ZAq5s5TfrJ3e6z9nsUUQcxu2qvtaOjrTaRSzB4js/d2NHFoRbgA4r7Q7tx0a4smdem6Q== X-Received: by 10.36.150.70 with SMTP id z67mr10660940itd.80.1474553346369; Thu, 22 Sep 2016 07:09:06 -0700 (PDT) MIME-Version: 1.0 Received: by 10.79.13.135 with HTTP; Thu, 22 Sep 2016 07:08:46 -0700 (PDT) In-Reply-To: References: From: Andriy Berestovskyy Date: Thu, 22 Sep 2016 16:08:46 +0200 Message-ID: To: Caianning Cc: "users@dpdk.org" Content-Type: text/plain; charset=UTF-8 Subject: Re: [dpdk-users] dpdk example load_lanlancer 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, 22 Sep 2016 14:09:07 -0000 Hey, Looks like the ixgbe PMD supports anti-spoofing for x550 NICs only. I guess your best option here would be to disable the SR-IOV, so your device will be a normal NIC without any virtual functions. Regards, Andriy On Fri, Sep 2, 2016 at 11:44 AM, Caianning wrote: > > Hi All, > > I modified(add my packet processing) the example Load_balancer, and run it with following cmd: > ./build/load_balancer -c 1f -- --rx "(0,0,0),(1,0,0)" --tx "(0,0),(1,0)" --w "1,2,3,4" > > And I got the info: > Initializing NIC port 0 ... > Initializing NIC port 0 RX queue 0 ... > Initializing NIC port 0 TX queue 0 ... > PMD: ether type anti-spoofing is not supported. > PMD: ixgbe_dev_tx_queue_start(): Could not enable Tx Queue 0 > Initializing NIC port 1 ... > Initializing NIC port 1 RX queue 0 ... > Initializing NIC port 1 TX queue 0 ... > PMD: ether type anti-spoofing is not supported. > PMD: ixgbe_dev_tx_queue_start(): Could not enable Tx Queue 0 > > Does this mean any error or mis-config? > > DPDK version 16.07. > > Thx. > > -- Andriy Berestovskyy