Fix a few oversights from the renaming of dup3110 to dup3100

This commit is contained in:
martin 2024-05-20 09:37:34 +00:00
parent 545ba1d7ca
commit 85cbce96d9
2 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: sys_descrip_100.c,v 1.1 2024/05/20 01:30:34 christos Exp $ */
/* $NetBSD: sys_descrip_100.c,v 1.2 2024/05/20 09:37:34 martin Exp $ */
/*-
* Copyright (c) 2024 The NetBSD Foundation, Inc.
@ -26,7 +26,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sys_descrip_100.c,v 1.1 2024/05/20 01:30:34 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: sys_descrip_100.c,v 1.2 2024/05/20 09:37:34 martin Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@ -40,28 +40,28 @@ __KERNEL_RCSID(0, "$NetBSD: sys_descrip_100.c,v 1.1 2024/05/20 01:30:34 christos
#include <compat/common/compat_mod.h>
static const struct syscall_package sys_descrip_110_syscalls[] = {
{ SYS_compat_110_dup3, 0,
(sy_call_t *)compat_110_sys_dup3 },
static const struct syscall_package sys_descrip_100_syscalls[] = {
{ SYS_compat_100_dup3, 0,
(sy_call_t *)compat_100_sys_dup3 },
{ 0, 0, NULL },
};
int
sys_descrip_110_init(void)
sys_descrip_100_init(void)
{
return syscall_establish(NULL, sys_descrip_110_syscalls);
return syscall_establish(NULL, sys_descrip_100_syscalls);
}
int
sys_descrip_110_fini(void)
sys_descrip_100_fini(void)
{
return syscall_disestablish(NULL, sys_descrip_110_syscalls);
return syscall_disestablish(NULL, sys_descrip_100_syscalls);
}
int
compat_110_sys_dup3(struct lwp *l, const struct compat_110_sys_dup3_args *uap,
compat_100_sys_dup3(struct lwp *l, const struct compat_100_sys_dup3_args *uap,
register_t *retval)
{
/* {

View File

@ -1,4 +1,4 @@
/* $NetBSD: sys_descrip.c,v 1.50 2024/05/19 22:25:48 christos Exp $ */
/* $NetBSD: sys_descrip.c,v 1.51 2024/05/20 09:37:34 martin Exp $ */
/*-
* Copyright (c) 2008, 2020 The NetBSD Foundation, Inc.
@ -67,7 +67,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sys_descrip.c,v 1.50 2024/05/19 22:25:48 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: sys_descrip.c,v 1.51 2024/05/20 09:37:34 martin Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -149,7 +149,7 @@ dodup(struct lwp *l, int from, int to, int flags, register_t *retval)
}
int
sys___dup3110(struct lwp *l, const struct sys___dup3110_args *uap, register_t *retval)
sys___dup3100(struct lwp *l, const struct sys___dup3100_args *uap, register_t *retval)
{
/* {
syscallarg(int) from;