diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-02-12 22:42:11 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-02-12 22:42:11 +0000 |
commit | d2bae332d63485cc6d3913e8b6f51af46d4fbaec (patch) | |
tree | b700329baa11c7dbd187df0ad4e8480d842ec8fa /sys/geom/geom_ccd.c | |
parent | 63dfee88669de5b9affc8271c8fd6ee5c19425e0 (diff) |
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_ccd.c')
-rw-r--r-- | sys/geom/geom_ccd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/geom_ccd.c b/sys/geom/geom_ccd.c index bd58410fe86f..7ec3d2ea5ca2 100644 --- a/sys/geom/geom_ccd.c +++ b/sys/geom/geom_ccd.c @@ -168,12 +168,12 @@ g_ccd_access(struct g_provider *pp, int dr, int dw, int de) gp = pp->geom; error = ENXIO; LIST_FOREACH(cp1, &gp->consumer, consumer) { - error = g_access_rel(cp1, dr, dw, de); + error = g_access(cp1, dr, dw, de); if (error) { LIST_FOREACH(cp2, &gp->consumer, consumer) { if (cp1 == cp2) break; - g_access_rel(cp2, -dr, -dw, -de); + g_access(cp2, -dr, -dw, -de); } break; } |