mirror of https://github.com/trapexit/mergerfs.git
Browse Source
Merge pull request #1133 from trapexit/lazy-umount
Merge pull request #1133 from trapexit/lazy-umount
Add option to lazy umount target mount pointpull/1137/head
trapexit
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 103 additions and 9 deletions
-
2libfuse/lib/fuse_msgbuf.cpp
-
6src/config.cpp
-
3src/config.hpp
-
49src/fs_umount2.hpp
-
2src/fuse_link.cpp
-
2src/fuse_rename.cpp
-
32src/mergerfs.cpp
-
4src/option_parser.cpp
-
11src/syslog.cpp
-
1src/syslog.hpp
@ -0,0 +1,49 @@ |
|||
/*
|
|||
ISC License |
|||
|
|||
Copyright (c) 2023, Antonio SJ Musumeci <trapexit@spawn.link> |
|||
|
|||
Permission to use, copy, modify, and/or distribute this software for any |
|||
purpose with or without fee is hereby granted, provided that the above |
|||
copyright notice and this permission notice appear in all copies. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
|||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
|||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
|||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
|||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
|||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
|||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|||
*/ |
|||
|
|||
#pragma once
|
|||
|
|||
#include <errno.h>
|
|||
#include <sys/mount.h>
|
|||
|
|||
#include <string>
|
|||
|
|||
namespace fs |
|||
{ |
|||
static |
|||
inline |
|||
int |
|||
umount2(const std::string target_, |
|||
const int flags_) |
|||
{ |
|||
int rv; |
|||
|
|||
rv = ::umount2(target_.c_str(), |
|||
flags_); |
|||
|
|||
return ((rv == -1) ? -errno : rv); |
|||
} |
|||
|
|||
static |
|||
inline |
|||
int |
|||
umount_lazy(const std::string target_) |
|||
{ |
|||
return fs::umount2(target_,MNT_DETACH); |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue