Searched hist:"16 dff91804777efbb0ce18b0a7e54c55e86b7beb" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/net/can/ |
H A D | raw.c | diff 16dff91804777efbb0ce18b0a7e54c55e86b7beb Fri May 21 17:18:34 CDT 2010 Julia Lawall <julia@diku.dk> net/can: Use memdup_user
Use memdup_user when user data is immediately copied into the allocated region.
The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/)
// <smpl> @@ expression from,to,size,flag; position p; identifier l1,l2; @@
- to = \(kmalloc@p\|kzalloc@p\)(size,flag); + to = memdup_user(from,size); if ( - to==NULL + IS_ERR(to) || ...) { <+... when != goto l1; - -ENOMEM + PTR_ERR(to) ...+> } - if (copy_from_user(to, from, size) != 0) { - <+... when != goto l2; - -EFAULT - ...+> - } // </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: David S. Miller <davem@davemloft.net>
|