Re: [PATCH net-next 1/2] net: move memcpy_to[from]_msg() from skbuff.h to socket.h

2017-10-16 Thread kbuild test robot
Hi yuan, [auto build test ERROR on net-next/master] url: https://github.com/0day-ci/linux/commits/yuan-linyu/net-add-skb_memcpy_to-from-_msg/20171016-154618 config: xtensa-allyesconfig (attached as .config) compiler: xtensa-linux-gcc (GCC) 4.9.0 reproduce: wget https://raw.githubuser

[PATCH net-next 1/2] net: move memcpy_to[from]_msg() from skbuff.h to socket.h

2017-10-13 Thread yuan linyu
From: yuan linyu these two functions used by skb and other places, move to socket.h where struct msghdr defined. Signed-off-by: yuan linyu --- include/linux/skbuff.h | 10 -- include/linux/socket.h | 12 +++- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/incl