mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-04-24 22:14:05 +08:00
don't flush if it's the .mergerfs pseudo file. closes #18
This commit is contained in:
parent
ec38a9c783
commit
15a0416eed
@ -27,6 +27,7 @@
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "config.hpp"
|
||||
#include "fileinfo.hpp"
|
||||
|
||||
static
|
||||
@ -49,9 +50,14 @@ namespace mergerfs
|
||||
namespace flush
|
||||
{
|
||||
int
|
||||
flush(const char *path,
|
||||
flush(const char *fusepath,
|
||||
struct fuse_file_info *fi)
|
||||
{
|
||||
const config::Config &config = config::get();
|
||||
|
||||
if(fusepath == config.controlfile)
|
||||
return 0;
|
||||
|
||||
return _flush(((FileInfo*)fi->fh)->fd);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user