From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f43.google.com (mail-oi0-f43.google.com [209.85.218.43]) by dpdk.org (Postfix) with ESMTP id DB3E35952 for ; Wed, 11 Mar 2015 17:55:03 +0100 (CET) Received: by oifz81 with SMTP id z81so8994982oif.2 for ; Wed, 11 Mar 2015 09:55:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sidebandnetworks.com; s=google; h=mime-version:date:message-id:subject:from:to:cc:content-type; bh=obCAOeZzDjKE1mB1IiQHm6+ch1yN0sjm/OpviT8cfIU=; b=F+r1XjV8fSBjVW7nTcQsrEPgts8E0Fa15sPC43JQG4+nu/Mfgzx7Ra7z2UH0tQJYVX bqtq5MqSBCRSkMvqYP7cuu78wA2RDhemI1Euyw52j5lEC9zRrKX4SSqYl5lO0UccT+gb Jp6mHc/Ah6iprot2X1Qx69tQ/Kpp8Ag/Dggnk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to:cc :content-type; bh=obCAOeZzDjKE1mB1IiQHm6+ch1yN0sjm/OpviT8cfIU=; b=WRqz7c9dEHHlBxkEgb3ssrXD8VF38x14U3khU9S8uJiLkSH4IfEEpJuoSnrBVoO+Ah 5BYz2Ui/agkKFpW/jyw0qydyYNzSjRIqmxyS3sXdRI0yKFwnVrbtFG4CResgjrb2v1Cp eFNwEdFF9fDtVjnwaZGqAcXcQzbTOJDhlbUuVQKFp2BQi/196bXU3xyRoLuXBPKhCy4B XvJTz9peD37tzmNV8haI06nXnhGnBlLLwftz0choshQ9LZqhZniqbDDPt+SPVz50B9qk qZx/I6xpH7ei4DO8bfiXFrHIC/h6roi+AnnM1CAVGSB6CNVSIn0j0vU7RN+Z/yoSgdGB bhwQ== X-Gm-Message-State: ALoCoQmG7IbzDvQJq+XQMbIQ6ZXQY9topWUikbqeAAdSqNmzaLcEPmaYTzVngKOuA9GjVSvIEMNr MIME-Version: 1.0 X-Received: by 10.202.198.76 with SMTP id w73mr1650311oif.74.1426092903305; Wed, 11 Mar 2015 09:55:03 -0700 (PDT) Received: by 10.202.187.86 with HTTP; Wed, 11 Mar 2015 09:55:03 -0700 (PDT) Date: Wed, 11 Mar 2015 12:55:03 -0400 Message-ID: From: Kamraan Nasim To: dev@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Cc: Ean Houts Subject: [dpdk-dev] Filtration Statistics for VLAN filters(ixgbe) 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: Wed, 11 Mar 2015 16:55:04 -0000 Hello, I am trying to implement VLAN filters in DPDK on 82599 NIC(Niantic) I've been using *rte_eth_dev_vlan_filter(port, vlanID, 1)* which seems to be working however I would like to see some actual packet filtration statistics. In the case of 5tuple IPv4 filters where I was redirecting to queueX, I could see the filter working by looking at q_errors[X} in rte_eth_stats struct. Is there anything in *rte_eth_stats* that can be used to see VLAN filtering stats or anything else out there? Greatly appreciate any help in this department :) Thanks, Kam