[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20190725121029.75f26c2d@cakuba.netronome.com>
Date: Thu, 25 Jul 2019 12:10:29 -0700
From: Jakub Kicinski <jakub.kicinski@...ronome.com>
To: wenxu@...oud.cn
Cc: pablo@...filter.org, netfilter-devel@...r.kernel.org,
netdev@...r.kernel.org
Subject: Re: [PATCH net-next 1/3] flow_offload: move tc indirect block to
flow offload
Please provide cover letter for the patch set.
On Thu, 25 Jul 2019 17:55:31 +0800, wenxu@...oud.cn wrote:
> +static bool rhash_table_init;
> +int flow_indr_rhashtable_init(void)
> +{
> + int err = 0;
> +
> + if (!rhash_table_init) {
> + err = rhashtable_init(&indr_setup_block_ht,
> + &flow_indr_setup_block_ht_params);
> +
> + if (!err)
> + rhash_table_init = true;
> + }
> +
> + return err;
> +}
> +EXPORT_SYMBOL_GPL(flow_indr_rhashtable_init);
This should be written like this:
int flow_indr_rhashtable_init(void)
{
static bool rhash_table_init;
int err;
if (rhash_table_init)
return 0;
err = rhashtable_init(&indr_setup_block_ht,
&flow_indr_setup_block_ht_params);
if (err)
return err;
rhash_table_init = true;
return 0;
}
EXPORT_SYMBOL_GPL(flow_indr_rhashtable_init);
Powered by blists - more mailing lists