linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Brian King <brking@linux.vnet.ibm.com>
To: Wayne Boyer <wayneb@linux.vnet.ibm.com>
Cc: James Bottomley <James.Bottomley@suse.de>,
	linux-scsi <linux-scsi@vger.kernel.org>,
	Kleber Sacilotto de Souza <klebers@linux.vnet.ibm.com>
Subject: Re: [PATCH 2/2] ipr: fix resource type update and add sdev and shost attributes
Date: Wed, 14 Jul 2010 15:19:16 -0500	[thread overview]
Message-ID: <4C3E1BC4.4020505@linux.vnet.ibm.com> (raw)
In-Reply-To: <4C3DF8D6.5080906@linux.vnet.ibm.com>

Acked-by: Brian King <brking@linux.vnet.ibm.com>

On 07/14/2010 12:50 PM, Wayne Boyer wrote:
> Setting the resource type in the ipr_update_res_entry function was incorrect in
> that the top 4 bits were masked off.  The assignment has been updated to no
> longer mask those bits.
> 
> Then, two new attributes were added to allow the user space utilities to more
> easily get information.  The resource_type sdev attribute is set for all devices
> in the adapter's configuration table and indicates the type of device.  The
> fw_type shost attribute indicates the firmware type supported by the adapter.
> 
> Finally, the resource_path attribute was changed to be mode S_IRUGO.
> 
> Signed-off-by: Wayne Boyer <wayneb@linux.vnet.ibm.com>
> ---
> 
>  drivers/scsi/ipr.c |   70 +++++++++++++++++++++++++++++++++++++++++++++++++++--
>  1 file changed, 68 insertions(+), 2 deletions(-)
> 
> Index: b/drivers/scsi/ipr.c
> ===================================================================
> --- a/drivers/scsi/ipr.c	2010-07-14 10:21:28.000000000 -0700
> +++ b/drivers/scsi/ipr.c	2010-07-14 10:47:17.000000000 -0700
> @@ -1168,7 +1168,7 @@ static void ipr_update_res_entry(struct 
>  	if (res->ioa_cfg->sis64) {
>  		res->flags = cfgtew->u.cfgte64->flags;
>  		res->res_flags = cfgtew->u.cfgte64->res_flags;
> -		res->type = cfgtew->u.cfgte64->res_type & 0x0f;
> +		res->type = cfgtew->u.cfgte64->res_type;
> 
>  		memcpy(&res->std_inq_data, &cfgtew->u.cfgte64->std_inq_data,
>  			sizeof(struct ipr_std_inq_data));
> @@ -3761,6 +3761,36 @@ static struct device_attribute ipr_updat
>  	.store = ipr_store_update_fw
>  };
> 
> +/**
> + * ipr_show_fw_type - Show the adapter's firmware type.
> + * @dev:	class device struct
> + * @buf:	buffer
> + *
> + * Return value:
> + *	number of bytes printed to buffer
> + **/
> +static ssize_t ipr_show_fw_type(struct device *dev,
> +				struct device_attribute *attr, char *buf)
> +{
> +	struct Scsi_Host *shost = class_to_shost(dev);
> +	struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
> +	unsigned long lock_flags = 0;
> +	int len;
> +
> +	spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
> +	len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->sis64);
> +	spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
> +	return len;
> +}
> +
> +static struct device_attribute ipr_ioa_fw_type_attr = {
> +	.attr = {
> +		.name =		"fw_type",
> +		.mode =		S_IRUGO,
> +	},
> +	.show = ipr_show_fw_type
> +};
> +
>  static struct device_attribute *ipr_ioa_attrs[] = {
>  	&ipr_fw_version_attr,
>  	&ipr_log_level_attr,
> @@ -3768,6 +3798,7 @@ static struct device_attribute *ipr_ioa_
>  	&ipr_ioa_state_attr,
>  	&ipr_ioa_reset_attr,
>  	&ipr_update_fw_attr,
> +	&ipr_ioa_fw_type_attr,
>  	NULL,
>  };
> 
> @@ -4119,14 +4150,49 @@ static ssize_t ipr_show_resource_path(st
>  static struct device_attribute ipr_resource_path_attr = {
>  	.attr = {
>  		.name = 	"resource_path",
> -		.mode =		S_IRUSR,
> +		.mode =		S_IRUGO,
>  	},
>  	.show = ipr_show_resource_path
>  };
> 
> +/**
> + * ipr_show_resource_type - Show the resource type for this device.
> + * @dev:	device struct
> + * @buf:	buffer
> + *
> + * Return value:
> + *	number of bytes printed to buffer
> + **/
> +static ssize_t ipr_show_resource_type(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> +	struct scsi_device *sdev = to_scsi_device(dev);
> +	struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
> +	struct ipr_resource_entry *res;
> +	unsigned long lock_flags = 0;
> +	ssize_t len = -ENXIO;
> +
> +	spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
> +	res = (struct ipr_resource_entry *)sdev->hostdata;
> +
> +	if (res)
> +		len = snprintf(buf, PAGE_SIZE, "%x\n", res->type);
> +
> +	spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
> +	return len;
> +}
> +
> +static struct device_attribute ipr_resource_type_attr = {
> +	.attr = {
> +		.name =		"resource_type",
> +		.mode =		S_IRUGO,
> +	},
> +	.show = ipr_show_resource_type
> +};
> +
>  static struct device_attribute *ipr_dev_attrs[] = {
>  	&ipr_adapter_handle_attr,
>  	&ipr_resource_path_attr,
> +	&ipr_resource_type_attr,
>  	NULL,
>  };
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


-- 
Brian King
Linux on Power Virtualization
IBM Linux Technology Center



      reply	other threads:[~2010-07-14 20:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20100714174755.049189590@linux.vnet.ibm.com>
2010-07-14 17:50 ` [PATCH 2/2] ipr: fix resource type update and add sdev and shost attributes Wayne Boyer
2010-07-14 20:19   ` Brian King [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=4C3E1BC4.4020505@linux.vnet.ibm.com \
    --to=brking@linux.vnet.ibm.com \
    --cc=James.Bottomley@suse.de \
    --cc=klebers@linux.vnet.ibm.com \
    --cc=linux-scsi@vger.kernel.org \
    --cc=wayneb@linux.vnet.ibm.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).