Browse Source

fuse_open.cpp

passthrough_debug
Antonio SJ Musumeci 6 months ago
parent
commit
fb60c2db2c
  1. 4
      src/fuse_open.cpp

4
src/fuse_open.cpp

@ -284,6 +284,8 @@ _open_for_insert_lambda(const fuse_context *fc_,
fuse_file_info_t *ffi_, fuse_file_info_t *ffi_,
State::OpenFile *of_) State::OpenFile *of_)
{ {
fmt::print("open insert {}\n",fc_->nodeid);
int rv; int rv;
FileInfo *fi; FileInfo *fi;
Config::Read cfg; Config::Read cfg;
@ -342,6 +344,8 @@ _open_for_update_lambda(const fuse_context *fc_,
fuse_file_info_t *ffi_, fuse_file_info_t *ffi_,
State::OpenFile *of_) State::OpenFile *of_)
{ {
fmt::print("open update {}\n",fc_->nodeid);
int rv; int rv;
Config::Read cfg; Config::Read cfg;
const ugid::Set ugid(fc_->uid,fc_->gid); const ugid::Set ugid(fc_->uid,fc_->gid);

Loading…
Cancel
Save