Linux Device Mapper development
 help / color / mirror / Atom feed
From: Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com>
To: hare@suse.de
Cc: dm-devel@redhat.com
Subject: Re: [PATCH] libmultipath: fix discovery of devices with sysfs attr containing only spaces
Date: Wed, 22 Apr 2015 08:41:10 -0300	[thread overview]
Message-ID: <553788D6.3000400@linux.vnet.ibm.com> (raw)
In-Reply-To: <1428765500-11719-1-git-send-email-mauricfo@linux.vnet.ibm.com>

Hi Hannes,

Would you be able to review/comment this patch when you have a chance?

It proposes a fix to an original commit of yours, so your opinion would 
be really appreciated. :-)

It's a change to allow devices with blank SCSI 'rev' sysfs attribute to
be discovered.

Thank you!


On 04/11/2015 12:18 PM, Mauricio Faria de Oliveira wrote:
> commit 43c61e979521b17d9f50ea8e722682c33d0b7d69 causes sysfs_get_<attr>() to
> return 0 if attr contains only spaces, and scsi_sysfs_pathinfo() to return 1
> in 'if (sysfs_get_<attr>() <= 0)'; this breaks the device's discovery.
>
> Changing the comparison operator '<=' to '<' allows discovery to continue.
>
> This affects some IPR controllers (rev sysfs attr):
>
> 	# grep . /sys/block/sda/device/{vendor,model,rev} | tr ' ' '#'
> 	/sys/block/sda/device/vendor:IBM#####
> 	/sys/block/sda/device/model:IPR-0###5EC99A00
> 	/sys/block/sda/device/rev:####
>
> Signed-off-by: Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com>
> ---
>   libmultipath/discovery.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/libmultipath/discovery.c b/libmultipath/discovery.c
> index 4582a20..dde57c0 100644
> --- a/libmultipath/discovery.c
> +++ b/libmultipath/discovery.c
> @@ -1095,7 +1095,7 @@ scsi_sysfs_pathinfo (struct path * pp)
>
>   	condlog(3, "%s: product = %s", pp->dev, pp->product_id);
>
> -	if (sysfs_get_rev(parent, pp->rev, SCSI_REV_SIZE) <= 0)
> +	if (sysfs_get_rev(parent, pp->rev, SCSI_REV_SIZE) < 0)
>   		return 1;
>
>   	condlog(3, "%s: rev = %s", pp->dev, pp->rev);
>


-- 
Mauricio Faria de Oliveira
IBM Linux Technology Center

      parent reply	other threads:[~2015-04-22 11:41 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-11 15:18 [PATCH] libmultipath: fix discovery of devices with sysfs attr containing only spaces Mauricio Faria de Oliveira
2015-04-11 15:33 ` Mauricio Faria de Oliveira
2015-04-22 11:41 ` Mauricio Faria de Oliveira [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=553788D6.3000400@linux.vnet.ibm.com \
    --to=mauricfo@linux.vnet.ibm.com \
    --cc=dm-devel@redhat.com \
    --cc=hare@suse.de \
    /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