From: Douglas Gilbert <dgilbert@interlog.com>
To: Xiangliang Yu <yuxiangl@marvell.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>,
"yxlraid@gmail.com" <yxlraid@gmail.com>,
"jack_wang@usish.com" <jack_wang@usish.com>,
"lucas.demarchi@profusion.mobi" <lucas.demarchi@profusion.mobi>,
"maciej.trela@intel.com" <maciej.trela@intel.com>,
"dan.j.williams@intel.com" <dan.j.williams@intel.com>,
"linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Jacky Feng <jfeng@marvell.com>
Subject: Re: [PATCH] [SCSI] LIBSAS: fix libsas link error issue
Date: Wed, 15 Jun 2011 00:15:34 -0400 [thread overview]
Message-ID: <4DF831E6.3050502@interlog.com> (raw)
In-Reply-To: <F766E4F80769BD478052FB6533FA745D19FAE669AF@SC-VEXCH4.marvell.com>
On 11-06-14 09:44 PM, Xiangliang Yu wrote:
> Subject: Re: [PATCH] [SCSI] LIBSAS: fix libsas link error issue
>
> On Tue, 2011-06-14 at 23:17 +0800, yxlraid@gmail.com wrote:
>>> From: Xiangliang Yu<yuxiangl@marvell.com>
>>>
>>> -- The value of child link rate should is minimum of link rate, or
>>> command will fail if child link rate is bigger than parent link rate.
>>>
>>> Signed-off-by: Xiangliang Yu<yuxiangl@marvell.com>
>>> ---
>>> drivers/scsi/libsas/sas_expander.c | 2 +-
>>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/drivers/scsi/libsas/sas_expander.c b/drivers/scsi/libsas/sas_expander.c
>>> index 874e29d..6ccca09 100644
>>> --- a/drivers/scsi/libsas/sas_expander.c
>>> +++ b/drivers/scsi/libsas/sas_expander.c
>>> @@ -638,7 +638,7 @@ static void sas_ex_get_linkrate(struct domain_device *parent,
>>> sas_port_add_phy(port, phy->phy);
>>> }
>>> }
>>> - child->linkrate = min(parent_phy->linkrate, child->max_linkrate);
>>> + child->linkrate = min(parent_phy->linkrate, child->min_linkrate);
>
>> This patch doesn't look right. It will clamp the phy to the minim
>> possible link rate.
> Link negotiation should get the minimum.
spl2r01.pdf [Most recent SAS-3 draft for the protocol layers]
5.7.4.2.1 SAS speed negotiation sequence overview
"The SAS speed negotiation sequence establishes communications between
the two phys on a physical link at the highest possible transmission
rate."
That seems to suggest:
min(<one_end>.max_linkrate, <other_end>.max_linkrate)
Doug Gilbert
next prev parent reply other threads:[~2011-06-15 4:15 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-14 15:17 [PATCH] [SCSI] LIBSAS: fix libsas link error issue yxlraid
2011-06-14 15:29 ` James Bottomley
2011-06-15 1:44 ` Xiangliang Yu
2011-06-15 4:15 ` Douglas Gilbert [this message]
2011-06-15 4:52 ` Xiangliang Yu
2011-06-15 4:52 ` Xiangliang Yu
2011-06-15 5:57 ` James Bottomley
2011-06-15 6:31 ` Xiangliang Yu
2011-06-16 1:41 ` Jack Wang
2011-06-16 1:41 ` Jack Wang
2011-06-16 1:57 ` Xiangliang Yu
2011-06-16 2:18 ` Jack Wang
2011-06-16 2:18 ` Jack Wang
2011-06-16 2:29 ` Xiangliang Yu
2011-06-16 4:31 ` Jack Wang
2011-06-16 4:31 ` Jack Wang
2011-06-16 4:53 ` Xiangliang Yu
2011-06-16 6:12 ` Jack Wang
2011-06-16 6:12 ` Jack Wang
2011-06-16 6:37 ` Xiangliang Yu
2011-06-16 6:55 ` Jack Wang
2011-06-16 6:55 ` Jack Wang
2011-06-16 7:27 ` Xiangliang Yu
2011-06-16 8:11 ` Jack Wang
2011-06-16 8:11 ` Jack Wang
2011-06-16 9:04 ` Xiangliang Yu
2011-06-16 9:33 ` Jack Wang
2011-06-16 9:33 ` Jack Wang
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=4DF831E6.3050502@interlog.com \
--to=dgilbert@interlog.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=dan.j.williams@intel.com \
--cc=jack_wang@usish.com \
--cc=jfeng@marvell.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=lucas.demarchi@profusion.mobi \
--cc=maciej.trela@intel.com \
--cc=yuxiangl@marvell.com \
--cc=yxlraid@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.