[PATCH 01/11] net: change len parameter type for memcpy_[to|from]_msg

2015-10-23 Thread LABBE Corentin
The len parameter is only used with copy_from_iter() who wait for a size_t and then compared to return type of copy_from_iter() which is size_t also. So len must be set as size_t Signed-off-by: LABBE Corentin --- include/linux/skbuff.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

[PATCH 01/11] net: change len parameter type for memcpy_[to|from]_msg

2015-10-23 Thread LABBE Corentin
The len parameter is only used with copy_from_iter() who wait for a size_t and then compared to return type of copy_from_iter() which is size_t also. So len must be set as size_t Signed-off-by: LABBE Corentin --- include/linux/skbuff.h | 4 ++-- 1 file changed, 2