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 022AFA046B for ; Thu, 25 Jul 2019 16:01:27 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AACFE1C358; Thu, 25 Jul 2019 16:01:26 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 2DA321C34D; Thu, 25 Jul 2019 16:01:21 +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:01:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,306,1559545200"; d="scan'208";a="193814228" 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:01:18 -0700 To: Aaron Conole , hgovindh Cc: Remy Horton , Marko Kovacevic , Ori Kam , Bruce Richardson , Pablo de Lara , Radu Nicolau , Akhil Goyal , Tomasz Kantecki , dev@dpdk.org, stable@dpdk.org References: <20190724164354.18811-1-hariprasad.govindharajan@intel.com> From: "Burakov, Anatoly" Message-ID: Date: Thu, 25 Jul 2019 15:01:17 +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 2:27 PM, Aaron Conole wrote: > 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? I have reproduced this error on Intel Xeon E5-2699 and GCC 7.4 (Ubuntu 18.04). > >> >> /* >> * Get part of 5 tuple: dst port and src port > -- Thanks, Anatoly