aboutsummaryrefslogtreecommitdiff
path: root/sys/geom/geom_vol_ffs.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-02-12 22:42:11 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-02-12 22:42:11 +0000
commitd2bae332d63485cc6d3913e8b6f51af46d4fbaec (patch)
treeb700329baa11c7dbd187df0ad4e8480d842ec8fa /sys/geom/geom_vol_ffs.c
parent63dfee88669de5b9affc8271c8fd6ee5c19425e0 (diff)
downloadsrc-d2bae332d63485cc6d3913e8b6f51af46d4fbaec.tar.gz
src-d2bae332d63485cc6d3913e8b6f51af46d4fbaec.zip
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.
Notes
Notes: svn path=/head/; revision=125755
Diffstat (limited to 'sys/geom/geom_vol_ffs.c')
-rw-r--r--sys/geom/geom_vol_ffs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/geom_vol_ffs.c b/sys/geom/geom_vol_ffs.c
index de046edd78a0..afc41487b3f6 100644
--- a/sys/geom/geom_vol_ffs.c
+++ b/sys/geom/geom_vol_ffs.c
@@ -127,7 +127,7 @@ g_vol_ffs_taste(struct g_class *mp, struct g_provider *pp, int flags)
break;
}
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);