diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 2bb7b399031f..51cbd35a5042 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -255,6 +255,10 @@ linux_uselib(struct thread *td, struct linux_uselib_args *args) locked = 0; vp = NULL; + /* + * XXX This code should make use of vn_open(), rather than doing + * all this stuff itself. + */ NDINIT(&ni, LOOKUP, FOLLOW|LOCKLEAF, UIO_USERSPACE, args->library, td); error = namei(&ni); if (error)