From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH v7 1/8] lib/librte_eal: change type of tmp Date: Tue, 22 May 2018 10:13:05 +0100 Message-ID: <20180522091305.GB22916@bricha3-MOBL.ger.corp.intel.com> References: <152695215195.111551.10652921922687464367.stgit@localhost.localdomain> <152695225221.111551.13699453188980725840.stgit@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, thomas@monjalon.net To: Andy Green Return-path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 2BA21152A for ; Tue, 22 May 2018 11:13:09 +0200 (CEST) Content-Disposition: inline In-Reply-To: <152695225221.111551.13699453188980725840.stgit@localhost.localdomain> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, May 22, 2018 at 09:24:12AM +0800, Andy Green wrote: > /projects/lagopus/src/dpdk/build/include/rte_memcpy.h: > 793:2: note: in expansion of macro 'MOVEUNALIGNED_LEFT47' > MOVEUNALIGNED_LEFT47(dst, src, n, srcofs); > ^~~~~~~~~~~~~~~~~~~~ > /projects/lagopus/src/dpdk/build/include/rte_memcpy.h: > 649:51: warning: conversion from 'size_t' {aka 'long > unsigned int'} to 'int' may change value [-Wconversion] > case 0x0B: MOVEUNALIGNED_LEFT47_IMM(dst, src, > n, 0x0B); break; \ > ^ > /projects/lagopus/src/dpdk/build/include/rte_memcpy.h: > 616:15: note: in definition of macro 'MOVEUNALIGNED_LEFT47_IMM' > tmp = len; \ > ^~~ > /projects/lagopus/src/dpdk/build/include/rte_memcpy.h: > 793:2: note: in expansion of macro 'MOVEUNALIGNED_LEFT47' > MOVEUNALIGNED_LEFT47(dst, src, n, srcofs); > ^~~~~~~~~~~~~~~~~~~~ > /projects/lagopus/src/dpdk/build/include/rte_memcpy.h: > 618:13: warning: conversion to 'size_t' {aka 'long > unsigned int'} from 'int' may change the sign of the > result [-Wsign-conversion] > tmp -= len; \ > ^~ > /projects/lagopus/src/dpdk/build/include/rte_memcpy.h: > 649:16: note: in expansion of macro 'MOVEUNALIGNED_LEFT47_IMM' > case 0x0B: MOVEUNALIGNED_LEFT47_IMM(dst, src, > n, 0x0B); break; \ > ^~~~~~~~~~~~~~~~~~~~~~~~ > /projects/lagopus/src/dpdk/build/include/rte_memcpy.h: > 793:2: note: in expansion of macro 'MOVEUNALIGNED_LEFT47' > MOVEUNALIGNED_LEFT47(dst, src, n, srcofs); > ^~~~~~~~~~~~~~~~~~~~ > > /projects/lagopus/src/dpdk/build/include/rte_memcpy.h: > 618:13: warning: conversion to 'size_t' {aka 'long > unsigned int'} from 'int' may change the sign of the > result [-Wsign-conversion] > tmp -= len; > ^~ > > We can eliminate the problems by setting the type of tmp to > size_t in the first place. > > After a suggestion by Bruce Richardson > > Signed-off-by: Andy Green > Fixes: d35cc1fe6a ("eal/x86: revert select optimized memcpy at run-time") > --- Acked-by: Bruce Richardson