Searched refs:need_copyout (Results 1 – 3 of 3) sorted by relevance
| /linux/net/core/ |
| H A D | dev_ioctl.c | 689 * @need_copyout: whether or not copy_to_user() should be called in dev_load() 698 void __user *data, bool *need_copyout) in dev_load() 703 if (need_copyout) 704 *need_copyout = true; 817 if (need_copyout) in dev_ioctl() 818 *need_copyout = false; in dev_ioctl() 725 dev_ioctl(struct net * net,unsigned int cmd,struct ifreq * ifr,void __user * data,bool * need_copyout) dev_ioctl() argument
|
| /linux/net/ |
| H A D | socket.c | 1249 bool need_copyout; in sock_do_ioctl() local 1268 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout); in sock_do_ioctl() 1269 if (!err && need_copyout) in sock_do_ioctl() 1297 bool need_copyout; in sock_ioctl() local 1300 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout); in sock_ioctl() 1301 if (!err && need_copyout) in sock_ioctl()
|
| /linux/include/linux/ |
| H A D | netdevice.h | 4280 void __user *data, bool *need_copyout);
|