public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tpm: xen-tpmfront: Remove the locality sysfs attribute
@ 2013-09-23 20:54 Jason Gunthorpe
  2013-09-23 21:18 ` Daniel De Graaf
  0 siblings, 1 reply; 3+ messages in thread
From: Jason Gunthorpe @ 2013-09-23 20:54 UTC (permalink / raw)
  To: Daniel De Graaf, Konrad Rzeszutek Wilk
  Cc: Leonidas Da Silva Barbosa, Rajiv Andrade, tpmdd-devel,
	linux-kernel, Sirrix AG

Upon deeper review it was agreed to remove the driver-unique
'locality' sysfs attribute before it is present in a released
kernel.

The attribute was introduced in e2683957fb268c6b29316fd9e7191e13239a30a5
during the 3.12 merge window, so this patch needs to go in before
3.12 is released.

The hope is to have a well defined locality API that all the other
locality aware drivers can use, perhaps in 3.13.

Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
---
 drivers/char/tpm/xen-tpmfront.c | 29 -----------------------------
 1 file changed, 29 deletions(-)

Daniel, if you can Ack this..

Konrad: This driver was originally merged through you, can you
pick this up?

Regards,
Jason

diff --git a/drivers/char/tpm/xen-tpmfront.c b/drivers/char/tpm/xen-tpmfront.c
index 6f2fe2b..06189e5 100644
--- a/drivers/char/tpm/xen-tpmfront.c
+++ b/drivers/char/tpm/xen-tpmfront.c
@@ -142,32 +142,6 @@ static int vtpm_recv(struct tpm_chip *chip, u8 *buf, size_t count)
 	return length;
 }
 
-ssize_t tpm_show_locality(struct device *dev, struct device_attribute *attr,
-			  char *buf)
-{
-	struct tpm_chip *chip = dev_get_drvdata(dev);
-	struct tpm_private *priv = TPM_VPRIV(chip);
-	u8 locality = priv->shr->locality;
-
-	return sprintf(buf, "%d\n", locality);
-}
-
-ssize_t tpm_store_locality(struct device *dev, struct device_attribute *attr,
-			const char *buf, size_t len)
-{
-	struct tpm_chip *chip = dev_get_drvdata(dev);
-	struct tpm_private *priv = TPM_VPRIV(chip);
-	u8 val;
-
-	int rv = kstrtou8(buf, 0, &val);
-	if (rv)
-		return rv;
-
-	priv->shr->locality = val;
-
-	return len;
-}
-
 static const struct file_operations vtpm_ops = {
 	.owner = THIS_MODULE,
 	.llseek = no_llseek,
@@ -188,8 +162,6 @@ static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL);
 static DEVICE_ATTR(cancel, S_IWUSR | S_IWGRP, NULL, tpm_store_cancel);
 static DEVICE_ATTR(durations, S_IRUGO, tpm_show_durations, NULL);
 static DEVICE_ATTR(timeouts, S_IRUGO, tpm_show_timeouts, NULL);
-static DEVICE_ATTR(locality, S_IRUGO | S_IWUSR, tpm_show_locality,
-		tpm_store_locality);
 
 static struct attribute *vtpm_attrs[] = {
 	&dev_attr_pubek.attr,
@@ -202,7 +174,6 @@ static struct attribute *vtpm_attrs[] = {
 	&dev_attr_cancel.attr,
 	&dev_attr_durations.attr,
 	&dev_attr_timeouts.attr,
-	&dev_attr_locality.attr,
 	NULL,
 };
 
-- 
1.8.1.2


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

* Re: [PATCH] tpm: xen-tpmfront: Remove the locality sysfs attribute
  2013-09-23 20:54 [PATCH] tpm: xen-tpmfront: Remove the locality sysfs attribute Jason Gunthorpe
@ 2013-09-23 21:18 ` Daniel De Graaf
  2013-09-24 17:39   ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel De Graaf @ 2013-09-23 21:18 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: Konrad Rzeszutek Wilk, Leonidas Da Silva Barbosa, Rajiv Andrade,
	tpmdd-devel, linux-kernel, Sirrix AG

On 09/23/2013 04:54 PM, Jason Gunthorpe wrote:
> Upon deeper review it was agreed to remove the driver-unique
> 'locality' sysfs attribute before it is present in a released
> kernel.
>
> The attribute was introduced in e2683957fb268c6b29316fd9e7191e13239a30a5
> during the 3.12 merge window, so this patch needs to go in before
> 3.12 is released.
>
> The hope is to have a well defined locality API that all the other
> locality aware drivers can use, perhaps in 3.13.
>
> Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
> ---
>   drivers/char/tpm/xen-tpmfront.c | 29 -----------------------------
>   1 file changed, 29 deletions(-)
>
> Daniel, if you can Ack this..

Acked-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>

> Konrad: This driver was originally merged through you, can you
> pick this up?
>
> Regards,
> Jason
>
> diff --git a/drivers/char/tpm/xen-tpmfront.c b/drivers/char/tpm/xen-tpmfront.c
> index 6f2fe2b..06189e5 100644
> --- a/drivers/char/tpm/xen-tpmfront.c
> +++ b/drivers/char/tpm/xen-tpmfront.c
> @@ -142,32 +142,6 @@ static int vtpm_recv(struct tpm_chip *chip, u8 *buf, size_t count)
>   	return length;
>   }
>
> -ssize_t tpm_show_locality(struct device *dev, struct device_attribute *attr,
> -			  char *buf)
> -{
> -	struct tpm_chip *chip = dev_get_drvdata(dev);
> -	struct tpm_private *priv = TPM_VPRIV(chip);
> -	u8 locality = priv->shr->locality;
> -
> -	return sprintf(buf, "%d\n", locality);
> -}
> -
> -ssize_t tpm_store_locality(struct device *dev, struct device_attribute *attr,
> -			const char *buf, size_t len)
> -{
> -	struct tpm_chip *chip = dev_get_drvdata(dev);
> -	struct tpm_private *priv = TPM_VPRIV(chip);
> -	u8 val;
> -
> -	int rv = kstrtou8(buf, 0, &val);
> -	if (rv)
> -		return rv;
> -
> -	priv->shr->locality = val;
> -
> -	return len;
> -}
> -
>   static const struct file_operations vtpm_ops = {
>   	.owner = THIS_MODULE,
>   	.llseek = no_llseek,
> @@ -188,8 +162,6 @@ static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL);
>   static DEVICE_ATTR(cancel, S_IWUSR | S_IWGRP, NULL, tpm_store_cancel);
>   static DEVICE_ATTR(durations, S_IRUGO, tpm_show_durations, NULL);
>   static DEVICE_ATTR(timeouts, S_IRUGO, tpm_show_timeouts, NULL);
> -static DEVICE_ATTR(locality, S_IRUGO | S_IWUSR, tpm_show_locality,
> -		tpm_store_locality);
>
>   static struct attribute *vtpm_attrs[] = {
>   	&dev_attr_pubek.attr,
> @@ -202,7 +174,6 @@ static struct attribute *vtpm_attrs[] = {
>   	&dev_attr_cancel.attr,
>   	&dev_attr_durations.attr,
>   	&dev_attr_timeouts.attr,
> -	&dev_attr_locality.attr,
>   	NULL,
>   };
>
>


-- 
Daniel De Graaf
National Security Agency

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

* Re: [PATCH] tpm: xen-tpmfront: Remove the locality sysfs attribute
  2013-09-23 21:18 ` Daniel De Graaf
@ 2013-09-24 17:39   ` Konrad Rzeszutek Wilk
  0 siblings, 0 replies; 3+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-09-24 17:39 UTC (permalink / raw)
  To: Daniel De Graaf
  Cc: Jason Gunthorpe, Leonidas Da Silva Barbosa, Rajiv Andrade,
	tpmdd-devel, linux-kernel, Sirrix AG

On Mon, Sep 23, 2013 at 05:18:26PM -0400, Daniel De Graaf wrote:
> On 09/23/2013 04:54 PM, Jason Gunthorpe wrote:
> >Upon deeper review it was agreed to remove the driver-unique
> >'locality' sysfs attribute before it is present in a released
> >kernel.
> >
> >The attribute was introduced in e2683957fb268c6b29316fd9e7191e13239a30a5
> >during the 3.12 merge window, so this patch needs to go in before
> >3.12 is released.
> >
> >The hope is to have a well defined locality API that all the other
> >locality aware drivers can use, perhaps in 3.13.
> >
> >Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
> >---
> >  drivers/char/tpm/xen-tpmfront.c | 29 -----------------------------
> >  1 file changed, 29 deletions(-)
> >
> >Daniel, if you can Ack this..
> 
> Acked-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>
> 
> >Konrad: This driver was originally merged through you, can you
> >pick this up?

Sure thing. Thank you!

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

end of thread, other threads:[~2013-09-24 17:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-23 20:54 [PATCH] tpm: xen-tpmfront: Remove the locality sysfs attribute Jason Gunthorpe
2013-09-23 21:18 ` Daniel De Graaf
2013-09-24 17:39   ` Konrad Rzeszutek Wilk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox