summaryrefslogtreecommitdiffstats
path: root/daemon/sync.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/sync.c')
-rw-r--r--daemon/sync.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/daemon/sync.c b/daemon/sync.c
index bde181fe..c81d81df 100644
--- a/daemon/sync.c
+++ b/daemon/sync.c
@@ -43,24 +43,6 @@ do_sync (void)
return 0;
}
-/* Older versions of libguestfs used to issue separate 'umount_all'
- * and 'sync' commands just before closing the handle. Since
- * libguestfs 1.9.7 the library issues this 'internal_autosync'
- * internal operation instead, allowing more control in the daemon.
- */
-int
-do_internal_autosync (void)
-{
- int r = 0;
-
- if (autosync_umount)
- r = do_umount_all ();
-
- sync_disks ();
-
- return r;
-}
-
/* This is a replacement for sync(2) which is called from
* this file and from other places in the daemon. It works
* on Windows too.