Deleted Added
full compact
kern_environment.c (83744) kern_environment.c (84783)
1/*-
2 * Copyright (c) 1998 Michael Smith
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1998 Michael Smith
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/kern/kern_environment.c 83744 2001-09-21 02:25:53Z peter $
26 * $FreeBSD: head/sys/kern/kern_environment.c 84783 2001-10-10 23:06:54Z ps $
27 */
28
29/*
30 * The unified bootloader passes us a pointer to a preserved copy of
31 * bootstrap/kernel environment variables.
32 * We make these available using sysctl for both in-kernel and
33 * out-of-kernel consumers.
34 *

--- 123 unchanged lines hidden (view full) ---

158tunable_int_init(void *data)
159{
160 struct tunable_int *d = (struct tunable_int *)data;
161
162 TUNABLE_INT_FETCH(d->path, d->var);
163}
164
165void
27 */
28
29/*
30 * The unified bootloader passes us a pointer to a preserved copy of
31 * bootstrap/kernel environment variables.
32 * We make these available using sysctl for both in-kernel and
33 * out-of-kernel consumers.
34 *

--- 123 unchanged lines hidden (view full) ---

158tunable_int_init(void *data)
159{
160 struct tunable_int *d = (struct tunable_int *)data;
161
162 TUNABLE_INT_FETCH(d->path, d->var);
163}
164
165void
166tunable_quad_init(void *data)
167{
168 struct tunable_quad *d = (struct tunable_quad *)data;
169
170 TUNABLE_QUAD_FETCH(d->path, d->var);
171}
172
173void
166tunable_str_init(void *data)
167{
168 struct tunable_str *d = (struct tunable_str *)data;
169
170 TUNABLE_STR_FETCH(d->path, d->var, d->size);
171}
174tunable_str_init(void *data)
175{
176 struct tunable_str *d = (struct tunable_str *)data;
177
178 TUNABLE_STR_FETCH(d->path, d->var, d->size);
179}