Re: [PATCH] dma-pool: no need to check return value of debugfs_create functions

2020-11-14 Thread Christoph Hellwig
Thanks, applied. ___ iommu mailing list iommu@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/iommu

Re: [PATCH] dma-pool: no need to check return value of debugfs_create functions

2020-11-09 Thread Robin Murphy
On 2020-11-07 10:03, Tiezhu Yang wrote: When calling debugfs functions, there is no need to ever check the return value. The function can work or not, but the code logic should never do something different based on this. Well, the only difference in behaviour is that it won't attempt to call

[PATCH] dma-pool: no need to check return value of debugfs_create functions

2020-11-07 Thread Tiezhu Yang
When calling debugfs functions, there is no need to ever check the return value. The function can work or not, but the code logic should never do something different based on this. Signed-off-by: Tiezhu Yang --- kernel/dma/pool.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/kernel/dma/