All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ipipe: Fix get_user_pages usage in __ipipe_pin_vma
@ 2019-04-02 12:47 Jan Kiszka
  2019-04-02 17:20 ` Philippe Gerum
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Kiszka @ 2019-04-02 12:47 UTC (permalink / raw)
  To: Philippe Gerum; +Cc: Xenomai

From: Jan Kiszka <jan.kiszka@siemens.com>

Since 9beae1ea8930, we are supposed to pass down flags, not just 0 or 1.
Luckily, 1 happened to be FOLL_WRITE, so we did the right thing by
chance.

Moreover, get_user_pages is deprecated in favor of its locked/unlocked/
fast variants.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---

Only noticed now that we are accounting for that in 4.4 already, but not
yet in 4.14+.

 mm/mlock.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/mm/mlock.c b/mm/mlock.c
index 392a7567b577..7244eab0bcc3 100644
--- a/mm/mlock.c
+++ b/mm/mlock.c
@@ -868,7 +868,8 @@ void user_shm_unlock(size_t size, struct user_struct *user)
 #ifdef CONFIG_IPIPE
 int __ipipe_pin_vma(struct mm_struct *mm, struct vm_area_struct *vma)
 {
-	int ret, write, len;
+	unsigned int gup_flags = 0;
+	int ret, len;
 
 	if (vma->vm_flags & (VM_IO | VM_PFNMAP))
 		return 0;
@@ -880,9 +881,10 @@ int __ipipe_pin_vma(struct mm_struct *mm, struct vm_area_struct *vma)
 		return ret < 0 ? ret : 0;
 	}
 
-	write = (vma->vm_flags & (VM_WRITE | VM_SHARED)) == VM_WRITE;
+	if ((vma->vm_flags & (VM_WRITE | VM_SHARED)) == VM_WRITE)
+		gup_flags |= FOLL_WRITE;
 	len = DIV_ROUND_UP(vma->vm_end, PAGE_SIZE) - vma->vm_start/PAGE_SIZE;
-	ret = get_user_pages(vma->vm_start, len, write, 0, NULL);
+	ret = get_user_pages_locked(vma->vm_start, len, gup_flags, NULL, NULL);
 	if (ret < 0)
 		return ret;
 	return ret == len ? 0 : -EFAULT;
-- 
2.16.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ipipe: Fix get_user_pages usage in __ipipe_pin_vma
  2019-04-02 12:47 [PATCH] ipipe: Fix get_user_pages usage in __ipipe_pin_vma Jan Kiszka
@ 2019-04-02 17:20 ` Philippe Gerum
  0 siblings, 0 replies; 2+ messages in thread
From: Philippe Gerum @ 2019-04-02 17:20 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: Xenomai

On 4/2/19 2:47 PM, Jan Kiszka wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
> 
> Since 9beae1ea8930, we are supposed to pass down flags, not just 0 or 1.
> Luckily, 1 happened to be FOLL_WRITE, so we did the right thing by
> chance.
> 
> Moreover, get_user_pages is deprecated in favor of its locked/unlocked/
> fast variants.
> 

merged, thanks.

-- 
Philippe.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-04-02 17:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-02 12:47 [PATCH] ipipe: Fix get_user_pages usage in __ipipe_pin_vma Jan Kiszka
2019-04-02 17:20 ` Philippe Gerum

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.