Re: [PATCH -next] powerpc/powernv/ioda: using kfree_rcu() to simplify the code

2019-11-14 Thread Michael Ellerman
On Thu, 2019-07-11 at 14:18:18 UTC, YueHaibing wrote: > The callback function of call_rcu() just calls a kfree(), so we > can use kfree_rcu() instead of call_rcu() + callback function. > > Signed-off-by: YueHaibing Applied to powerpc next, thanks.

[PATCH -next] powerpc/powernv/ioda: using kfree_rcu() to simplify the code

2019-07-11 Thread YueHaibing
The callback function of call_rcu() just calls a kfree(), so we can use kfree_rcu() instead of call_rcu() + callback function. Signed-off-by: YueHaibing --- arch/powerpc/platforms/powernv/pci-ioda-tce.c | 10 +- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git