* [PATCH] memdup_user: introduce, fix
@ 2009-03-10 1:47 Li Zefan
2009-03-10 1:53 ` KOSAKI Motohiro
0 siblings, 1 reply; 2+ messages in thread
From: Li Zefan @ 2009-03-10 1:47 UTC (permalink / raw)
To: Andrew Morton
Cc: KOSAKI Motohiro, Americo Wang, Alexey Dobriyan, Arjan van de Ven,
Roland Dreier, LKML, linux-mm
Always use GFP_KERNEL in kmalloc(), since copy_from_user() can sleep and
cause pagefault, thus it's pointless to use GFP_NOFS or GFP_ATOMIC here.
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
Against memdup_user-introduce.patch
---
include/linux/string.h | 2 +-
mm/util.c | 10 +++++++---
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/include/linux/string.h b/include/linux/string.h
index 79f30f3..0863885 100644
--- a/include/linux/string.h
+++ b/include/linux/string.h
@@ -12,7 +12,7 @@
#include <linux/stddef.h> /* for NULL */
extern char *strndup_user(const char __user *, long);
-extern void *memdup_user(const void __user *, size_t, gfp_t);
+extern void *memdup_user(const void __user *, size_t);
/*
* Include machine specific inline routines
diff --git a/mm/util.c b/mm/util.c
index 3d21c21..7c122e4 100644
--- a/mm/util.c
+++ b/mm/util.c
@@ -74,15 +74,19 @@ EXPORT_SYMBOL(kmemdup);
*
* @src: source address in user space
* @len: number of bytes to copy
- * @gfp: GFP mask to use
*
* Returns an ERR_PTR() on failure.
*/
-void *memdup_user(const void __user *src, size_t len, gfp_t gfp)
+void *memdup_user(const void __user *src, size_t len)
{
void *p;
- p = kmalloc_track_caller(len, gfp);
+ /*
+ * Always use GFP_KERNEL, since copy_from_user() can sleep and
+ * cause pagefault, which makes it pointless to use GFP_NOFS
+ * or GFP_ATOMIC.
+ */
+ p = kmalloc_track_caller(len, GFP_KERNEL);
if (!p)
return ERR_PTR(-ENOMEM);
--
1.5.4.rc3
--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] memdup_user: introduce, fix
2009-03-10 1:47 [PATCH] memdup_user: introduce, fix Li Zefan
@ 2009-03-10 1:53 ` KOSAKI Motohiro
0 siblings, 0 replies; 2+ messages in thread
From: KOSAKI Motohiro @ 2009-03-10 1:53 UTC (permalink / raw)
To: Li Zefan
Cc: kosaki.motohiro, Andrew Morton, Americo Wang, Alexey Dobriyan,
Arjan van de Ven, Roland Dreier, LKML, linux-mm
> * Include machine specific inline routines
> diff --git a/mm/util.c b/mm/util.c
> index 3d21c21..7c122e4 100644
> --- a/mm/util.c
> +++ b/mm/util.c
> @@ -74,15 +74,19 @@ EXPORT_SYMBOL(kmemdup);
> *
> * @src: source address in user space
> * @len: number of bytes to copy
> - * @gfp: GFP mask to use
> *
> * Returns an ERR_PTR() on failure.
> */
> -void *memdup_user(const void __user *src, size_t len, gfp_t gfp)
> +void *memdup_user(const void __user *src, size_t len)
> {
> void *p;
>
> - p = kmalloc_track_caller(len, gfp);
> + /*
> + * Always use GFP_KERNEL, since copy_from_user() can sleep and
> + * cause pagefault, which makes it pointless to use GFP_NOFS
> + * or GFP_ATOMIC.
> + */
> + p = kmalloc_track_caller(len, GFP_KERNEL);
> if (!p)
> return ERR_PTR(-ENOMEM);
ok. thanks.
Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-03-10 1:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-10 1:47 [PATCH] memdup_user: introduce, fix Li Zefan
2009-03-10 1:53 ` KOSAKI Motohiro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox