geom_kern.c (c2da954203c0feb933d3be304710e0346c9ed222) geom_kern.c (ffc1cc95e78ec05a3e1a0aed869e33a44d9f6641)
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 2002 Poul-Henning Kamp
5 * Copyright (c) 2002 Networks Associates Technology, Inc.
6 * All rights reserved.
7 *
8 * This software was developed for the FreeBSD Project by Poul-Henning Kamp

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

56#include <geom/geom.h>
57#include <geom/geom_int.h>
58
59MALLOC_DEFINE(M_GEOM, "GEOM", "Geom data structures");
60
61struct sx topology_lock;
62
63static struct proc *g_proc;
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 2002 Poul-Henning Kamp
5 * Copyright (c) 2002 Networks Associates Technology, Inc.
6 * All rights reserved.
7 *
8 * This software was developed for the FreeBSD Project by Poul-Henning Kamp

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

56#include <geom/geom.h>
57#include <geom/geom_int.h>
58
59MALLOC_DEFINE(M_GEOM, "GEOM", "Geom data structures");
60
61struct sx topology_lock;
62
63static struct proc *g_proc;
64static struct thread __read_mostly *g_up_td;
65static struct thread __read_mostly *g_down_td;
64struct thread __read_mostly *g_up_td;
65struct thread __read_mostly *g_down_td;
66static struct thread __read_mostly *g_event_td;
67
68int __read_mostly g_debugflags;
69int __read_mostly g_collectstats = G_STATS_PROVIDERS;
70int g_shutdown;
71int g_notaste;
72
73/*

--- 171 unchanged lines hidden ---
66static struct thread __read_mostly *g_event_td;
67
68int __read_mostly g_debugflags;
69int __read_mostly g_collectstats = G_STATS_PROVIDERS;
70int g_shutdown;
71int g_notaste;
72
73/*

--- 171 unchanged lines hidden ---