Re: [PATCH 1/1] drivers/base/dma-buf.c: replace dma_buf_uninit_debugfs by debugfs_remove_recursive

From: Fabian Frederick
Date: Sat Jul 12 2014 - 08:26:45 EST




> On 10 July 2014 at 02:34 Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>
> wrote:
>
>
> On Fri, Jun 27, 2014 at 10:32:10PM +0200, Fabian Frederick wrote:
> > null test before debugfs_remove_recursive is not needed so one line function
> > dma_buf_uninit_debugfs can be removed.
> >
> > This patch calls debugfs_remove_recursive under CONFIG_DEBUG_FS
> >
> > Cc: Sumit Semwal <sumit.semwal@xxxxxxxxxx>
> > Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>
> > Cc: linux-media@xxxxxxxxxxxxxxx
> > Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx>
> > ---
> >
> > This is untested.
> >
> >Â drivers/base/dma-buf.c | 13 +++----------
> >Â 1 file changed, 3 insertions(+), 10 deletions(-)
> >
> > diff --git a/drivers/base/dma-buf.c b/drivers/base/dma-buf.c
> > index 840c7fa..184c0cb 100644
> > --- a/drivers/base/dma-buf.c
> > +++ b/drivers/base/dma-buf.c
> > @@ -701,12 +701,6 @@ static int dma_buf_init_debugfs(void)
> >Â Â Âreturn err;
> >Â }
>
> > -static void dma_buf_uninit_debugfs(void)
> > -{
> > -Â Âif (dma_buf_debugfs_dir)
> > -Â Â Â Â Â Âdebugfs_remove_recursive(dma_buf_debugfs_dir);
> > -}
> > -
> >Â int dma_buf_debugfs_create_file(const char *name,
> >Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âint (*write)(struct seq_file *))
> >Â {
> > @@ -722,9 +716,6 @@ static inline int dma_buf_init_debugfs(void)
> >Â {
> >Â Â Âreturn 0;
> >Â }
> > -static inline void dma_buf_uninit_debugfs(void)
> > -{
> > -}
> >Â #endif
>
> >Â static int __init dma_buf_init(void)
> > @@ -738,6 +729,8 @@ subsys_initcall(dma_buf_init);
>
> >Â static void __exit dma_buf_deinit(void)
> >Â {
> > -Â Âdma_buf_uninit_debugfs();
> > +#ifdef CONFIG_DEBUG_FS
> > +Â Âdebugfs_remove_recursive(dma_buf_debugfs_dir);
> > +#endif
>
> That ifdef should not be needed at all, right? No ifdefs should be
> needed for debugfs code, if it is written correctly :)
>

Hello Greg,

    Current dma_buf_init_debugfs and dma_buf_init_uninit_debugfs and
related functions in drivers/base/dma-buf.c are only defined
under #ifdef CONFIG_DEBUG_FS ; reason for that #ifdef in the patch.
I'll send you a fixed version.

Thanks,
Fabian

> thanks,
>
> greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/