From: Ira Weiny <ira.weiny@intel.com>
To: Davidlohr Bueso <dave@stgolabs.net>
Cc: akpm@linux-foundation.org, dledford@redhat.com, jgg@mellanox.com,
linux-rdma@vger.kernel.org, linux-mm@kvack.org,
sudeep.dutt@intel.com, ashutosh.dixit@intel.com,
Davidlohr Bueso <dbueso@suse.de>
Subject: Re: [PATCH 2/6] mic/scif: do not use mmap_sem
Date: Tue, 15 Jan 2019 12:28:59 -0800 [thread overview]
Message-ID: <20190115202858.GB4343@iweiny-mobl2.amr.corp.intel.com> (raw)
In-Reply-To: <20190115181300.27547-3-dave@stgolabs.net>
On Tue, Jan 15, 2019 at 10:12:56AM -0800, Davidlohr Bueso wrote:
> The driver uses mmap_sem for both pinned_vm accounting and
> get_user_pages(). By using gup_fast() and letting the mm handle
> the lock if needed, we can no longer rely on the semaphore and
> simplify the whole thing.
>
> Cc: sudeep.dutt@intel.com
> Cc: ashutosh.dixit@intel.com
> Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Reviewed-by: Ira Weiny <ira.weiny@intel.com>
> ---
> drivers/misc/mic/scif/scif_rma.c | 36 +++++++++++-------------------------
> 1 file changed, 11 insertions(+), 25 deletions(-)
>
> diff --git a/drivers/misc/mic/scif/scif_rma.c b/drivers/misc/mic/scif/scif_rma.c
> index a92b4d6f099c..445529ce2ad7 100644
> --- a/drivers/misc/mic/scif/scif_rma.c
> +++ b/drivers/misc/mic/scif/scif_rma.c
> @@ -272,21 +272,12 @@ static inline void __scif_release_mm(struct mm_struct *mm)
>
> static inline int
> __scif_dec_pinned_vm_lock(struct mm_struct *mm,
> - int nr_pages, bool try_lock)
> + int nr_pages)
> {
> if (!mm || !nr_pages || !scif_ulimit_check)
> return 0;
> - if (try_lock) {
> - if (!down_write_trylock(&mm->mmap_sem)) {
> - dev_err(scif_info.mdev.this_device,
> - "%s %d err\n", __func__, __LINE__);
> - return -1;
> - }
> - } else {
> - down_write(&mm->mmap_sem);
> - }
> +
> atomic_long_sub(nr_pages, &mm->pinned_vm);
> - up_write(&mm->mmap_sem);
> return 0;
> }
>
> @@ -298,16 +289,16 @@ static inline int __scif_check_inc_pinned_vm(struct mm_struct *mm,
> if (!mm || !nr_pages || !scif_ulimit_check)
> return 0;
>
> - locked = nr_pages;
> - locked += atomic_long_read(&mm->pinned_vm);
> lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
> + locked = atomic_long_add_return(nr_pages, &mm->pinned_vm);
> +
> if ((locked > lock_limit) && !capable(CAP_IPC_LOCK)) {
> + atomic_long_sub(nr_pages, &mm->pinned_vm);
> dev_err(scif_info.mdev.this_device,
> "locked(%lu) > lock_limit(%lu)\n",
> locked, lock_limit);
> return -ENOMEM;
> }
> - atomic_long_set(&mm->pinned_vm, locked);
> return 0;
> }
>
> @@ -326,7 +317,7 @@ int scif_destroy_window(struct scif_endpt *ep, struct scif_window *window)
>
> might_sleep();
> if (!window->temp && window->mm) {
> - __scif_dec_pinned_vm_lock(window->mm, window->nr_pages, 0);
> + __scif_dec_pinned_vm_lock(window->mm, window->nr_pages);
> __scif_release_mm(window->mm);
> window->mm = NULL;
> }
> @@ -737,7 +728,7 @@ int scif_unregister_window(struct scif_window *window)
> ep->rma_info.dma_chan);
> } else {
> if (!__scif_dec_pinned_vm_lock(window->mm,
> - window->nr_pages, 1)) {
> + window->nr_pages)) {
> __scif_release_mm(window->mm);
> window->mm = NULL;
> }
> @@ -1385,28 +1376,23 @@ int __scif_pin_pages(void *addr, size_t len, int *out_prot,
> prot |= SCIF_PROT_WRITE;
> retry:
> mm = current->mm;
> - down_write(&mm->mmap_sem);
> if (ulimit) {
> err = __scif_check_inc_pinned_vm(mm, nr_pages);
> if (err) {
> - up_write(&mm->mmap_sem);
> pinned_pages->nr_pages = 0;
> goto error_unmap;
> }
> }
>
> - pinned_pages->nr_pages = get_user_pages(
> + pinned_pages->nr_pages = get_user_pages_fast(
> (u64)addr,
> nr_pages,
> (prot & SCIF_PROT_WRITE) ? FOLL_WRITE : 0,
> - pinned_pages->pages,
> - NULL);
> - up_write(&mm->mmap_sem);
> + pinned_pages->pages);
> if (nr_pages != pinned_pages->nr_pages) {
> if (try_upgrade) {
> if (ulimit)
> - __scif_dec_pinned_vm_lock(mm,
> - nr_pages, 0);
> + __scif_dec_pinned_vm_lock(mm, nr_pages);
> /* Roll back any pinned pages */
> for (i = 0; i < pinned_pages->nr_pages; i++) {
> if (pinned_pages->pages[i])
> @@ -1433,7 +1419,7 @@ int __scif_pin_pages(void *addr, size_t len, int *out_prot,
> return err;
> dec_pinned:
> if (ulimit)
> - __scif_dec_pinned_vm_lock(mm, nr_pages, 0);
> + __scif_dec_pinned_vm_lock(mm, nr_pages);
> /* Something went wrong! Rollback */
> error_unmap:
> pinned_pages->nr_pages = nr_pages;
> --
> 2.16.4
>
next prev parent reply other threads:[~2019-01-15 20:29 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-15 18:12 [PATCH -next 0/6] mm: make pinned_vm atomic and simplify users Davidlohr Bueso
2019-01-15 18:12 ` [PATCH 1/6] mm: make mm->pinned_vm an atomic counter Davidlohr Bueso
2019-01-15 20:28 ` Ira Weiny
2019-01-15 18:12 ` [PATCH 3/6] drivers/IB,qib: do not use mmap_sem Davidlohr Bueso
2019-01-15 20:29 ` Ira Weiny
2019-01-15 18:12 ` [PATCH 4/6] drivers/IB,hfi1: do not se mmap_sem Davidlohr Bueso
2019-01-15 20:29 ` Ira Weiny
2019-01-15 18:12 ` [PATCH 5/6] drivers/IB,usnic: reduce scope of mmap_sem Davidlohr Bueso
2019-01-15 20:30 ` Ira Weiny
2019-01-17 23:41 ` Parvi Kaustubhi (pkaustub)
2019-01-15 18:13 ` [PATCH 6/6] drivers/IB,core: " Davidlohr Bueso
2019-01-15 20:30 ` Ira Weiny
2019-01-15 20:53 ` Jason Gunthorpe
2019-01-15 21:12 ` Matthew Wilcox
2019-01-15 21:17 ` Jason Gunthorpe
2019-01-16 16:00 ` Davidlohr Bueso
2019-01-16 17:02 ` Jason Gunthorpe
2019-01-16 17:06 ` Matthew Wilcox
2019-01-16 17:29 ` Jason Gunthorpe
2019-01-15 18:18 ` [PATCH -next 0/6] mm: make pinned_vm atomic and simplify users Davidlohr Bueso
[not found] ` <20190115181300.27547-3-dave@stgolabs.net>
2019-01-15 20:28 ` Ira Weiny [this message]
2019-01-21 17:42 [PATCH v2 " Davidlohr Bueso
2019-01-21 17:42 ` [PATCH 2/6] mic/scif: do not use mmap_sem Davidlohr Bueso
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=20190115202858.GB4343@iweiny-mobl2.amr.corp.intel.com \
--to=ira.weiny@intel.com \
--cc=akpm@linux-foundation.org \
--cc=ashutosh.dixit@intel.com \
--cc=dave@stgolabs.net \
--cc=dbueso@suse.de \
--cc=dledford@redhat.com \
--cc=jgg@mellanox.com \
--cc=linux-mm@kvack.org \
--cc=linux-rdma@vger.kernel.org \
--cc=sudeep.dutt@intel.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