From 124977fbb6c505edf20e1c4b862194c84d39f1eb Mon Sep 17 00:00:00 2001 From: phk Date: Thu, 12 Feb 2004 22:42:11 +0000 Subject: Remove the absolute count g_access_abs() function since experience has shown that it is not useful. Rename the relative count g_access_rel() function to g_access(), only the name has changed. Change all g_access_rel() calls in our CVS tree to call g_access() instead. Add an #ifndef BURN_BRIDGES #define of g_access_rel() for source code compatibility. --- sys/geom/geom_pc98.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/geom/geom_pc98.c') diff --git a/sys/geom/geom_pc98.c b/sys/geom/geom_pc98.c index 667e866..2e0c212 100644 --- a/sys/geom/geom_pc98.c +++ b/sys/geom/geom_pc98.c @@ -273,7 +273,7 @@ g_pc98_taste(struct g_class *mp, struct g_provider *pp, int flags) break; } while (0); g_topology_lock(); - g_access_rel(cp, -1, 0, 0); + g_access(cp, -1, 0, 0); if (LIST_EMPTY(&gp->provider)) { g_slice_spoiled(cp); return (NULL); -- cgit v1.1