From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by dpdk.org (Postfix) with ESMTP id 27B6CC322 for ; Mon, 6 Apr 2015 19:01:45 +0200 (CEST) Received: by patj18 with SMTP id j18so49757229pat.2 for ; Mon, 06 Apr 2015 10:01:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:in-reply-to:references; bh=gQ63LiQb5LCA+stQQxOZEsOviWxKsMMKd6TmwQ+WJlk=; b=MYQufkiDbyYyGNq5NNMdvsxoKmexKLnmeu3ia1Z22h2nqTQd4WwY/LRBpj2RgtZ2pT Qe7bWYeuZoqjJU2zfspUEj7l2//zomiAdJoVZDSi3BX+AQRazq/EHANbijLFaOm6eHNt Zs5pgIQYap+Ne7FioBSgTLYQzWaLgP0Z07hD/pC65H2lRhp0pkbTvp8mU4DVxMBYrq4r sW9+VslR7hmTNKt8AlMdtyGe5dD5GfLD1TpiE3Xkrf7g96FLEagtXHs6t4lAmTQ0zoUH EadcrTyYQWzdF3ZPtO5cqYy7foz07xyC5YuXr0NP1iahwZNhJ/QxSVkIJSytkTmOjlGk /TBg== X-Received: by 10.70.54.198 with SMTP id l6mr29198540pdp.74.1428339704609; Mon, 06 Apr 2015 10:01:44 -0700 (PDT) Received: from buildhost2.vyatta.com. ([144.49.132.22]) by mx.google.com with ESMTPSA id o6sm5253698pds.38.2015.04.06.10.01.42 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 06 Apr 2015 10:01:43 -0700 (PDT) From: Eric Kinzie To: dev@dpdk.org Date: Mon, 6 Apr 2015 10:01:22 -0700 Message-Id: <1428339685-27686-3-git-send-email-ehkinzie@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1428339685-27686-1-git-send-email-ehkinzie@gmail.com> References: <1428339685-27686-1-git-send-email-ehkinzie@gmail.com> Subject: [dpdk-dev] [PATCH 2/5] bond mode 4: copy entire config structure 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, 06 Apr 2015 17:01:45 -0000 Copy all needed fields from the mode8023ad_private structure in bond_mode_8023ad_conf_get(). Signed-off-by: Eric Kinzie --- lib/librte_pmd_bond/rte_eth_bond_8023ad.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_pmd_bond/rte_eth_bond_8023ad.c b/lib/librte_pmd_bond/rte_eth_bond_8023ad.c index 97a828e..1009d5b 100644 --- a/lib/librte_pmd_bond/rte_eth_bond_8023ad.c +++ b/lib/librte_pmd_bond/rte_eth_bond_8023ad.c @@ -1013,6 +1013,7 @@ bond_mode_8023ad_conf_get(struct rte_eth_dev *dev, conf->aggregate_wait_timeout_ms = mode4->aggregate_wait_timeout / ms_ticks; conf->tx_period_ms = mode4->tx_period_timeout / ms_ticks; conf->update_timeout_ms = mode4->update_timeout_us / 1000; + conf->rx_marker_period_ms = mode4->rx_marker_timeout / ms_ticks; } void -- 1.7.10.4