Symbol: owner_vertex
sys/kern/kern_lockf.c
141
static int graph_reaches(struct owner_vertex *x, struct owner_vertex *y,
sys/kern/kern_lockf.c
147
struct owner_vertex *x, struct owner_vertex *y,
sys/kern/kern_lockf.c
150
struct owner_vertex *x, struct owner_vertex *y,
sys/kern/kern_lockf.c
157
struct owner_vertex *x, struct owner_vertex *y);
sys/kern/kern_lockf.c
159
struct owner_vertex *x, struct owner_vertex *y);
sys/kern/kern_lockf.c
160
static struct owner_vertex *graph_alloc_vertex(struct owner_graph *g,
sys/kern/kern_lockf.c
163
struct owner_vertex *v);
sys/kern/kern_lockf.c
199
struct owner_vertex *lo_vertex; /* (g) entry in deadlock graph */
sys/kern/kern_lockf.c
2030
graph_reaches(struct owner_vertex *x, struct owner_vertex *y,
sys/kern/kern_lockf.c
2081
struct owner_vertex *v;
sys/kern/kern_lockf.c
2102
graph_delta_forward(struct owner_graph *g, struct owner_vertex *x,
sys/kern/kern_lockf.c
2103
struct owner_vertex *y, struct owner_vertex_list *delta)
sys/kern/kern_lockf.c
2106
struct owner_vertex *v;
sys/kern/kern_lockf.c
2144
graph_delta_backward(struct owner_graph *g, struct owner_vertex *x,
sys/kern/kern_lockf.c
2145
struct owner_vertex *y, struct owner_vertex_list *delta)
sys/kern/kern_lockf.c
2148
struct owner_vertex *v;
sys/kern/kern_lockf.c
2181
struct owner_vertex *v;
sys/kern/kern_lockf.c
2201
struct owner_vertex *v, *vlowest;
sys/kern/kern_lockf.c
2219
graph_add_edge(struct owner_graph *g, struct owner_vertex *x,
sys/kern/kern_lockf.c
2220
struct owner_vertex *y)
sys/kern/kern_lockf.c
2359
graph_remove_edge(struct owner_graph *g, struct owner_vertex *x,
sys/kern/kern_lockf.c
2360
struct owner_vertex *y)
sys/kern/kern_lockf.c
2393
static struct owner_vertex *
sys/kern/kern_lockf.c
2396
struct owner_vertex *v;
sys/kern/kern_lockf.c
2400
v = malloc(sizeof(struct owner_vertex), M_LOCKF, M_WAITOK);
sys/kern/kern_lockf.c
2403
2 * g->g_space * sizeof(struct owner_vertex *),
sys/kern/kern_lockf.c
242
struct owner_vertex;
sys/kern/kern_lockf.c
2423
graph_free_vertex(struct owner_graph *g, struct owner_vertex *v)
sys/kern/kern_lockf.c
2425
struct owner_vertex *w;
sys/kern/kern_lockf.c
2451
g->g_vertices = malloc(10 * sizeof(struct owner_vertex *),
sys/kern/kern_lockf.c
248
struct owner_vertex *e_from; /* (c) out-going from here */
sys/kern/kern_lockf.c
249
struct owner_vertex *e_to; /* (c) in-coming to here */
sys/kern/kern_lockf.c
254
TAILQ_ENTRY(owner_vertex) v_link; /* (g) workspace for edge insertion */
sys/kern/kern_lockf.c
261
TAILQ_HEAD(owner_vertex_list, owner_vertex);
sys/kern/kern_lockf.c
264
struct owner_vertex** g_vertices; /* (g) pointers to vertices */
sys/kern/kern_lockf.c
95
struct owner_vertex;