From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Boyd Subject: Re: [PATCH 1/8] tpm: block messages while suspended Date: Fri, 14 Jun 2019 11:13:13 -0700 Message-ID: <5d03e3ba.1c69fb81.9c2c8.aa89@mx.google.com> References: <20190613180931.65445-1-swboyd@chromium.org> <20190613180931.65445-2-swboyd@chromium.org> <20190614152700.GE11241@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: <20190614152700.GE11241@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org To: Jarkko Sakkinen Cc: Peter Huewe , Andrey Pronin , linux-kernel@vger.kernel.org, Jason Gunthorpe , Arnd Bergmann , Greg Kroah-Hartman , linux-integrity@vger.kernel.org, devicetree@vger.kernel.org, Duncan Laurie , Guenter Roeck List-Id: devicetree@vger.kernel.org Quoting Jarkko Sakkinen (2019-06-14 08:27:00) > On Thu, Jun 13, 2019 at 11:09:24AM -0700, Stephen Boyd wrote: > > diff --git a/include/linux/tpm.h b/include/linux/tpm.h > > index 1b5436b213a2..48df005228d0 100644 > > --- a/include/linux/tpm.h > > +++ b/include/linux/tpm.h > > @@ -132,6 +132,8 @@ struct tpm_chip { > > int dev_num; /* /dev/tpm# */ > > unsigned long is_open; /* only one allowed */ > > =20 > > + unsigned long is_suspended; > > + > > char hwrng_name[64]; > > struct hwrng hwrng; >=20 > I think it would better idea to have a bitmask of some sort that > would have bits for 'open' and 'suspended'. >=20 Sure. I can combine is_open and is_suspended into some sort of 'unsigned long flags' member and then have #define TPM_IS_OPEN 0 and #define TPM_IS_SUSPENDED 1 defines?