patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Yongseok Koh <yskoh@mellanox.com>
To: "cristian.dumitrescu@intel.com" <cristian.dumitrescu@intel.com>
Cc: dpdk stable <stable@dpdk.org>,
	"guruprasadx.rao@intel.com" <guruprasadx.rao@intel.com>,
	"jasvinder.singh@intel.com" <jasvinder.singh@intel.com>,
	Alejandro Lucero <alejandro.lucero@netronome.com>
Subject: Re: [dpdk-stable] [PATCH 17.11 1/2] table: fix casting cuckoo hash	function
Date: Thu, 3 Jan 2019 08:29:26 +0000	[thread overview]
Message-ID: <E482FADF-30D0-474B-A0A6-6FA8AE871972@mellanox.com> (raw)
In-Reply-To: <20190103082627.17224-1-yskoh@mellanox.com>


> On Jan 3, 2019, at 12:26 AM, Yongseok Koh <yskoh@mellanox.com> wrote:
> 
> GCC 8.1 error:
> 
> lib/librte_table/rte_table_hash_cuckoo.c: In function
> ‘rte_table_hash_cuckoo_create’:
> lib/librte_table/rte_table_hash_cuckoo.c:139:16: error: cast between
> incompatible function types from ‘rte_table_hash_op_hash’ {aka ‘long
> unsigned int (*)(void *, void *, unsigned int,  long unsigned int)’} to
> ‘uint32_t (*)(const void *, uint32_t,  uint32_t)’ {aka ‘unsigned int
> (*)(const void *, unsigned int,  unsigned int)’}
> [-Werror=cast-function-type]
>   .hash_func = (rte_hash_function)(p->f_hash),
>                ^
> 
> This issue is fixed by [1] in dpdk/master, but this patch is a workaround
> to not break API/ABI in stable branch and originally suggested by
> Andy Green [2].
> 
> [1] commit 8ea41438832a ("table: add dedicated params struct for cuckoo hash")
> [2] https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fmails.dpdk.org%2Farchives%2Fdev%2F2018-May%2F100405.html&amp;data=02%7C01%7Cyskoh%40mellanox.com%7C8338e137d62644ae802908d6715535e6%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636821008168448180&amp;sdata=v%2BFZ7xAoihB%2BdrpxXcqVtlcM%2FlUIPiK73%2FmTTLHPI7Q%3D&amp;reserved=0
> 
> Fixes: 5a80bf0ae613 ("table: add cuckoo hash")
> Cc: guruprasadx.rao@intel.com
> 
> Suggested-by: Andy Green <andy@warmcat.com>
> Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
> ---

Applied to stable/17.11.
Cristian, let me know if you have any objection.

Thanks,
Yongseok

> lib/librte_table/rte_table_hash_cuckoo.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/librte_table/rte_table_hash_cuckoo.c b/lib/librte_table/rte_table_hash_cuckoo.c
> index f3845c752..c65228254 100644
> --- a/lib/librte_table/rte_table_hash_cuckoo.c
> +++ b/lib/librte_table/rte_table_hash_cuckoo.c
> @@ -136,7 +136,7 @@ rte_table_hash_cuckoo_create(void *params,
> 	struct rte_hash_parameters hash_cuckoo_params = {
> 		.entries = p->n_keys,
> 		.key_len = p->key_size,
> -		.hash_func = (rte_hash_function)(p->f_hash),
> +		.hash_func = (rte_hash_function)(void *)(p->f_hash),
> 		.hash_func_init_val = p->seed,
> 		.socket_id = socket_id,
> 		.name = p->name
> -- 
> 2.11.0
> 


      parent reply	other threads:[~2019-01-03  8:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-03  8:26 Yongseok Koh
2019-01-03  8:26 ` [dpdk-stable] [PATCH 17.11 2/2] net/nfp: replace strncpy by strlcpy Yongseok Koh
2019-01-03  8:31   ` Yongseok Koh
2019-01-03  8:29 ` Yongseok Koh [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E482FADF-30D0-474B-A0A6-6FA8AE871972@mellanox.com \
    --to=yskoh@mellanox.com \
    --cc=alejandro.lucero@netronome.com \
    --cc=cristian.dumitrescu@intel.com \
    --cc=guruprasadx.rao@intel.com \
    --cc=jasvinder.singh@intel.com \
    --cc=stable@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).