geom_int.h (4ec353005cc7d720a55f03f52db5d28f9e4af6e3) | geom_int.h (8ebd558f5d8f5050400d7373b52a7935ab69cb15) |
---|---|
1/*- 2 * Copyright (c) 2002 Poul-Henning Kamp 3 * Copyright (c) 2002 Networks Associates Technology, Inc. 4 * All rights reserved. 5 * 6 * This software was developed for the FreeBSD Project by Poul-Henning Kamp 7 * and NAI Labs, the Security Research Division of Network Associates, Inc. 8 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the --- 28 unchanged lines hidden (view full) --- 37 38LIST_HEAD(class_list_head, g_class); 39TAILQ_HEAD(g_tailq_head, g_geom); 40TAILQ_HEAD(event_tailq_head, g_event); 41 42extern struct event_tailq_head events; 43extern int g_collectstats; 44extern int g_debugflags; | 1/*- 2 * Copyright (c) 2002 Poul-Henning Kamp 3 * Copyright (c) 2002 Networks Associates Technology, Inc. 4 * All rights reserved. 5 * 6 * This software was developed for the FreeBSD Project by Poul-Henning Kamp 7 * and NAI Labs, the Security Research Division of Network Associates, Inc. 8 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the --- 28 unchanged lines hidden (view full) --- 37 38LIST_HEAD(class_list_head, g_class); 39TAILQ_HEAD(g_tailq_head, g_geom); 40TAILQ_HEAD(event_tailq_head, g_event); 41 42extern struct event_tailq_head events; 43extern int g_collectstats; 44extern int g_debugflags; |
45/* 1 G_T_TOPOLOGY */ 46/* 2 G_T_BIO */ 47/* 4 G_T_ACCESS */ 48/* 8 enable sanity checks */ | 45/* 46 * 1 G_T_TOPOLOGY 47 * 2 G_T_BIO 48 * 4 G_T_ACCESS 49 * 8 enable sanity checks 50 * 16 Allow footshooting on rank#1 providers 51 */ |
49 50/* 51 * Various internal actions are tracked by tagging g_event[s] onto 52 * an internal eventqueue. 53 */ 54enum g_events { 55 EV_NEW_CLASS, /* class */ 56 EV_NEW_PROVIDER, /* provider */ --- 51 unchanged lines hidden --- | 52 53/* 54 * Various internal actions are tracked by tagging g_event[s] onto 55 * an internal eventqueue. 56 */ 57enum g_events { 58 EV_NEW_CLASS, /* class */ 59 EV_NEW_PROVIDER, /* provider */ --- 51 unchanged lines hidden --- |