aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/md/md.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/md/md.c')
-rw-r--r--sys/dev/md/md.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c
index a3f4f92811c41..7071a3ea46731 100644
--- a/sys/dev/md/md.c
+++ b/sys/dev/md/md.c
@@ -932,7 +932,7 @@ mddestroy(struct md_s *sc, struct thread *td)
if (sc->cred != NULL)
crfree(sc->cred);
if (sc->object != NULL) {
- vm_pager_deallocate(sc->object);
+ vm_object_deallocate(sc->object);
}
if (sc->indir)
destroy_indir(sc, sc->indir);
@@ -990,7 +990,7 @@ mdcreate_swap(struct md_ioctl *mdio, struct thread *td)
sc->flags = mdio->md_options & MD_FORCE;
if (mdio->md_options & MD_RESERVE) {
if (swap_pager_reserve(sc->object, 0, sc->nsect) < 0) {
- vm_pager_deallocate(sc->object);
+ vm_object_deallocate(sc->object);
sc->object = NULL;
mddestroy(sc, td);
return (EDOM);