Use a void * to carry the private data for return-call'ed ioctl requests.

Amongst other things this avoids a complex workaround in the userland
regression bits.
This commit is contained in:
Poul-Henning Kamp 2003-01-28 09:47:50 +00:00
parent d465fb9589
commit e55d9b0bd1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=109972

View File

@ -262,7 +262,7 @@ struct g_ioctl {
int fflag;
struct thread *td;
d_ioctl_t *func;
dev_t dev;
void *dev;
};
#ifdef _KERNEL