linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] kobject: Restore old behaviour of kobject_del(NULL)
@ 2020-08-03  8:27 Andy Shevchenko
  2020-08-03  8:45 ` Qu Wenruo
  2020-08-03  9:46 ` Greg Kroah-Hartman
  0 siblings, 2 replies; 5+ messages in thread
From: Andy Shevchenko @ 2020-08-03  8:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, linux-kernel, Rafael J. Wysocki
  Cc: Andy Shevchenko, Qu Wenruo, Heikki Krogerus

The commit 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in
kobject_cleanup()") inadvertently dropped a possibility to call kobject_del()
with NULL pointer. Restore the old behaviour.

Fixes: 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in kobject_cleanup()")
Reported-by: Qu Wenruo <quwenruo.btrfs@gmx.com>
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
v2: replaced ?: with plain conditional (Greg)
 lib/kobject.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lib/kobject.c b/lib/kobject.c
index 3afb939f2a1c..9dce68c378e6 100644
--- a/lib/kobject.c
+++ b/lib/kobject.c
@@ -637,8 +637,12 @@ static void __kobject_del(struct kobject *kobj)
  */
 void kobject_del(struct kobject *kobj)
 {
-	struct kobject *parent = kobj->parent;
+	struct kobject *parent;
+
+	if (!kobj)
+		return;
 
+	parent = kobj->parent;
 	__kobject_del(kobj);
 	kobject_put(parent);
 }
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] kobject: Restore old behaviour of kobject_del(NULL)
  2020-08-03  8:27 [PATCH v2] kobject: Restore old behaviour of kobject_del(NULL) Andy Shevchenko
@ 2020-08-03  8:45 ` Qu Wenruo
  2020-08-03  9:46 ` Greg Kroah-Hartman
  1 sibling, 0 replies; 5+ messages in thread
From: Qu Wenruo @ 2020-08-03  8:45 UTC (permalink / raw)
  To: Andy Shevchenko, Greg Kroah-Hartman, linux-kernel, Rafael J. Wysocki
  Cc: Heikki Krogerus



On 2020/8/3 下午4:27, Andy Shevchenko wrote:
> The commit 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in
> kobject_cleanup()") inadvertently dropped a possibility to call kobject_del()
> with NULL pointer. Restore the old behaviour.
> 
> Fixes: 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in kobject_cleanup()")
> Reported-by: Qu Wenruo <quwenruo.btrfs@gmx.com>

Sorry, I should use my suse mailbox for that.

> Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Reviewed-by: Qu Wenruo <wqu@suse.com>

Thanks,
Qu

> ---
> v2: replaced ?: with plain conditional (Greg)
>  lib/kobject.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/lib/kobject.c b/lib/kobject.c
> index 3afb939f2a1c..9dce68c378e6 100644
> --- a/lib/kobject.c
> +++ b/lib/kobject.c
> @@ -637,8 +637,12 @@ static void __kobject_del(struct kobject *kobj)
>   */
>  void kobject_del(struct kobject *kobj)
>  {
> -	struct kobject *parent = kobj->parent;
> +	struct kobject *parent;
> +
> +	if (!kobj)
> +		return;
>  
> +	parent = kobj->parent;
>  	__kobject_del(kobj);
>  	kobject_put(parent);
>  }
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] kobject: Restore old behaviour of kobject_del(NULL)
  2020-08-03  8:27 [PATCH v2] kobject: Restore old behaviour of kobject_del(NULL) Andy Shevchenko
  2020-08-03  8:45 ` Qu Wenruo
@ 2020-08-03  9:46 ` Greg Kroah-Hartman
  2020-08-25 14:41   ` Andy Shevchenko
  1 sibling, 1 reply; 5+ messages in thread
From: Greg Kroah-Hartman @ 2020-08-03  9:46 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: linux-kernel, Rafael J. Wysocki, Qu Wenruo, Heikki Krogerus

On Mon, Aug 03, 2020 at 11:27:06AM +0300, Andy Shevchenko wrote:
> The commit 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in
> kobject_cleanup()") inadvertently dropped a possibility to call kobject_del()
> with NULL pointer. Restore the old behaviour.
> 
> Fixes: 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in kobject_cleanup()")
> Reported-by: Qu Wenruo <quwenruo.btrfs@gmx.com>
> Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> v2: replaced ?: with plain conditional (Greg)
>  lib/kobject.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)

Thanks, much better, will queue up after -rc1 is out.

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] kobject: Restore old behaviour of kobject_del(NULL)
  2020-08-03  9:46 ` Greg Kroah-Hartman
@ 2020-08-25 14:41   ` Andy Shevchenko
  2020-08-25 15:45     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2020-08-25 14:41 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: linux-kernel, Rafael J. Wysocki, Qu Wenruo, Heikki Krogerus

On Mon, Aug 03, 2020 at 11:46:59AM +0200, Greg Kroah-Hartman wrote:
> On Mon, Aug 03, 2020 at 11:27:06AM +0300, Andy Shevchenko wrote:
> > The commit 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in
> > kobject_cleanup()") inadvertently dropped a possibility to call kobject_del()
> > with NULL pointer. Restore the old behaviour.
> > 
> > Fixes: 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in kobject_cleanup()")
> > Reported-by: Qu Wenruo <quwenruo.btrfs@gmx.com>
> > Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > ---
> > v2: replaced ?: with plain conditional (Greg)
> >  lib/kobject.c | 6 +++++-
> >  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> Thanks, much better, will queue up after -rc1 is out.

Shouldn't be this taken care of?

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] kobject: Restore old behaviour of kobject_del(NULL)
  2020-08-25 14:41   ` Andy Shevchenko
@ 2020-08-25 15:45     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2020-08-25 15:45 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: linux-kernel, Rafael J. Wysocki, Qu Wenruo, Heikki Krogerus

On Tue, Aug 25, 2020 at 05:41:09PM +0300, Andy Shevchenko wrote:
> On Mon, Aug 03, 2020 at 11:46:59AM +0200, Greg Kroah-Hartman wrote:
> > On Mon, Aug 03, 2020 at 11:27:06AM +0300, Andy Shevchenko wrote:
> > > The commit 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in
> > > kobject_cleanup()") inadvertently dropped a possibility to call kobject_del()
> > > with NULL pointer. Restore the old behaviour.
> > > 
> > > Fixes: 079ad2fb4bf9 ("kobject: Avoid premature parent object freeing in kobject_cleanup()")
> > > Reported-by: Qu Wenruo <quwenruo.btrfs@gmx.com>
> > > Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > > ---
> > > v2: replaced ?: with plain conditional (Greg)
> > >  lib/kobject.c | 6 +++++-
> > >  1 file changed, 5 insertions(+), 1 deletion(-)
> > 
> > Thanks, much better, will queue up after -rc1 is out.
> 
> Shouldn't be this taken care of?

Yes, will get to it soon, after -rc1 is tough, combined with Plumbers...

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-08-25 15:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-03  8:27 [PATCH v2] kobject: Restore old behaviour of kobject_del(NULL) Andy Shevchenko
2020-08-03  8:45 ` Qu Wenruo
2020-08-03  9:46 ` Greg Kroah-Hartman
2020-08-25 14:41   ` Andy Shevchenko
2020-08-25 15:45     ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).