Home
last modified time | relevance | path

Searched refs:need_copyout (Results 1 – 3 of 3) sorted by relevance

/linux/net/core/
H A Ddev_ioctl.c689 * @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 Dsocket.c1249 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 Dnetdevice.h4280 void __user *data, bool *need_copyout);