linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs/userfaultfd.c: simplify the calculation of new_flags
@ 2019-08-06  5:38 Wei Yang
  2019-09-12  2:54 ` Wei Yang
  2019-10-03  0:45 ` Andrea Arcangeli
  0 siblings, 2 replies; 7+ messages in thread
From: Wei Yang @ 2019-08-06  5:38 UTC (permalink / raw)
  To: linux-kernel; +Cc: viro, linux-fsdevel, Wei Yang

Finally new_flags equals old vm_flags *OR* vm_flags.

It is not necessary to mask them first.

Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
---
 fs/userfaultfd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/userfaultfd.c b/fs/userfaultfd.c
index ccbdbd62f0d8..653d8f7c453c 100644
--- a/fs/userfaultfd.c
+++ b/fs/userfaultfd.c
@@ -1457,7 +1457,7 @@ static int userfaultfd_register(struct userfaultfd_ctx *ctx,
 			start = vma->vm_start;
 		vma_end = min(end, vma->vm_end);
 
-		new_flags = (vma->vm_flags & ~vm_flags) | vm_flags;
+		new_flags = vma->vm_flags | vm_flags;
 		prev = vma_merge(mm, prev, start, vma_end, new_flags,
 				 vma->anon_vma, vma->vm_file, vma->vm_pgoff,
 				 vma_policy(vma),
-- 
2.17.1


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

end of thread, other threads:[~2019-10-09  3:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-06  5:38 [PATCH] fs/userfaultfd.c: simplify the calculation of new_flags Wei Yang
2019-09-12  2:54 ` Wei Yang
2019-10-03  0:45 ` Andrea Arcangeli
2019-10-04 22:46   ` Wei Yang
2019-10-04 23:28     ` Andrea Arcangeli
2019-10-04 23:38       ` Wei Yang
2019-10-09  3:51       ` Peter Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).