From bb8d78bf443578181578e93ae89f4ba87be62f46 Mon Sep 17 00:00:00 2001 From: phk Date: Tue, 25 Jan 2005 15:52:04 +0000 Subject: Introduce and use g_vfs_close(). --- sys/fs/ntfs/ntfs_vfsops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/fs/ntfs/ntfs_vfsops.c') diff --git a/sys/fs/ntfs/ntfs_vfsops.c b/sys/fs/ntfs/ntfs_vfsops.c index d7ff5e2..1c2e6bd 100644 --- a/sys/fs/ntfs/ntfs_vfsops.c +++ b/sys/fs/ntfs/ntfs_vfsops.c @@ -441,7 +441,7 @@ out: DROP_GIANT(); g_topology_lock(); - g_wither_geom_close(cp->geom, ENXIO); + g_vfs_close(cp, td); g_topology_unlock(); PICKUP_GIANT(); @@ -489,7 +489,7 @@ ntfs_unmount( DROP_GIANT(); g_topology_lock(); - g_wither_geom_close(ntmp->ntm_cp->geom, ENXIO); + g_vfs_close(ntmp->ntm_cp, td); g_topology_unlock(); PICKUP_GIANT(); -- cgit v1.1