2019-03-04 19:48:20

by John Hubbard

[permalink] [raw]
Subject: [PATCH v3 0/1] RDMA/umem: minor bug fix in error handling path

From: John Hubbard <[email protected]>

Hi,

Ira Weiny alerted me to a couple of places where I'd missed a change from
put_page() to put_user_page(), in my pending patchsets. But when I
attempted to dive more deeply into that code, I ran into a bug in the
cleanup code. Leon Romanovsky has confirmed that and requested this
simplified patch to fix it, so here it is.

Changes since v2:

1) Removed the part of the patch that tried to delete "dead code",
because that code was dealing with huge pages.

2) Reverted the pr_*() line shortening, so as to keep this to only
the minimal bug fix required.

3) Rebased to today's linux.git.

Cc: Leon Romanovsky <[email protected]>
Cc: Ira Weiny <[email protected]>
Cc: Jason Gunthorpe <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Doug Ledford <[email protected]>
Cc: [email protected]
Cc: [email protected]

John Hubbard (1):
RDMA/umem: minor bug fix in error handling path

drivers/infiniband/core/umem_odp.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

--
2.21.0



2019-03-04 19:47:43

by John Hubbard

[permalink] [raw]
Subject: [PATCH v3] RDMA/umem: minor bug fix in error handling path

From: John Hubbard <[email protected]>

1. Bug fix: fix an off by one error in the code that
cleans up if it fails to dma-map a page, after having
done a get_user_pages_remote() on a range of pages.

2. Refinement: for that same cleanup code, release_pages()
is better than put_page() in a loop.

Cc: Leon Romanovsky <[email protected]>
Cc: Ira Weiny <[email protected]>
Cc: Jason Gunthorpe <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Doug Ledford <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: John Hubbard <[email protected]>
---
drivers/infiniband/core/umem_odp.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/drivers/infiniband/core/umem_odp.c b/drivers/infiniband/core/umem_odp.c
index acb882f279cb..d45735b02e07 100644
--- a/drivers/infiniband/core/umem_odp.c
+++ b/drivers/infiniband/core/umem_odp.c
@@ -40,6 +40,7 @@
#include <linux/vmalloc.h>
#include <linux/hugetlb.h>
#include <linux/interval_tree_generic.h>
+#include <linux/pagemap.h>

#include <rdma/ib_verbs.h>
#include <rdma/ib_umem.h>
@@ -684,9 +685,11 @@ int ib_umem_odp_map_dma_pages(struct ib_umem_odp *umem_odp, u64 user_virt,
mutex_unlock(&umem_odp->umem_mutex);

if (ret < 0) {
- /* Release left over pages when handling errors. */
- for (++j; j < npages; ++j)
- put_page(local_page_list[j]);
+ /*
+ * Release pages, starting at the the first page
+ * that experienced an error.
+ */
+ release_pages(&local_page_list[j], npages - j);
break;
}
}
--
2.21.0


2019-03-04 19:55:45

by Leon Romanovsky

[permalink] [raw]
Subject: Re: [PATCH v3] RDMA/umem: minor bug fix in error handling path

On Mon, Mar 04, 2019 at 11:46:45AM -0800, [email protected] wrote:
> From: John Hubbard <[email protected]>
>
> 1. Bug fix: fix an off by one error in the code that
> cleans up if it fails to dma-map a page, after having
> done a get_user_pages_remote() on a range of pages.
>
> 2. Refinement: for that same cleanup code, release_pages()
> is better than put_page() in a loop.
>
> Cc: Leon Romanovsky <[email protected]>
> Cc: Ira Weiny <[email protected]>
> Cc: Jason Gunthorpe <[email protected]>
> Cc: Andrew Morton <[email protected]>
> Cc: Doug Ledford <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> Signed-off-by: John Hubbard <[email protected]>
> ---
> drivers/infiniband/core/umem_odp.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>

Thanks,
Acked-by: Leon Romanovsky <[email protected]>


Attachments:
(No filename) (893.00 B)
signature.asc (817.00 B)
Download all attachments

2019-03-04 19:59:34

by Ira Weiny

[permalink] [raw]
Subject: Re: [PATCH v3] RDMA/umem: minor bug fix in error handling path

On Mon, Mar 04, 2019 at 11:46:45AM -0800, [email protected] wrote:
> From: John Hubbard <[email protected]>
>
> 1. Bug fix: fix an off by one error in the code that
> cleans up if it fails to dma-map a page, after having
> done a get_user_pages_remote() on a range of pages.
>
> 2. Refinement: for that same cleanup code, release_pages()
> is better than put_page() in a loop.
>
> Cc: Leon Romanovsky <[email protected]>
> Cc: Ira Weiny <[email protected]>
> Cc: Jason Gunthorpe <[email protected]>
> Cc: Andrew Morton <[email protected]>
> Cc: Doug Ledford <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> Signed-off-by: John Hubbard <[email protected]>

Signed-off-by: Ira Weiny <[email protected]>

> ---
> drivers/infiniband/core/umem_odp.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/infiniband/core/umem_odp.c b/drivers/infiniband/core/umem_odp.c
> index acb882f279cb..d45735b02e07 100644
> --- a/drivers/infiniband/core/umem_odp.c
> +++ b/drivers/infiniband/core/umem_odp.c
> @@ -40,6 +40,7 @@
> #include <linux/vmalloc.h>
> #include <linux/hugetlb.h>
> #include <linux/interval_tree_generic.h>
> +#include <linux/pagemap.h>
>
> #include <rdma/ib_verbs.h>
> #include <rdma/ib_umem.h>
> @@ -684,9 +685,11 @@ int ib_umem_odp_map_dma_pages(struct ib_umem_odp *umem_odp, u64 user_virt,
> mutex_unlock(&umem_odp->umem_mutex);
>
> if (ret < 0) {
> - /* Release left over pages when handling errors. */
> - for (++j; j < npages; ++j)
> - put_page(local_page_list[j]);
> + /*
> + * Release pages, starting at the the first page
> + * that experienced an error.
> + */
> + release_pages(&local_page_list[j], npages - j);
> break;
> }
> }
> --
> 2.21.0
>

2019-03-04 20:02:09

by Ira Weiny

[permalink] [raw]
Subject: Re: [PATCH v3] RDMA/umem: minor bug fix in error handling path

On Mon, Mar 04, 2019 at 11:46:45AM -0800, [email protected] wrote:
> From: John Hubbard <[email protected]>
>
> 1. Bug fix: fix an off by one error in the code that
> cleans up if it fails to dma-map a page, after having
> done a get_user_pages_remote() on a range of pages.
>
> 2. Refinement: for that same cleanup code, release_pages()
> is better than put_page() in a loop.
>
> Cc: Leon Romanovsky <[email protected]>
> Cc: Ira Weiny <[email protected]>
> Cc: Jason Gunthorpe <[email protected]>
> Cc: Andrew Morton <[email protected]>
> Cc: Doug Ledford <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> Signed-off-by: John Hubbard <[email protected]>

I meant...

Reviewed-by: Ira Weiny <[email protected]>

<sigh> just a bit too quick on the keyboard before lunch... ;-)

Ira


> ---
> drivers/infiniband/core/umem_odp.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/infiniband/core/umem_odp.c b/drivers/infiniband/core/umem_odp.c
> index acb882f279cb..d45735b02e07 100644
> --- a/drivers/infiniband/core/umem_odp.c
> +++ b/drivers/infiniband/core/umem_odp.c
> @@ -40,6 +40,7 @@
> #include <linux/vmalloc.h>
> #include <linux/hugetlb.h>
> #include <linux/interval_tree_generic.h>
> +#include <linux/pagemap.h>
>
> #include <rdma/ib_verbs.h>
> #include <rdma/ib_umem.h>
> @@ -684,9 +685,11 @@ int ib_umem_odp_map_dma_pages(struct ib_umem_odp *umem_odp, u64 user_virt,
> mutex_unlock(&umem_odp->umem_mutex);
>
> if (ret < 0) {
> - /* Release left over pages when handling errors. */
> - for (++j; j < npages; ++j)
> - put_page(local_page_list[j]);
> + /*
> + * Release pages, starting at the the first page
> + * that experienced an error.
> + */
> + release_pages(&local_page_list[j], npages - j);
> break;
> }
> }
> --
> 2.21.0
>

2019-03-04 20:32:58

by Jason Gunthorpe

[permalink] [raw]
Subject: Re: [PATCH v3] RDMA/umem: minor bug fix in error handling path

On Mon, Mar 04, 2019 at 11:46:45AM -0800, [email protected] wrote:
> From: John Hubbard <[email protected]>
>
> 1. Bug fix: fix an off by one error in the code that
> cleans up if it fails to dma-map a page, after having
> done a get_user_pages_remote() on a range of pages.
>
> 2. Refinement: for that same cleanup code, release_pages()
> is better than put_page() in a loop.
>
> Cc: Leon Romanovsky <[email protected]>
> Cc: Ira Weiny <[email protected]>
> Cc: Jason Gunthorpe <[email protected]>
> Cc: Andrew Morton <[email protected]>
> Cc: Doug Ledford <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> Signed-off-by: John Hubbard <[email protected]>
> Signed-off-by: Ira Weiny <[email protected]>
> Reviewed-by: Ira Weiny <[email protected]>
> Acked-by: Leon Romanovsky <[email protected]>
> ---
> drivers/infiniband/core/umem_odp.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)

Applied to for-next, thanks

Jason

2019-03-05 15:53:56

by Yuval Shaia

[permalink] [raw]
Subject: Re: [PATCH v3] RDMA/umem: minor bug fix in error handling path

On Mon, Mar 04, 2019 at 03:58:15AM -0800, Ira Weiny wrote:
> On Mon, Mar 04, 2019 at 11:46:45AM -0800, [email protected] wrote:
> > From: John Hubbard <[email protected]>
> >
> > 1. Bug fix: fix an off by one error in the code that
> > cleans up if it fails to dma-map a page, after having
> > done a get_user_pages_remote() on a range of pages.
> >
> > 2. Refinement: for that same cleanup code, release_pages()
> > is better than put_page() in a loop.
> >
> > Cc: Leon Romanovsky <[email protected]>
> > Cc: Ira Weiny <[email protected]>
> > Cc: Jason Gunthorpe <[email protected]>
> > Cc: Andrew Morton <[email protected]>
> > Cc: Doug Ledford <[email protected]>
> > Cc: [email protected]
> > Cc: [email protected]
> > Signed-off-by: John Hubbard <[email protected]>
>
> I meant...
>
> Reviewed-by: Ira Weiny <[email protected]>
>
> <sigh> just a bit too quick on the keyboard before lunch... ;-)
>
> Ira

I have this mapping in vimrc so i just have to do shift+!

map ! o
Reviewed-by: Yuval Shaia <[email protected]>


>
>
> > ---
> > drivers/infiniband/core/umem_odp.c | 9 ++++++---
> > 1 file changed, 6 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/infiniband/core/umem_odp.c b/drivers/infiniband/core/umem_odp.c
> > index acb882f279cb..d45735b02e07 100644
> > --- a/drivers/infiniband/core/umem_odp.c
> > +++ b/drivers/infiniband/core/umem_odp.c
> > @@ -40,6 +40,7 @@
> > #include <linux/vmalloc.h>
> > #include <linux/hugetlb.h>
> > #include <linux/interval_tree_generic.h>
> > +#include <linux/pagemap.h>
> >
> > #include <rdma/ib_verbs.h>
> > #include <rdma/ib_umem.h>
> > @@ -684,9 +685,11 @@ int ib_umem_odp_map_dma_pages(struct ib_umem_odp *umem_odp, u64 user_virt,
> > mutex_unlock(&umem_odp->umem_mutex);
> >
> > if (ret < 0) {
> > - /* Release left over pages when handling errors. */
> > - for (++j; j < npages; ++j)
> > - put_page(local_page_list[j]);
> > + /*
> > + * Release pages, starting at the the first page
> > + * that experienced an error.
> > + */
> > + release_pages(&local_page_list[j], npages - j);
> > break;
> > }
> > }
> > --
> > 2.21.0
> >

2019-03-05 17:40:51

by Leon Romanovsky

[permalink] [raw]
Subject: Re: [PATCH v3] RDMA/umem: minor bug fix in error handling path

On Tue, Mar 05, 2019 at 05:04:06PM +0200, Yuval Shaia wrote:
> On Mon, Mar 04, 2019 at 03:58:15AM -0800, Ira Weiny wrote:
> > On Mon, Mar 04, 2019 at 11:46:45AM -0800, [email protected] wrote:
> > > From: John Hubbard <[email protected]>
> > >
> > > 1. Bug fix: fix an off by one error in the code that
> > > cleans up if it fails to dma-map a page, after having
> > > done a get_user_pages_remote() on a range of pages.
> > >
> > > 2. Refinement: for that same cleanup code, release_pages()
> > > is better than put_page() in a loop.
> > >
> > > Cc: Leon Romanovsky <[email protected]>
> > > Cc: Ira Weiny <[email protected]>
> > > Cc: Jason Gunthorpe <[email protected]>
> > > Cc: Andrew Morton <[email protected]>
> > > Cc: Doug Ledford <[email protected]>
> > > Cc: [email protected]
> > > Cc: [email protected]
> > > Signed-off-by: John Hubbard <[email protected]>
> >
> > I meant...
> >
> > Reviewed-by: Ira Weiny <[email protected]>
> >
> > <sigh> just a bit too quick on the keyboard before lunch... ;-)
> >
> > Ira
>
> I have this mapping in vimrc so i just have to do shift+!
>
> map ! o
Reviewed-by: Yuval Shaia <[email protected]>


I have something similar, but limited to responses through mail client only
and mapped to "rt" key combination.

in my .vimrc:

augroup filetypedetect
" Mail
autocmd BufRead,BufNewFile *mutt-* setfiletype mail
" Add Reviewed-by tag and delete rest of the email
function! RBtag()
r~/.vim/mutt/rb-tag.txt
endfunction
nmap rt :call RBtag()<CR>2j<CR>dG<CR>
augroup END

Thanks


Attachments:
(No filename) (1.57 kB)
signature.asc (817.00 B)
Download all attachments