public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Harish Chegondi <harish.chegondi-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Leon Romanovsky <leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Dennis Dalessandro
	<dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	harish.chegondi-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH for-next 09/16] IB/hfi1: Clean up pin_vector_pages() function
Date: Tue, 22 Aug 2017 11:39:48 -0700	[thread overview]
Message-ID: <599C7A74.9010301@intel.com> (raw)
In-Reply-To: <20170822154659.GE1724-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>



On 08/22/2017 08:46 AM, Leon Romanovsky wrote:
> On Mon, Aug 21, 2017 at 06:27:03PM -0700, Dennis Dalessandro wrote:
>> From: Harish Chegondi <harish.chegondi-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>>
>> Clean up pin_vector_pages() function by moving page pinning related code
>> to a separate function since it really stands on its own.
>>
>> Reviewed-by: Dennis Dalessandro <dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>> Signed-off-by: Harish Chegondi <harish.chegondi-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>> Signed-off-by: Dennis Dalessandro <dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>> ---
>>  drivers/infiniband/hw/hfi1/user_sdma.c |   79 ++++++++++++++++++--------------
>>  1 files changed, 45 insertions(+), 34 deletions(-)
>>
>> diff --git a/drivers/infiniband/hw/hfi1/user_sdma.c b/drivers/infiniband/hw/hfi1/user_sdma.c
>> index d5a2572..6f26253 100644
>> --- a/drivers/infiniband/hw/hfi1/user_sdma.c
>> +++ b/drivers/infiniband/hw/hfi1/user_sdma.c
>> @@ -1124,11 +1124,53 @@ static u32 sdma_cache_evict(struct hfi1_user_sdma_pkt_q *pq, u32 npages)
>>  	return evict_data.cleared;
>>  }
>>
>> +static int pin_sdma_pages(struct user_sdma_request *req,
>> +			  struct user_sdma_iovec *iovec,
>> +			  struct sdma_mmu_node *node,
>> +			  int npages)
>> +{
>> +	int pinned, cleared;
>> +	struct page **pages;
>> +	struct hfi1_user_sdma_pkt_q *pq = req->pq;
>> +
>> +	pages = kcalloc(npages, sizeof(*pages), GFP_KERNEL);
>> +	if (!pages) {
>> +		SDMA_DBG(req, "Failed page array alloc");
> 
> Please don't add prints after k[c|m|z]alloc failures, despite the fact
> that it was before.
> 
> Thanks

SDMA_DBG MACRO is a trace for development debugging. It's not a print.

> 
>> +		return -ENOMEM;
>> +	}
>> +	memcpy(pages, node->pages, node->npages * sizeof(*pages));
>> +
>> +	npages -= node->npages;
>> +retry:
>> +	if (!hfi1_can_pin_pages(pq->dd, pq->mm,
>> +				atomic_read(&pq->n_locked), npages)) {
>> +		cleared = sdma_cache_evict(pq, npages);
>> +		if (cleared >= npages)
>> +			goto retry;
>> +	}
>> +	pinned = hfi1_acquire_user_pages(pq->mm,
>> +					 ((unsigned long)iovec->iov.iov_base +
>> +					 (node->npages * PAGE_SIZE)), npages, 0,
>> +					 pages + node->npages);
>> +	if (pinned < 0) {
>> +		kfree(pages);
>> +		return pinned;
>> +	}
>> +	if (pinned != npages) {
>> +		unpin_vector_pages(pq->mm, pages, node->npages, pinned);
>> +		return -EFAULT;
>> +	}
>> +	kfree(node->pages);
>> +	node->rb.len = iovec->iov.iov_len;
>> +	node->pages = pages;
>> +	atomic_add(pinned, &pq->n_locked);
>> +	return pinned;
>> +}
>> +
>>  static int pin_vector_pages(struct user_sdma_request *req,
>>  			    struct user_sdma_iovec *iovec)
>>  {
>> -	int ret = 0, pinned, npages, cleared;
>> -	struct page **pages;
>> +	int ret = 0, pinned, npages;
>>  	struct hfi1_user_sdma_pkt_q *pq = req->pq;
>>  	struct sdma_mmu_node *node = NULL;
>>  	struct mmu_rb_node *rb_node;
>> @@ -1162,44 +1204,13 @@ static int pin_vector_pages(struct user_sdma_request *req,
>>
>>  	npages = num_user_pages(&iovec->iov);
>>  	if (node->npages < npages) {
>> -		pages = kcalloc(npages, sizeof(*pages), GFP_KERNEL);
>> -		if (!pages) {
>> -			SDMA_DBG(req, "Failed page array alloc");
>> -			ret = -ENOMEM;
>> -			goto bail;
>> -		}
>> -		memcpy(pages, node->pages, node->npages * sizeof(*pages));
>> -
>> -		npages -= node->npages;
>> -
>> -retry:
>> -		if (!hfi1_can_pin_pages(pq->dd, pq->mm,
>> -					atomic_read(&pq->n_locked), npages)) {
>> -			cleared = sdma_cache_evict(pq, npages);
>> -			if (cleared >= npages)
>> -				goto retry;
>> -		}
>> -		pinned = hfi1_acquire_user_pages(pq->mm,
>> -			((unsigned long)iovec->iov.iov_base +
>> -			 (node->npages * PAGE_SIZE)), npages, 0,
>> -			pages + node->npages);
>> +		pinned = pin_sdma_pages(req, iovec, node, npages);
>>  		if (pinned < 0) {
>> -			kfree(pages);
>>  			ret = pinned;
>>  			goto bail;
>>  		}
>> -		if (pinned != npages) {
>> -			unpin_vector_pages(pq->mm, pages, node->npages,
>> -					   pinned);
>> -			ret = -EFAULT;
>> -			goto bail;
>> -		}
>> -		kfree(node->pages);
>> -		node->rb.len = iovec->iov.iov_len;
>> -		node->pages = pages;
>>  		node->npages += pinned;
>>  		npages = node->npages;
>> -		atomic_add(pinned, &pq->n_locked);
>>  	}
>>  	iovec->pages = node->pages;
>>  	iovec->npages = npages;
>>
>> --
>> 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-08-22 18:39 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-22  1:26 [PATCH for-next 00/16] IB/hfi1, qib, rdmavt: patches for next 08/21/2017 Dennis Dalessandro
2017-08-22  1:26 ` [PATCH for-next 02/16] IB/{qib, hfi1}: Avoid flow control testing for RDMA write operation Dennis Dalessandro
     [not found] ` <20170822011657.32701.22207.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-08-22  1:26   ` [PATCH for-next 01/16] IB/rdmavt: Use rvt_put_swqe() in rvt_clear_mr_ref() Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 03/16] IB/qib: Remove unnecessary memory allocation for boardname Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 04/16] IB/qib: Stricter bounds checking for copy and array access Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 05/16] IB/hfi1: Ratelimit prints from sdma_interrupt Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 06/16] IB/hfi1: Improve local kmem_cache_alloc performance Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 07/16] IB/hfi1: Clean up hfi1_user_exp_rcv_setup function Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 08/16] IB/hfi1: Clean up user_sdma_send_pkts() function Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 09/16] IB/hfi1: Clean up pin_vector_pages() function Dennis Dalessandro
     [not found]     ` <20170822012702.32701.90032.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-08-22 15:46       ` Leon Romanovsky
     [not found]         ` <20170822154659.GE1724-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-08-22 18:39           ` Harish Chegondi [this message]
     [not found]             ` <599C7A74.9010301-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-08-23  4:49               ` Leon Romanovsky
     [not found]                 ` <20170823044900.GK1724-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-08-28  5:00                   ` Harish Chegondi
2017-08-22  1:27   ` [PATCH for-next 10/16] IB/hfi1: Fix the bail out code in " Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 11/16] IB/hfi1: Remove duplicate definitions of num_user_pages() function Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 12/16] IB/hfi1: Move structure definitions from user_exp_rcv.c to user_exp_rcv.h Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 13/16] IB/hfi1: Move structure and MACRO definitions in user_sdma.c to user_sdma.h Dennis Dalessandro
     [not found]     ` <20170822012728.32701.38661.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-08-22 15:40       ` Leon Romanovsky
     [not found]         ` <20170822154025.GD1724-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-08-28  5:04           ` Harish Chegondi
2017-08-22  1:27   ` [PATCH for-next 14/16] IB/hfi1: Fix whitespace alignment issue for MAD Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 15/16] IB/hfi1: Add received request info to qp_stats Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 16/16] IB/hfi1: Add opcode states " Dennis Dalessandro
2017-08-28 23:16   ` [PATCH for-next 00/16] IB/hfi1, qib, rdmavt: patches for next 08/21/2017 Doug Ledford

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=599C7A74.9010301@intel.com \
    --to=harish.chegondi-ral2jqcrhueavxtiumwx3w@public.gmane.org \
    --cc=dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@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