Re: [RFC] [PATCH 2.6.37-rc5-tip 14/20] 14: uprobes: Handing int3 and singlestep exception.
From: Srikar Dronamraju <hidden>
Date: 2011-01-26 15:24:53
Also in:
lkml
* Peter Zijlstra [off-list ref] [2011-01-26 11:17:11]:
On Wed, 2011-01-26 at 14:22 +0530, Srikar Dronamraju wrote:quoted
* Peter Zijlstra [off-list ref] [2011-01-25 14:56:19]:quoted
On Thu, 2010-12-16 at 15:29 +0530, Srikar Dronamraju wrote:quoted
+ down_read(&mm->mmap_sem); + for (vma = mm->mmap; vma; vma = vma->vm_next) { + if (!valid_vma(vma)) + continue; + if (probept < vma->vm_start || probept > vma->vm_end) + continue; + u = find_uprobe(vma->vm_file->f_mapping->host, + probept - vma->vm_start); + if (u) + break; + } + up_read(&mm->mmap_sem);One has to ask, what's wrong with find_vma() ?Are you looking for something like this. down_read(&mm->mmap_sem); for (vma = find_vma(mm, probept); ; vma = vma->vm_next) { if (!valid_vma(vma)) continue; u = find_uprobe(vma->vm_file->f_mapping->host, probept - vma->vm_start); if (u) break; } up_read(&mm->mmap_sem);How could you ever need to iterate here? There is only a single vma that covers the probe point, if that doesn't find a uprobe, there isn't any.
Agree.
So it simplifies to
down_read(&mm->mmap_sem);
vma = find_vma(mm, probept);
if (valid_vma(vma)) {
u = find_uprobe(vma->vm_file->f_mapping->host,
probept - vma->vm_start);
}
up_read(&mm->mmap_sem);
--
Thanks and Regards
Srikar
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom policy in Canada: sign http://dissolvethecrtc.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>