public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
To: "Wilck, Martin" <martin.wilck@ts.fujitsu.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"tpmdd-devel@lists.sourceforge.net" 
	<tpmdd-devel@lists.sourceforge.net>
Subject: Re: [PATCH] base/platform: fix panic when probe function is NULL
Date: Tue, 1 Dec 2015 14:24:36 +0100	[thread overview]
Message-ID: <20151201132436.GC5072@pengutronix.de> (raw)
In-Reply-To: <C5A28EF7B98F574C85C70238C8E9ECC04E682BF148@ABGEX74E.FSC.NET>

Hello Martin,

On Tue, Dec 01, 2015 at 11:41:53AM +0100, Wilck, Martin wrote:
> > This sounds like a separate issue though. Looking at init_tis there is:
> > 
> >         rc = platform_driver_register(&tis_drv);
> >         if (rc < 0)
> >                 return rc;
> >         pdev = platform_device_register_simple("tpm_tis", -1, NULL, 0);
> >         if (IS_ERR(pdev)) {
> >                 rc = PTR_ERR(pdev);
> >                 goto err_dev;
> >         }
> >         rc = tpm_tis_init(&pdev->dev, &tis_default_info, NULL);
> > 
> > tpm_tis_init calls tpmm_chip_alloc which barfs when pdev (i.e. the return value
> > of platform_device_register_simple above) isn't bound. It is not allowed
> > to assume that the device is bound after the above function calls.
> 
> Can you please explain again why you think that assumption is invalid? 

You can unbind a device from a driver via sysfs, you can also prevent
binding somehow I think, probing can fail for different reasons, probing
might wait for userspace interaction to load firmware which wasn't
scheduled yet. I'm sure there are still more things that break the
assumption.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

  reply	other threads:[~2015-12-01 13:24 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-26 19:01 [PATCH] base/platform: fix panic when probe function is NULL martin.wilck
2015-11-26 20:30 ` [tpmdd-devel] " Jason Gunthorpe
2015-11-27  7:32   ` Wilck, Martin
2015-11-28 16:40   ` Jarkko Sakkinen
2015-11-28 16:49     ` Jarkko Sakkinen
2015-11-28 22:52     ` Jason Gunthorpe
2015-11-30 12:50       ` Jarkko Sakkinen
2015-11-27 10:11 ` Uwe Kleine-König
2015-11-30  7:42   ` Wilck, Martin
2015-11-30 11:50   ` [PATCH v2] base/platform: return success " martin.wilck
2015-12-01 20:30     ` Uwe Kleine-König
2015-12-01 10:41   ` [PATCH] base/platform: fix panic " Wilck, Martin
2015-12-01 13:24     ` Uwe Kleine-König [this message]
2015-12-01 15:19       ` Wilck, Martin
2015-12-01 17:25         ` [tpmdd-devel] " Jason Gunthorpe
2015-12-01 18:26           ` Peter Huewe
2015-12-01 18:40             ` Jason Gunthorpe
2015-12-01 18:54               ` Aw: " Peter Huewe
2015-12-01 19:03                 ` Jason Gunthorpe
2015-11-28 16:34 ` Jarkko Sakkinen
2015-11-29  9:54   ` Uwe Kleine-König
2015-11-30 12:56     ` Jarkko Sakkinen
2015-11-30 13:06       ` Jarkko Sakkinen

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=20151201132436.GC5072@pengutronix.de \
    --to=u.kleine-koenig@pengutronix.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martin.wilck@ts.fujitsu.com \
    --cc=tpmdd-devel@lists.sourceforge.net \
    /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