geom_subr.c (9cb485d18f01900800efe4ec3cfcfadd335da858) geom_subr.c (67c58cd7290949090db590a8f59ddfbc3f65a1b8)
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

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

66#ifdef KDB
67#include <sys/kdb.h>
68#endif
69
70SDT_PROVIDER_DEFINE(geom);
71
72struct class_list_head g_classes = LIST_HEAD_INITIALIZER(g_classes);
73static struct g_tailq_head geoms = TAILQ_HEAD_INITIALIZER(geoms);
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

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

66#ifdef KDB
67#include <sys/kdb.h>
68#endif
69
70SDT_PROVIDER_DEFINE(geom);
71
72struct class_list_head g_classes = LIST_HEAD_INITIALIZER(g_classes);
73static struct g_tailq_head geoms = TAILQ_HEAD_INITIALIZER(geoms);
74char *g_wait_event, *g_wait_up, *g_wait_down, *g_wait_sim;
74char *g_wait_event, *g_wait_up, *g_wait_down;
75
76struct g_hh00 {
77 struct g_class *mp;
78 struct g_provider *pp;
79 off_t size;
80 int error;
81 int post;
82};

--- 1593 unchanged lines hidden ---
75
76struct g_hh00 {
77 struct g_class *mp;
78 struct g_provider *pp;
79 off_t size;
80 int error;
81 int post;
82};

--- 1593 unchanged lines hidden ---