Fri Dec 1 22:14:52 2017 UTC ()
Unbreak Linux emulation by default. While not loading it automatically
is somewhat sensible, breaking functionality of GENERIC is not and has
been objected to on a regular base.


(joerg)
diff -r1.7 -r1.8 src/sys/compat/linux/common/linux_mod.c
diff -r1.8 -r1.9 src/sys/compat/linux32/common/linux32_mod.c

cvs diff -r1.7 -r1.8 src/sys/compat/linux/common/linux_mod.c (switch to unified diff)

--- src/sys/compat/linux/common/linux_mod.c 2017/09/29 17:08:00 1.7
+++ src/sys/compat/linux/common/linux_mod.c 2017/12/01 22:14:52 1.8
@@ -1,177 +1,177 @@ @@ -1,177 +1,177 @@
1/* $NetBSD: linux_mod.c,v 1.7 2017/09/29 17:08:00 maxv Exp $ */ 1/* $NetBSD: linux_mod.c,v 1.8 2017/12/01 22:14:52 joerg Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2008 The NetBSD Foundation, Inc. 4 * Copyright (c) 2008 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software developed for The NetBSD Foundation 7 * This code is derived from software developed for The NetBSD Foundation
8 * by Andrew Doran. 8 * by Andrew Doran.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the 16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * 18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#include <sys/cdefs.h> 32#include <sys/cdefs.h>
33__KERNEL_RCSID(0, "$NetBSD: linux_mod.c,v 1.7 2017/09/29 17:08:00 maxv Exp $"); 33__KERNEL_RCSID(0, "$NetBSD: linux_mod.c,v 1.8 2017/12/01 22:14:52 joerg Exp $");
34 34
35#ifdef _KERNEL_OPT 35#ifdef _KERNEL_OPT
36#include "opt_execfmt.h" 36#include "opt_execfmt.h"
37#endif 37#endif
38 38
39#ifndef ELFSIZE 39#ifndef ELFSIZE
40#define ELFSIZE ARCH_ELFSIZE 40#define ELFSIZE ARCH_ELFSIZE
41#endif 41#endif
42 42
43#include <sys/param.h> 43#include <sys/param.h>
44#include <sys/module.h> 44#include <sys/module.h>
45#include <sys/exec.h> 45#include <sys/exec.h>
46#include <sys/signalvar.h> 46#include <sys/signalvar.h>
47#include <sys/sysctl.h> 47#include <sys/sysctl.h>
48 48
49#include <compat/linux/common/linux_sysctl.h> 49#include <compat/linux/common/linux_sysctl.h>
50#include <compat/linux/common/linux_futex.h> 50#include <compat/linux/common/linux_futex.h>
51#include <compat/linux/common/linux_exec.h> 51#include <compat/linux/common/linux_exec.h>
52 52
53#if defined(EXEC_ELF32) && ELFSIZE == 32 53#if defined(EXEC_ELF32) && ELFSIZE == 32
54# define MD1 ",exec_elf32" 54# define MD1 ",exec_elf32"
55#else 55#else
56# define MD1 "" 56# define MD1 ""
57#endif 57#endif
58#if defined(EXEC_ELF64) 58#if defined(EXEC_ELF64)
59# define MD2 ",exec_elf64" 59# define MD2 ",exec_elf64"
60#else 60#else
61# define MD2 "" 61# define MD2 ""
62#endif 62#endif
63#if defined(EXEC_AOUT) 63#if defined(EXEC_AOUT)
64# define MD3 ",exec_aout" 64# define MD3 ",exec_aout"
65#else 65#else
66# define MD3 "" 66# define MD3 ""
67#endif 67#endif
68 68
69MODULE(MODULE_CLASS_EXEC, compat_linux, "compat,compat_ossaudio,sysv_ipc" 69MODULE(MODULE_CLASS_EXEC, compat_linux, "compat,compat_ossaudio,sysv_ipc"
70 MD1 MD2 MD3); 70 MD1 MD2 MD3);
71 71
72static struct execsw linux_execsw[] = { 72static struct execsw linux_execsw[] = {
73#if defined(EXEC_ELF32) && ELFSIZE == 32 73#if defined(EXEC_ELF32) && ELFSIZE == 32
74 { 74 {
75 .es_hdrsz = sizeof (Elf32_Ehdr), 75 .es_hdrsz = sizeof (Elf32_Ehdr),
76 .es_makecmds = exec_elf32_makecmds, 76 .es_makecmds = exec_elf32_makecmds,
77 .u = { 77 .u = {
78 .elf_probe_func = linux_elf32_probe, 78 .elf_probe_func = linux_elf32_probe,
79 }, 79 },
80 .es_emul = &emul_linux, 80 .es_emul = &emul_linux,
81 .es_prio = EXECSW_PRIO_ANY, 81 .es_prio = EXECSW_PRIO_ANY,
82 .es_arglen = LINUX_ELF_AUX_ARGSIZ, 82 .es_arglen = LINUX_ELF_AUX_ARGSIZ,
83 .es_copyargs = linux_elf32_copyargs, 83 .es_copyargs = linux_elf32_copyargs,
84 .es_setregs = NULL, 84 .es_setregs = NULL,
85 .es_coredump = coredump_elf32, 85 .es_coredump = coredump_elf32,
86 .es_setup_stack = linux_exec_setup_stack, 86 .es_setup_stack = linux_exec_setup_stack,
87 }, 87 },
88#elif defined(EXEC_ELF64) 88#elif defined(EXEC_ELF64)
89 { 89 {
90 .es_hdrsz = sizeof (Elf64_Ehdr), 90 .es_hdrsz = sizeof (Elf64_Ehdr),
91 .es_makecmds = exec_elf64_makecmds, 91 .es_makecmds = exec_elf64_makecmds,
92 .u = { 92 .u = {
93 .elf_probe_func = linux_elf64_probe, 93 .elf_probe_func = linux_elf64_probe,
94 }, 94 },
95 .es_emul = &emul_linux, 95 .es_emul = &emul_linux,
96 .es_prio = EXECSW_PRIO_ANY, 96 .es_prio = EXECSW_PRIO_ANY,
97 .es_arglen = LINUX_ELF_AUX_ARGSIZ, 97 .es_arglen = LINUX_ELF_AUX_ARGSIZ,
98 .es_copyargs = linux_elf64_copyargs, 98 .es_copyargs = linux_elf64_copyargs,
99 .es_setregs = NULL, 99 .es_setregs = NULL,
100 .es_coredump = coredump_elf64, 100 .es_coredump = coredump_elf64,
101 .es_setup_stack = linux_exec_setup_stack, 101 .es_setup_stack = linux_exec_setup_stack,
102 }, 102 },
103#endif 103#endif
104#ifdef EXEC_AOUT 104#ifdef EXEC_AOUT
105 { 105 {
106 .es_hdrsz = LINUX_AOUT_HDR_SIZE, 106 .es_hdrsz = LINUX_AOUT_HDR_SIZE,
107 .es_makecmds = exec_linux_aout_makecmds, 107 .es_makecmds = exec_linux_aout_makecmds,
108 .u = { 108 .u = {
109 .elf_probe_func = NULL, 109 .elf_probe_func = NULL,
110 }, 110 },
111 .es_emul = &emul_linux, 111 .es_emul = &emul_linux,
112 .es_prio = EXECSW_PRIO_LAST, 112 .es_prio = EXECSW_PRIO_LAST,
113 .es_arglen = LINUX_AOUT_AUX_ARGSIZ, 113 .es_arglen = LINUX_AOUT_AUX_ARGSIZ,
114 .es_copyargs = linux_aout_copyargs, 114 .es_copyargs = linux_aout_copyargs,
115 .es_setregs = NULL, 115 .es_setregs = NULL,
116 .es_coredump = coredump_netbsd, 116 .es_coredump = coredump_netbsd,
117 .es_setup_stack = linux_exec_setup_stack, 117 .es_setup_stack = linux_exec_setup_stack,
118 }, 118 },
119#endif 119#endif
120}; 120};
121 121
122int linux_enabled = 0; 122int linux_enabled = 1;
123 123
124int 124int
125linux_sysctl_enable(SYSCTLFN_ARGS) 125linux_sysctl_enable(SYSCTLFN_ARGS)
126{ 126{
127 struct sysctlnode node; 127 struct sysctlnode node;
128 int error, val; 128 int error, val;
129 129
130 val = *(int *)rnode->sysctl_data; 130 val = *(int *)rnode->sysctl_data;
131 131
132 node = *rnode; 132 node = *rnode;
133 node.sysctl_data = &val; 133 node.sysctl_data = &val;
134 134
135 error = sysctl_lookup(SYSCTLFN_CALL(&node)); 135 error = sysctl_lookup(SYSCTLFN_CALL(&node));
136 if (error != 0 || newp == NULL) 136 if (error != 0 || newp == NULL)
137 return error; 137 return error;
138 138
139 if (val == 1) { 139 if (val == 1) {
140 error = exec_add(linux_execsw, __arraycount(linux_execsw)); 140 error = exec_add(linux_execsw, __arraycount(linux_execsw));
141 } else if (val == 0) { 141 } else if (val == 0) {
142 error = exec_remove(linux_execsw, __arraycount(linux_execsw)); 142 error = exec_remove(linux_execsw, __arraycount(linux_execsw));
143 } else { 143 } else {
144 error = EINVAL; 144 error = EINVAL;
145 } 145 }
146 if (error) 146 if (error)
147 return error; 147 return error;
148 148
149 *(int *)rnode->sysctl_data = val; 149 *(int *)rnode->sysctl_data = val;
150 150
151 return 0; 151 return 0;
152} 152}
153 153
154static int 154static int
155compat_linux_modcmd(modcmd_t cmd, void *arg) 155compat_linux_modcmd(modcmd_t cmd, void *arg)
156{ 156{
157 int error; 157 int error;
158 158
159 switch (cmd) { 159 switch (cmd) {
160 case MODULE_CMD_INIT: 160 case MODULE_CMD_INIT:
161 linux_enabled = 0; 161 linux_enabled = 0;
162 linux_futex_init(); 162 linux_futex_init();
163 linux_sysctl_init(); 163 linux_sysctl_init();
164 return 0; 164 return 0;
165 165
166 case MODULE_CMD_FINI: 166 case MODULE_CMD_FINI:
167 error = exec_remove(linux_execsw, __arraycount(linux_execsw)); 167 error = exec_remove(linux_execsw, __arraycount(linux_execsw));
168 if (error) 168 if (error)
169 return error; 169 return error;
170 linux_sysctl_fini(); 170 linux_sysctl_fini();
171 linux_futex_fini(); 171 linux_futex_fini();
172 return 0; 172 return 0;
173 173
174 default: 174 default:
175 return ENOTTY; 175 return ENOTTY;
176 } 176 }
177} 177}

cvs diff -r1.8 -r1.9 src/sys/compat/linux32/common/linux32_mod.c (switch to unified diff)

--- src/sys/compat/linux32/common/linux32_mod.c 2017/09/29 17:47:29 1.8
+++ src/sys/compat/linux32/common/linux32_mod.c 2017/12/01 22:14:52 1.9
@@ -1,134 +1,134 @@ @@ -1,134 +1,134 @@
1/* $NetBSD: linux32_mod.c,v 1.8 2017/09/29 17:47:29 maxv Exp $ */ 1/* $NetBSD: linux32_mod.c,v 1.9 2017/12/01 22:14:52 joerg Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2008 The NetBSD Foundation, Inc. 4 * Copyright (c) 2008 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software developed for The NetBSD Foundation 7 * This code is derived from software developed for The NetBSD Foundation
8 * by Andrew Doran. 8 * by Andrew Doran.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the 16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * 18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#include <sys/cdefs.h> 32#include <sys/cdefs.h>
33__KERNEL_RCSID(0, "$NetBSD: linux32_mod.c,v 1.8 2017/09/29 17:47:29 maxv Exp $"); 33__KERNEL_RCSID(0, "$NetBSD: linux32_mod.c,v 1.9 2017/12/01 22:14:52 joerg Exp $");
34 34
35#ifdef _KERNEL_OPT 35#ifdef _KERNEL_OPT
36#include "opt_execfmt.h" 36#include "opt_execfmt.h"
37#endif 37#endif
38 38
39#ifndef ELFSIZE 39#ifndef ELFSIZE
40#define ELFSIZE ARCH_ELFSIZE 40#define ELFSIZE ARCH_ELFSIZE
41#endif 41#endif
42 42
43#include <sys/param.h> 43#include <sys/param.h>
44#include <sys/module.h> 44#include <sys/module.h>
45#include <sys/exec.h> 45#include <sys/exec.h>
46#include <sys/signalvar.h> 46#include <sys/signalvar.h>
47#include <sys/sysctl.h> 47#include <sys/sysctl.h>
48 48
49#include <compat/linux/common/linux_exec.h> 49#include <compat/linux/common/linux_exec.h>
50 50
51#include <compat/linux32/common/linux32_sysctl.h> 51#include <compat/linux32/common/linux32_sysctl.h>
52#include <compat/linux32/common/linux32_exec.h> 52#include <compat/linux32/common/linux32_exec.h>
53 53
54#if defined(EXEC_ELF32) 54#if defined(EXEC_ELF32)
55# define MD1 ",exec_elf32,compat_netbsd32,compat_netbsd32_sysvipc" 55# define MD1 ",exec_elf32,compat_netbsd32,compat_netbsd32_sysvipc"
56#else 56#else
57# define MD1 "" 57# define MD1 ""
58#endif 58#endif
59 59
60MODULE(MODULE_CLASS_EXEC, compat_linux32, "compat_linux" MD1); 60MODULE(MODULE_CLASS_EXEC, compat_linux32, "compat_linux" MD1);
61 61
62static struct execsw linux32_execsw[] = { 62static struct execsw linux32_execsw[] = {
63#if defined(EXEC_ELF32) 63#if defined(EXEC_ELF32)
64 { 64 {
65 .es_hdrsz = sizeof (Elf32_Ehdr), 65 .es_hdrsz = sizeof (Elf32_Ehdr),
66 .es_makecmds = exec_elf32_makecmds, 66 .es_makecmds = exec_elf32_makecmds,
67 .u = { 67 .u = {
68 .elf_probe_func = linux32_elf32_probe,  68 .elf_probe_func = linux32_elf32_probe,
69 }, 69 },
70 .es_emul = &emul_linux32, 70 .es_emul = &emul_linux32,
71 .es_prio = EXECSW_PRIO_ANY,  71 .es_prio = EXECSW_PRIO_ANY,
72 .es_arglen = LINUX32_ELF_AUX_ARGSIZ, 72 .es_arglen = LINUX32_ELF_AUX_ARGSIZ,
73 .es_copyargs = linux32_elf32_copyargs, 73 .es_copyargs = linux32_elf32_copyargs,
74 .es_setregs = NULL, 74 .es_setregs = NULL,
75 .es_coredump = coredump_elf32, 75 .es_coredump = coredump_elf32,
76 .es_setup_stack = linux_exec_setup_stack, 76 .es_setup_stack = linux_exec_setup_stack,
77 }, 77 },
78#endif 78#endif
79}; 79};
80 80
81int linux32_enabled = 0; 81int linux32_enabled = 1;
82 82
83int 83int
84linux32_sysctl_enable(SYSCTLFN_ARGS) 84linux32_sysctl_enable(SYSCTLFN_ARGS)
85{ 85{
86 struct sysctlnode node; 86 struct sysctlnode node;
87 int error, val; 87 int error, val;
88 88
89 val = *(int *)rnode->sysctl_data; 89 val = *(int *)rnode->sysctl_data;
90 90
91 node = *rnode; 91 node = *rnode;
92 node.sysctl_data = &val; 92 node.sysctl_data = &val;
93 93
94 error = sysctl_lookup(SYSCTLFN_CALL(&node)); 94 error = sysctl_lookup(SYSCTLFN_CALL(&node));
95 if (error != 0 || newp == NULL) 95 if (error != 0 || newp == NULL)
96 return error; 96 return error;
97 97
98 if (val == 1) { 98 if (val == 1) {
99 error = exec_add(linux32_execsw, __arraycount(linux32_execsw)); 99 error = exec_add(linux32_execsw, __arraycount(linux32_execsw));
100 } else if (val == 0) { 100 } else if (val == 0) {
101 error = exec_remove(linux32_execsw, __arraycount(linux32_execsw)); 101 error = exec_remove(linux32_execsw, __arraycount(linux32_execsw));
102 } else { 102 } else {
103 error = EINVAL; 103 error = EINVAL;
104 } 104 }
105 if (error) 105 if (error)
106 return error; 106 return error;
107 107
108 *(int *)rnode->sysctl_data = val; 108 *(int *)rnode->sysctl_data = val;
109 109
110 return 0; 110 return 0;
111} 111}
112 112
113static int 113static int
114compat_linux32_modcmd(modcmd_t cmd, void *arg) 114compat_linux32_modcmd(modcmd_t cmd, void *arg)
115{ 115{
116 int error; 116 int error;
117 117
118 switch (cmd) { 118 switch (cmd) {
119 case MODULE_CMD_INIT: 119 case MODULE_CMD_INIT:
120 linux32_enabled = 0; 120 linux32_enabled = 0;
121 linux32_sysctl_init(); 121 linux32_sysctl_init();
122 return 0; 122 return 0;
123 123
124 case MODULE_CMD_FINI: 124 case MODULE_CMD_FINI:
125 error = exec_remove(linux32_execsw, __arraycount(linux32_execsw)); 125 error = exec_remove(linux32_execsw, __arraycount(linux32_execsw));
126 if (error) 126 if (error)
127 return error; 127 return error;
128 linux32_sysctl_fini(); 128 linux32_sysctl_fini();
129 return 0; 129 return 0;
130 130
131 default: 131 default:
132 return ENOTTY; 132 return ENOTTY;
133 } 133 }
134} 134}