linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
To: Toshi Kani <toshi.kani@hp.com>
Cc: lenb@kernel.org, linux-acpi@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] create sun sysfs file
Date: Mon, 30 Jul 2012 09:51:18 +0900	[thread overview]
Message-ID: <5015DA86.2020306@jp.fujitsu.com> (raw)
In-Reply-To: <1343427931.3010.582.camel@misato.fc.hp.com>

Hi Toshi,

2012/07/28 7:25, Toshi Kani wrote:
> On Fri, 2012-07-27 at 12:03 +0900, Yasuaki Ishimatsu wrote:
>> Even if a device has _SUN method, there is no way to know the slot unique-ID.
>> Thus the patch creates "sun" file in sysfs so that we can recognize it.
>
> Hi Yasuaki,
>
> Thanks for the update.  This version looks good to me.
> Did you forget to add your Signed-off?
>
>
>> Index: linux-3.5/include/acpi/acpi_bus.h
>> ===================================================================
>> --- linux-3.5.orig/include/acpi/acpi_bus.h	2012-07-22 05:58:29.000000000 +0900
>> +++ linux-3.5/include/acpi/acpi_bus.h	2012-07-27 10:05:13.860598455 +0900
>> @@ -209,6 +209,7 @@ struct acpi_device_pnp {
>>   	struct list_head ids;		/* _HID and _CIDs */
>>   	acpi_device_name device_name;	/* Driver-determined */
>>   	acpi_device_class device_class;	/*        "          */
>> +	unsigned long sun;		/* _SUN */
>>   };
>>
>>   #define acpi_device_bid(d)	((d)->pnp.bus_id)
>> Index: linux-3.5/drivers/acpi/scan.c
>> ===================================================================
>> --- linux-3.5.orig/drivers/acpi/scan.c	2012-07-22 05:58:29.000000000 +0900
>> +++ linux-3.5/drivers/acpi/scan.c	2012-07-27 10:17:55.670550879 +0900
>> @@ -192,10 +192,21 @@ end:
>>   }
>>   static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
>>
>> +static ssize_t
>> +acpi_device_sun_show(struct device *dev, struct device_attribute *attr, char *buf) {
>> +	struct acpi_device *acpi_dev = to_acpi_device(dev);
>> +	int result;
>> +
>> +	result = sprintf(buf, "%lu\n", acpi_dev->pnp.sun);
>> +	return result;
>> +}
>> +static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
>> +
>>   static int acpi_device_setup_files(struct acpi_device *dev)
>>   {
>>   	acpi_status status;
>>   	acpi_handle temp;
>> +	unsigned long long sun;
>>   	int result = 0;
>>
>>   	/*
>> @@ -217,6 +228,14 @@ static int acpi_device_setup_files(struc
>>   			goto end;
>>   	}
>>
>> +	status = acpi_evaluate_integer(dev->handle, "_SUN", NULL, &sun);
>> +	if (ACPI_SUCCESS(status)) {
>> +		dev->pnp.sun = (unsigned long)sun;
>> +		result = device_create_file(&dev->dev, &dev_attr_sun);
>> +		if (result)
>> +			goto end;
>> +	}
>> +
>

> I'd suggest we add the else condition below to invalidate the field when
> _SUN does not exist.
>
> 	else {
> 		dev->pnp.sun = (unsigned long)-1;
> 	}
>

I'll update it soon.

Thanks,
Yasuaki Ishimatsu
  
>
> Thanks,
> -Toshi
>
>>           /*
>>            * If device has _EJ0, 'eject' file is created that is used to trigger
>>            * hot-removal function from userland.
>> @@ -241,6 +260,10 @@ static void acpi_device_remove_files(str
>>   	if (ACPI_SUCCESS(status))
>>   		device_remove_file(&dev->dev, &dev_attr_eject);
>>
>> +	status = acpi_get_handle(dev->handle, "_SUN", &temp);
>> +	if (ACPI_SUCCESS(status))
>> +		device_remove_file(&dev->dev, &dev_attr_sun);
>> +
>>   	device_remove_file(&dev->dev, &dev_attr_modalias);
>>   	device_remove_file(&dev->dev, &dev_attr_hid);
>>   	if (dev->handle)
>>
>
>



      reply	other threads:[~2012-07-30  0:51 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-27  3:03 [PATCH v2] create sun sysfs file Yasuaki Ishimatsu
2012-07-27 22:25 ` Toshi Kani
2012-07-30  0:51   ` Yasuaki Ishimatsu [this message]

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=5015DA86.2020306@jp.fujitsu.com \
    --to=isimatu.yasuaki@jp.fujitsu.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=toshi.kani@hp.com \
    /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;
as well as URLs for NNTP newsgroup(s).