From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH v2 07/10] app/test: use struct ether_addr instead of a byte array cast Date: Sun, 21 Jun 2015 21:56:24 -0400 Message-ID: <20150621215624.46d69f49@uryu.home.lan> References: <1434735293-15469-1-git-send-email-cchemparathy@ezchip.com> <1434735293-15469-8-git-send-email-cchemparathy@ezchip.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Cyril Chemparathy Return-path: Received: from mail-qg0-f48.google.com (mail-qg0-f48.google.com [209.85.192.48]) by dpdk.org (Postfix) with ESMTP id 389E8C874 for ; Mon, 22 Jun 2015 03:56:29 +0200 (CEST) Received: by qged89 with SMTP id d89so48822152qge.0 for ; Sun, 21 Jun 2015 18:56:27 -0700 (PDT) In-Reply-To: <1434735293-15469-8-git-send-email-cchemparathy@ezchip.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, 19 Jun 2015 10:34:50 -0700 Cyril Chemparathy wrote: > + static struct ether_addr src_mac = > + { { 0x00, 0xFF, 0xAA, 0xFF, 0xAA, 0xFF } }; > + static struct ether_addr dst_mac = > + { { 0x00, 0xAA, 0xFF, 0xAA, 0xFF, 0xAA } }; > Should have been const (in original code).