Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751827AbcJBVVm (ORCPT ); Sun, 2 Oct 2016 17:21:42 -0400 Received: from quartz.orcorp.ca ([184.70.90.242]:51536 "EHLO quartz.orcorp.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750822AbcJBVVe (ORCPT ); Sun, 2 Oct 2016 17:21:34 -0400 Date: Sun, 2 Oct 2016 15:21:26 -0600 From: Jason Gunthorpe To: Jarkko Sakkinen Cc: Tomas Winkler , tpmdd-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: Re: [PATCH] tpm: don't destroy chip device prematurely Message-ID: <20161002212126.GA25872@obsidianresearch.com> References: <1475393971-12715-1-git-send-email-tomas.winkler@intel.com> <20161002101755.GA25844@intel.com> <20161002102455.GA27464@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20161002102455.GA27464@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1085 Lines: 26 On Sun, Oct 02, 2016 at 01:24:55PM +0300, Jarkko Sakkinen wrote: > On Sun, Oct 02, 2016 at 01:17:55PM +0300, Jarkko Sakkinen wrote: > > On Sun, Oct 02, 2016 at 10:39:31AM +0300, Tomas Winkler wrote: > > > In tpm_del_char_device device_del is called > > > prior to tpm2_shutdown where it is still used. > > > > > > Fortunately, so far chip->dev was used only for printouts > > > int tpm2_shutdown flow, hence system didn't crash. But with > > > the introduction of runtime power management it will result in > > > shutting down the parent device while it still in use. > > > > > > Fixes: 20e0152393b41 ("tpm: fix crash in tpm_tis deinitialization") > > > Signed-off-by: Tomas Winkler > > > > Tested-by: Jarkko Sakkinen > > Reviewed-by: Jarkko Sakkinen > > Applied. This patch is wrong, I though the comments were clear. All entry points to find the device must be deleted before we commit to shutting down the device. You need to figure out some other way to solve your problem. Jason