From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CE4ECA046B for ; Thu, 25 Jul 2019 16:23:16 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A87331C382; Thu, 25 Jul 2019 16:23:16 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id EE4851C35F; Thu, 25 Jul 2019 16:23:11 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Jul 2019 07:23:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,307,1559545200"; d="scan'208";a="193821459" Received: from aburakov-mobl1.ger.corp.intel.com (HELO [10.237.220.83]) ([10.237.220.83]) by fmsmga004.fm.intel.com with ESMTP; 25 Jul 2019 07:23:08 -0700 To: "Lipiec, Herakliusz" , Aaron Conole , "Govindharajan, Hariprasad" Cc: Remy Horton , "Kovacevic, Marko" , Ori Kam , "Richardson, Bruce" , "De Lara Guarch, Pablo" , "Nicolau, Radu" , Akhil Goyal , "Kantecki, Tomasz" , "dev@dpdk.org" , "stable@dpdk.org" References: <20190724164354.18811-1-hariprasad.govindharajan@intel.com> From: "Burakov, Anatoly" Message-ID: <49013b1d-69de-4fb9-7e9f-0f9e745c783a@intel.com> Date: Thu, 25 Jul 2019 15:23:07 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] examples/l3fwd: fix unaligned memory access X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On 25-Jul-19 3:01 PM, Lipiec, Herakliusz wrote: > > >> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Aaron Conole >> Sent: Thursday, July 25, 2019 2:28 PM >> hgovindh writes: >> >>> Fix unaligned memory access when reading IPv6 header which leads to >>> segmentation fault by changing aligned memory read to unaligned memory >>> read. >>> >>> Bugzilla ID: 279 >>> Fixes: 64d3955de1de ("examples/l3fwd: fix ARM build") >>> Cc: maciej.czekaj@caviumnetworks.com >>> Cc: stable@dpdk.org >>> Signed-off-by: hgovindh >>> --- >>> examples/l3fwd/l3fwd_em.c | 2 +- >>> 1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --git a/examples/l3fwd/l3fwd_em.c b/examples/l3fwd/l3fwd_em.c >>> index fa8f82be6..f0c443dae 100644 >>> --- a/examples/l3fwd/l3fwd_em.c >>> +++ b/examples/l3fwd/l3fwd_em.c >>> @@ -285,7 +285,7 @@ em_get_ipv6_dst_port(void *ipv6_hdr, uint16_t >> portid, void *lookup_struct) >>> * Get part of 5 tuple: dst IP address lower 96 bits >>> * and src IP address higher 32 bits. >>> */ >>> - key.xmm[1] = *(xmm_t *)data1; >>> + key.xmm[1] = _mm_loadu_si128((xmm_t *)data1); >> >> Nak. Please use a generic unaligned load, rather than an intel specific one. >> Otherwise, supported platforms like arm64 will have broken builds. >> >> Additionally, which chip and compiler did you use to get this error? > This comes from Bugzilla, the compiler used there is GCC 8.2.0 and the CPU is Intel Core i5, > As far as I know this can also be reproduced on Intel Xeon, with GCC 8.3.0, > in both cases its compiled with compiler optimizations disabled. I have reproduced it with compiler optimizations enabled as well. >> >>> >>> /* >>> * Get part of 5 tuple: dst port and src port > -- Thanks, Anatoly