Searched refs:need_copyout (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/linux-5.10/net/core/ |
H A D | dev_ioctl.c | 357 * @need_copyout: whether or not copy_to_user() should be called 365 int dev_ioctl(struct net *net, unsigned int cmd, struct ifreq *ifr, bool *need_copyout) in dev_ioctl() argument 370 if (need_copyout) in dev_ioctl() 371 *need_copyout = true; in dev_ioctl() 483 if (need_copyout) in dev_ioctl() 484 *need_copyout = false; in dev_ioctl()
|
/kernel/linux/linux-6.6/net/core/ |
H A D | dev_ioctl.c | 663 * @need_copyout: whether or not copy_to_user() should be called 672 void __user *data, bool *need_copyout) in dev_ioctl() 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() 671 dev_ioctl(struct net *net, unsigned int cmd, struct ifreq *ifr, void __user *data, bool *need_copyout) dev_ioctl() argument
|
/kernel/linux/linux-5.10/net/ |
H A D | socket.c | 1086 bool need_copyout; in sock_do_ioctl() local 1089 err = dev_ioctl(net, cmd, &ifr, &need_copyout); in sock_do_ioctl() 1090 if (!err && need_copyout) in sock_do_ioctl() 1117 bool need_copyout; in sock_ioctl() local 1120 err = dev_ioctl(net, cmd, &ifr, &need_copyout); in sock_ioctl() 1121 if (!err && need_copyout) in sock_ioctl()
|
/kernel/linux/linux-6.6/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()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | netdevice.h | 3910 bool *need_copyout);
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | netdevice.h | 3930 void __user *data, bool *need_copyout);
|
Completed in 26 milliseconds