public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* re: sched, numa, mm: Implement constant, per task Working Set Sampling (WSS) rate
@ 2012-10-22 11:55 Dan Carpenter
  2012-10-22 12:43 ` Peter Zijlstra
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2012-10-22 11:55 UTC (permalink / raw)
  To: a.p.zijlstra; +Cc: linux-kernel

Hello Peter Zijlstra,

The patch 3d049f8a5398: "sched, numa, mm: Implement constant, per
task Working Set Sampling (WSS) rate" from Oct 14, 2012, leads to the
following warning:
kernel/sched/fair.c:954 task_numa_work()
	 error: we previously assumed 'vma' could be null (see line 948)

   943          if (!vma) {
   944                  ACCESS_ONCE(mm->numa_scan_seq)++;
   945                  offset = 0;
   946                  vma = mm->mmap;
   947          }
   948          while (vma && !vma_migratable(vma)) {
                       ^^^
If this is NULL,
   949                  vma = vma->vm_next;
   950                  if (!vma)
   951                          goto again;
   952          }
   953  
   954          offset = max(offset, vma->vm_start);
                                     ^^^^^^^^^^^^^
then it leads to a NULL dereference here.

regards,
dan carpenter


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

* re: sched, numa, mm: Implement constant, per task Working Set Sampling (WSS) rate
  2012-10-22 11:55 sched, numa, mm: Implement constant, per task Working Set Sampling (WSS) rate Dan Carpenter
@ 2012-10-22 12:43 ` Peter Zijlstra
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Zijlstra @ 2012-10-22 12:43 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: linux-kernel, mingo

On Mon, 2012-10-22 at 14:55 +0300, Dan Carpenter wrote:
> Hello Peter Zijlstra,
> 
> The patch 3d049f8a5398: "sched, numa, mm: Implement constant, per
> task Working Set Sampling (WSS) rate" from Oct 14, 2012, leads to the
> following warning:
> kernel/sched/fair.c:954 task_numa_work()
> 	 error: we previously assumed 'vma' could be null (see line 948)
> 
>    943          if (!vma) {
>    944                  ACCESS_ONCE(mm->numa_scan_seq)++;
>    945                  offset = 0;
>    946                  vma = mm->mmap;
>    947          }
>    948          while (vma && !vma_migratable(vma)) {
>                        ^^^
> If this is NULL,
>    949                  vma = vma->vm_next;
>    950                  if (!vma)
>    951                          goto again;
>    952          }
>    953  
>    954          offset = max(offset, vma->vm_start);
>                                      ^^^^^^^^^^^^^
> then it leads to a NULL dereference here.

Ah.. indeed so. There's also what looks like an infinite loop in there
if nothing is migratable or if length is stupid large. The below should
avoid the reported NULL deref as well as break out when we've reached
the end of the address space.


---
 kernel/sched/fair.c |   23 ++++++++---------------
 1 files changed, 8 insertions(+), 15 deletions(-)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index c68b877..5a6d8f5 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -939,29 +939,22 @@ void task_numa_work(struct callback_head *work)
 
 	down_read(&mm->mmap_sem);
 	vma = find_vma(mm, offset);
-again:
 	if (!vma) {
 		ACCESS_ONCE(mm->numa_scan_seq)++;
 		offset = 0;
 		vma = mm->mmap;
 	}
-	while (vma && !vma_migratable(vma)) {
-		vma = vma->vm_next;
-		if (!vma)
-			goto again;
-	}
-
-	offset = max(offset, vma->vm_start);
-	end = min(ALIGN(offset + length, HPAGE_SIZE), vma->vm_end);
-	length -= end - offset;
+	for (; vma && length > 0; vma = vma->vm_next) {
+		if (!vma_migratable(vma))
+			continue;
 
-	change_prot_none(vma, offset, end);
+		offset = max(offset, vma->vm_start);
+		end = min(ALIGN(offset + length, HPAGE_SIZE), vma->vm_end);
+		length -= end - offset;
 
-	offset = end;
+		change_prot_none(vma, offset, end);
 
-	if (length > 0) {
-		vma = vma->vm_next;
-		goto again;
+		offset = end;
 	}
 	mm->numa_scan_offset = offset;
 	up_read(&mm->mmap_sem);


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

end of thread, other threads:[~2012-10-22 12:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-22 11:55 sched, numa, mm: Implement constant, per task Working Set Sampling (WSS) rate Dan Carpenter
2012-10-22 12:43 ` Peter Zijlstra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox