Searched refs:need_copyout (Results 1 – 3 of 3) sorted by relevance
/openbmc/linux/net/core/ |
H A D | dev_ioctl.c | 672 void __user *data, bool *need_copyout) in dev_ioctl() argument 677 if (need_copyout) in dev_ioctl() 678 *need_copyout = true; in dev_ioctl() 788 if (need_copyout) in dev_ioctl() 789 *need_copyout = false; in dev_ioctl()
|
/openbmc/linux/net/ |
H A D | socket.c | 1217 bool need_copyout; in sock_do_ioctl() local 1236 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout); in sock_do_ioctl() 1237 if (!err && need_copyout) in sock_do_ioctl() 1265 bool need_copyout; in sock_ioctl() local 1268 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout); in sock_ioctl() 1269 if (!err && need_copyout) in sock_ioctl()
|
/openbmc/linux/include/linux/ |
H A D | netdevice.h | 3950 void __user *data, bool *need_copyout);
|