Build scatterlist covering a process' text segment?
From: j.neuschaefer@gmx.net (Jonathan Neuschäfer)
Date: 2011-06-17 18:46:35
From: j.neuschaefer@gmx.net (Jonathan Neuschäfer)
Date: 2011-06-17 18:46:35
On Fri, Jun 17, 2011 at 06:18:06PM +0300, Metin KAYA wrote:
Jonathan, it's kmalloc(), not kcalloc().
No, I was trying to suggest using kcalloc(), which behaves roughly like the userspace calloc, and implements overflow checking, which you may need and zeroing, which you don't seem to need. (see include/linux/slab.h, line 223 for reference)
On 17 Haz 2011, at 18:10, Jonathan Neusch?fer [off-list ref] wrote:quoted
On Fri, Jun 17, 2011 at 02:47:25AM +0200, Arvid Brodin wrote: [...]quoted
/**** User page code ****/ pages = kmalloc(nr_pages * sizeof(*pages), GFP_KERNEL);kcalloc? You don't need the zeroing but the overflow check might be useful.quoted
if (!pages) { retval = -ENOMEM; goto err_pages; }Greetings, Jonathan Neusch?fer
HTH, Jonathan Neusch?fer