public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: "Liuyixian (Eason)" <liuyixian-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
To: "Ruhl,
	Michael J"
	<michael.j.ruhl-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	"jgg-uk2M96/98Pc@public.gmane.org"
	<jgg-uk2M96/98Pc@public.gmane.org>,
	"leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org"
	<leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: "dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org"
	<dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	"linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH for-next 2/2] RDMA/hns: Fix alignment problem of the doorbell
Date: Thu, 28 Dec 2017 14:51:04 +0800	[thread overview]
Message-ID: <fdd7d8ea-419f-eee2-8096-5743fa1734b8@huawei.com> (raw)
In-Reply-To: <14063C7AD467DE4B82DEDB5C278E86639F0E6137-AtyAts71sc88Ug9VwtkbtrfspsVTdybXVpNB7YpNyf8@public.gmane.org>



On 2017/12/28 1:40, Ruhl, Michael J wrote:
>> -----Original Message-----
>> From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
>> owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Yixian Liu
>> Sent: Monday, December 25, 2017 8:37 AM
>> To: jgg-uk2M96/98Pc@public.gmane.org; leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
>> Cc: dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org; linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> Subject: [PATCH for-next 2/2] RDMA/hns: Fix alignment problem of the
>> doorbell
>>
>> The array defined for doorbell is not guaranteed to be 64 bit
>> aligned while we write it to the hardware with 64 bit
>> alignment required.
>>
>> This patch fixes this problem by defining a union for doorbell
>> to make sure it 64 bit alignment.
>>
>> Signed-off-by: Yixian Liu <liuyixian-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>> Signed-off-by: Lijun Ou <oulijun-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>> Signed-off-by: Wei Hu (Xavier) <xavier.huwei-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>> ---
>>  drivers/infiniband/hw/hns/hns_roce_device.h |  5 +++++
>>  drivers/infiniband/hw/hns/hns_roce_hw_v2.c  | 16 ++++++++--------
>>  2 files changed, 13 insertions(+), 8 deletions(-)
>>
>> diff --git a/drivers/infiniband/hw/hns/hns_roce_device.h
>> b/drivers/infiniband/hw/hns/hns_roce_device.h
>> index dde5178..defc4ee 100644
>> --- a/drivers/infiniband/hw/hns/hns_roce_device.h
>> +++ b/drivers/infiniband/hw/hns/hns_roce_device.h
>> @@ -569,6 +569,11 @@ struct hns_roce_eq_table {
>>  	void __iomem		**eqc_base; /* only for hw v1 */
>>  };
>>
>> +union hns_roce_db {
>> +	u64	doorbell64;
> 
> Are there any concerns with big endian/little ending for this value?
> 
> Mike
> 

I will consider this issue in patch v3, Mike, thank you!

>> +	u32	doorbell[2];
>> +};
>> +
>>  struct hns_roce_caps {
>>  	u8		num_ports;
>>  	int		gid_table_len[HNS_ROCE_MAX_PORTS];
>> diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
>> b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
>> index 7f393f6..ee26bbd 100644
>> --- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
>> +++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
>> @@ -3172,33 +3172,33 @@ static int hns_roce_v2_modify_cq(struct ib_cq
>> *cq, u16 cq_count, u16 cq_period)
>>
>>  static void set_eq_cons_index_v2(struct hns_roce_eq *eq)
>>  {
>> -	u32 doorbell[2];
>> +	union hns_roce_db db;
>>
>> -	doorbell[0] = 0;
>> -	doorbell[1] = 0;
>> +	db.doorbell[0] = 0;
>> +	db.doorbell[1] = 0;
>>
>>  	if (eq->type_flag == HNS_ROCE_AEQ) {
>> -		roce_set_field(doorbell[0], HNS_ROCE_V2_EQ_DB_CMD_M,
>> +		roce_set_field(db.doorbell[0],
>> HNS_ROCE_V2_EQ_DB_CMD_M,
>>  			       HNS_ROCE_V2_EQ_DB_CMD_S,
>>  			       eq->arm_st ==
>> HNS_ROCE_V2_EQ_ALWAYS_ARMED ?
>>  			       HNS_ROCE_EQ_DB_CMD_AEQ :
>>  			       HNS_ROCE_EQ_DB_CMD_AEQ_ARMED);
>>  	} else {
>> -		roce_set_field(doorbell[0], HNS_ROCE_V2_EQ_DB_TAG_M,
>> +		roce_set_field(db.doorbell[0],
>> HNS_ROCE_V2_EQ_DB_TAG_M,
>>  			       HNS_ROCE_V2_EQ_DB_TAG_S, eq->eqn);
>>
>> -		roce_set_field(doorbell[0], HNS_ROCE_V2_EQ_DB_CMD_M,
>> +		roce_set_field(db.doorbell[0],
>> HNS_ROCE_V2_EQ_DB_CMD_M,
>>  			       HNS_ROCE_V2_EQ_DB_CMD_S,
>>  			       eq->arm_st ==
>> HNS_ROCE_V2_EQ_ALWAYS_ARMED ?
>>  			       HNS_ROCE_EQ_DB_CMD_CEQ :
>>  			       HNS_ROCE_EQ_DB_CMD_CEQ_ARMED);
>>  	}
>>
>> -	roce_set_field(doorbell[1], HNS_ROCE_V2_EQ_DB_PARA_M,
>> +	roce_set_field(db.doorbell[1], HNS_ROCE_V2_EQ_DB_PARA_M,
>>  		       HNS_ROCE_V2_EQ_DB_PARA_S,
>>  		       (eq->cons_index & HNS_ROCE_V2_CONS_IDX_M));
>>
>> -	hns_roce_write64_k(doorbell, eq->doorbell);
>> +	hns_roce_write64_k(db.doorbell, eq->doorbell);
>>
>>  	/* Make sure we update the consumer index of EQ before
>>  	 * accessing it later
>> --
>> 1.9.1
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> .
> 

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

      parent reply	other threads:[~2017-12-28  6:51 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-25 13:37 [PATCH for-next 0/2] Bugfixes for eq support in hns Yixian Liu
     [not found] ` <1514209039-9388-1-git-send-email-liuyixian-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-12-25 13:37   ` [PATCH for-next 1/2] RDMA/hns: Add detailed comments for mb() call Yixian Liu
     [not found]     ` <1514209039-9388-2-git-send-email-liuyixian-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-12-26  7:37       ` Leon Romanovsky
2017-12-25 13:37   ` [PATCH for-next 2/2] RDMA/hns: Fix alignment problem of the doorbell Yixian Liu
     [not found]     ` <1514209039-9388-3-git-send-email-liuyixian-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-12-26  8:15       ` Leon Romanovsky
     [not found]         ` <20171226081526.GB10734-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-12-27 10:01           ` Liuyixian (Eason)
     [not found]             ` <6f657295-ab91-a940-c1d8-8d85dcedb4ea-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-12-27 16:44               ` Jason Gunthorpe
     [not found]                 ` <20171227164407.GB25436-uk2M96/98Pc@public.gmane.org>
2017-12-28  6:48                   ` Liuyixian (Eason)
     [not found]                     ` <2a0a56fb-1ec8-dfc9-3c29-c9bae7bd9bae-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-12-28  8:31                       ` Liuyixian (Eason)
2017-12-28 16:00                       ` Jason Gunthorpe
2017-12-27 17:40       ` Ruhl, Michael J
     [not found]         ` <14063C7AD467DE4B82DEDB5C278E86639F0E6137-AtyAts71sc88Ug9VwtkbtrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2017-12-28  6:51           ` Liuyixian (Eason) [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=fdd7d8ea-419f-eee2-8096-5743fa1734b8@huawei.com \
    --to=liuyixian-hv44wf8li93qt0dzr+alfa@public.gmane.org \
    --cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=jgg-uk2M96/98Pc@public.gmane.org \
    --cc=leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=michael.j.ruhl-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    /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