Re: [PATCH] nft_counter: remove wrong __percpu of nft_counter_resest()'s arg

2019-01-28 Thread Pablo Neira Ayuso
On Sat, Jan 19, 2019 at 10:50:24PM +0100, Luc Van Oostenryck wrote: > nft_counter_rest() has its first argument declared as > struct nft_counter_percpu_priv __percpu *priv > but this structure is not percpu (it only countains > a member 'counter' which is, correctly, a pointer to a > percpu s

[PATCH] nft_counter: remove wrong __percpu of nft_counter_resest()'s arg

2019-01-19 Thread Luc Van Oostenryck
nft_counter_rest() has its first argument declared as struct nft_counter_percpu_priv __percpu *priv but this structure is not percpu (it only countains a member 'counter' which is, correctly, a pointer to a percpu struct nft_counter). So, remove the '__percpu' from the argument's declarati