From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <stephen@networkplumber.org>
Received: from mail-pd0-f178.google.com (mail-pd0-f178.google.com
 [209.85.192.178]) by dpdk.org (Postfix) with ESMTP id BF2233B5
 for <dev@dpdk.org>; Wed, 17 Dec 2014 06:47:27 +0100 (CET)
Received: by mail-pd0-f178.google.com with SMTP id r10so15339271pdi.23
 for <dev@dpdk.org>; Tue, 16 Dec 2014 21:47:27 -0800 (PST)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:date:from:to:subject:message-id:mime-version
 :content-type:content-transfer-encoding;
 bh=9IpVt1ytyd/yTDuwo2m5lrCCz5DeX/UKpsCrM8f5KXo=;
 b=RvIAfYro4sbyZdI1oRRTk0FlheIcWR4Ao1jY0Mf0/ztMkqQM+Aq74Or8nBnw04Kcgl
 QZ2ew72dKoz8JNVvEse6a7Dl/ZysPHRbnYeydMxOim0sWbq8M+5+d2cQTvRIh+i2wn2i
 IaFqgqnAFe/694tNdIsV6s5AnQ39q6ubK47XehcBLtaQnkSSoG7OARIDXxlb9vORy9AF
 vpTNaF13LSPMYXoVs0zKuvq/YRdL0cT6zp1QZjgDaSw9ijgmuvWafZIjQWyyhI96j37V
 PYdaIlQmHzlvE1y6DEWO5qtQtXsISFX0iNw70YZ+CNT0W2932u4O2K8fFP8N1zmVFpu/
 5RnQ==
X-Gm-Message-State: ALoCoQn+40gOS/a/P35oGuSZopy4/rpPssnr2Avk4HDQyfBOEgXvCuwifVGQsOrjgIv4jlYXW/bN
X-Received: by 10.68.132.134 with SMTP id ou6mr8956351pbb.118.1418795246955;
 Tue, 16 Dec 2014 21:47:26 -0800 (PST)
Received: from urahara (static-50-53-82-155.bvtn.or.frontiernet.net.
 [50.53.82.155])
 by mx.google.com with ESMTPSA id v4sm2704344pbs.10.2014.12.16.21.47.25
 for <dev@dpdk.org>
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Tue, 16 Dec 2014 21:47:26 -0800 (PST)
Date: Tue, 16 Dec 2014 21:47:17 -0800
From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Message-ID: <20141216214717.439a657f@urahara>
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Subject: [dpdk-dev] ethdev: fix out of date comment
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: Wed, 17 Dec 2014 05:47:28 -0000

max_frame_size was replaced with mtu by earlier commit

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

--- a/lib/librte_ether/rte_ethdev.h	2014-12-08 09:24:51.725600463 -0800
+++ b/lib/librte_ether/rte_ethdev.h	2014-12-16 20:41:41.445416856 -0800
@@ -1669,8 +1669,7 @@ struct eth_driver;
  *
  *   - *dev_private*: Holds a pointer to the device private data structure.
  *
- *   - *max_frame_size*: Contains the default Ethernet maximum frame length
- *     (1518).
+ *   - *mtu*: Contains the default Ethernet maximum frame length (1500).
  *
  *   - *port_id*: Contains the port index of the device (actually the index
  *     of the *eth_dev* structure in the *rte_eth_devices* array).