linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH]fix VM_CAN_NONLINEAR check in sys_remap_file_pages
@ 2007-10-08 11:45 Yan Zheng
  2007-10-08 11:52 ` WANG Cong
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Yan Zheng @ 2007-10-08 11:45 UTC (permalink / raw)
  To: linux-fsdevel, linux-kernel, akpm

Hi all

The test for VM_CAN_NONLINEAR always fails

Signed-off-by: Yan Zheng<yanzheng@21cn.com>
----
diff -ur linux-2.6.23-rc9/mm/fremap.c linux/mm/fremap.c
--- linux-2.6.23-rc9/mm/fremap.c	2007-10-07 15:03:33.000000000 +0800
+++ linux/mm/fremap.c	2007-10-08 19:33:44.000000000 +0800
@@ -160,7 +160,7 @@
 	if (vma->vm_private_data && !(vma->vm_flags & VM_NONLINEAR))
 		goto out;

-	if (!vma->vm_flags & VM_CAN_NONLINEAR)
+	if (!(vma->vm_flags & VM_CAN_NONLINEAR))
 		goto out;

 	if (end <= start || start < vma->vm_start || end > vma->vm_end)

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

end of thread, other threads:[~2007-10-09  1:43 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-08 11:45 [PATCH]fix VM_CAN_NONLINEAR check in sys_remap_file_pages Yan Zheng
2007-10-08 11:52 ` WANG Cong
2007-10-08 13:37 ` Hugh Dickins
2007-10-08  6:47   ` Nick Piggin
2007-10-08 22:50   ` Yan Zheng
2007-10-08 17:04 ` Andrew Morton
2007-10-08  7:02   ` Nick Piggin
2007-10-08 17:28   ` Randy Dunlap
     [not found]     ` <20071008102843.d20b56d7.randy.dunlap-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2007-10-08 17:51       ` Andrew Morton
2007-10-08  7:45         ` Nick Piggin
2007-10-09  1:43         ` Yan Zheng

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).