Lines Matching +full:foo +full:- +full:queue
1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 2002 Poul-Henning Kamp
8 * This software was developed for the FreeBSD Project by Poul-Henning Kamp
10 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
44 #include <sys/queue.h>
158 * The g_bioq is a queue of struct bio's.
313 #define G_VALID_CLASS(foo) \ argument
314 KASSERT(g_valid_obj(foo) == 1, ("%p is not a g_class", foo))
315 #define G_VALID_GEOM(foo) \ argument
316 KASSERT(g_valid_obj(foo) == 2, ("%p is not a g_geom", foo))
317 #define G_VALID_CONSUMER(foo) \ argument
318 KASSERT(g_valid_obj(foo) == 3, ("%p is not a g_consumer", foo))
319 #define G_VALID_PROVIDER(foo) \ argument
320 KASSERT(g_valid_obj(foo) == 4, ("%p is not a g_provider", foo))
322 #define G_VALID_CLASS(foo) do { } while (0) argument
323 #define G_VALID_GEOM(foo) do { } while (0) argument
324 #define G_VALID_CONSUMER(foo) do { } while (0) argument
325 #define G_VALID_PROVIDER(foo) do { } while (0) argument