mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: stable-commits@vger.kernel.org, Marcin Wojtas <mw@semihalf.com>,
	Russell King <linux@armlinux.org.uk>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>
Subject: Re: Patch "net: mvpp2: debugfs: fix memory leak when using debugfs_lookup()" has been added to the 5.10-stable tree
Date: Wed, 21 Sep 2022 08:51:48 +0200	[thread overview]
Message-ID: <Yyq0hHcOTelikuOy@kroah.com> (raw)
In-Reply-To: <20220920214625.206958-1-sashal@kernel.org>

On Tue, Sep 20, 2022 at 05:46:25PM -0400, Sasha Levin wrote:
> This is a note to let you know that I've just added the patch titled
> 
>     net: mvpp2: debugfs: fix memory leak when using debugfs_lookup()
> 
> to the 5.10-stable tree which can be found at:
>     http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
> 
> The filename of the patch is:
>      net-mvpp2-debugfs-fix-memory-leak-when-using-debugfs.patch
> and it can be found in the queue-5.10 subdirectory.
> 
> If you, or anyone else, feels it should not be added to the stable tree,
> please let <stable@vger.kernel.org> know about it.
> 
> 
> 
> commit 24f9e4af2b16c42327cde7198834a5d58aacb2f8
> Author: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Date:   Fri Sep 2 15:41:11 2022 +0200
> 
>     net: mvpp2: debugfs: fix memory leak when using debugfs_lookup()
>     
>     [ Upstream commit fe2c9c61f668cde28dac2b188028c5299cedcc1e ]
>     
>     When calling debugfs_lookup() the result must have dput() called on it,
>     otherwise the memory will leak over time.  Fix this up to be much
>     simpler logic and only create the root debugfs directory once when the
>     driver is first accessed.  That resolves the memory leak and makes
>     things more obvious as to what the intent is.
>     
>     Cc: Marcin Wojtas <mw@semihalf.com>
>     Cc: Russell King <linux@armlinux.org.uk>
>     Cc: "David S. Miller" <davem@davemloft.net>
>     Cc: Eric Dumazet <edumazet@google.com>
>     Cc: Jakub Kicinski <kuba@kernel.org>
>     Cc: Paolo Abeni <pabeni@redhat.com>
>     Cc: netdev@vger.kernel.org
>     Cc: stable <stable@kernel.org>
>     Fixes: 21da57a23125 ("net: mvpp2: add a debugfs interface for the Header Parser")
>     Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>     Signed-off-by: David S. Miller <davem@davemloft.net>
>     Signed-off-by: Sasha Levin <sashal@kernel.org>
> 
> diff --git a/drivers/net/ethernet/marvell/mvpp2/mvpp2_debugfs.c b/drivers/net/ethernet/marvell/mvpp2/mvpp2_debugfs.c
> index 4a3baa7e0142..0eec05d905eb 100644
> --- a/drivers/net/ethernet/marvell/mvpp2/mvpp2_debugfs.c
> +++ b/drivers/net/ethernet/marvell/mvpp2/mvpp2_debugfs.c
> @@ -700,10 +700,10 @@ void mvpp2_dbgfs_cleanup(struct mvpp2 *priv)
>  
>  void mvpp2_dbgfs_init(struct mvpp2 *priv, const char *name)
>  {
> -	struct dentry *mvpp2_dir, *mvpp2_root;
> +	static struct dentry *mvpp2_root;
> +	struct dentry *mvpp2_dir;
>  	int ret, i;
>  
> -	mvpp2_root = debugfs_lookup(MVPP2_DRIVER_NAME, NULL);
>  	if (!mvpp2_root)
>  		mvpp2_root = debugfs_create_dir(MVPP2_DRIVER_NAME, NULL);
>  

I dropped this at the request of Russell last time around, and will be
fixing this up in a "better" way later this week, so I will drop this
from the stable queues as well.

thanks,

greg k-h

           reply	other threads:[~2022-09-21  6:51 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <20220920214625.206958-1-sashal@kernel.org>]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Yyq0hHcOTelikuOy@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=mw@semihalf.com \
    --cc=pabeni@redhat.com \
    --cc=stable-commits@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®