From cbdc3037e17f45c7281d319bba8ca13f4c6ac977 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Mon, 10 Mar 2014 04:26:04 +0100 Subject: Add umount functions for unionfs-fuse. --- src/common/unionfs.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/common') diff --git a/src/common/unionfs.c b/src/common/unionfs.c index dff20e6..669858a 100644 --- a/src/common/unionfs.c +++ b/src/common/unionfs.c @@ -62,9 +62,21 @@ sys_cp(const char *src_file, const char *dst_file) static inline void sys_umount_session(void) { +#ifdef USE_UNIONFSFUSE + char umountcmd[MAX_LENGTH_DIR_PATH * 2]; + const char *fusermount_call; + const char *umountfmt; + fusermount_call = "/usr/bin/fusermount -u "; + umountfmt = "%s %s"; + snprintf(umountcmd, MAX_LENGTH_DIR_PATH * 4, umountfmt, fusermount_call, get_mdirp()); + if (system(umountcmd) != 0) { + perror("umount"); + } +#else if (umount(get_mdirp()) != 0) { perror("umount"); } +#endif } static inline void -- cgit v1.2.3