Home
last modified time | relevance | path

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

/linux-6.15/net/core/
H A Ddev_ioctl.c706 void __user *data, bool *need_copyout) in dev_ioctl() argument
711 if (need_copyout) in dev_ioctl()
712 *need_copyout = true; in dev_ioctl()
824 if (need_copyout) in dev_ioctl()
825 *need_copyout = false; in dev_ioctl()
/linux-6.15/net/
H A Dsocket.c1185 bool need_copyout; in sock_do_ioctl() local
1204 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout); in sock_do_ioctl()
1205 if (!err && need_copyout) in sock_do_ioctl()
1233 bool need_copyout; in sock_ioctl() local
1236 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout); in sock_ioctl()
1237 if (!err && need_copyout) in sock_ioctl()
/linux-6.15/include/linux/
H A Dnetdevice.h4175 void __user *data, bool *need_copyout);