Skip to content

Commit

Permalink
Merge pull request #1220 from trapexit/fix-logging
Browse files Browse the repository at this point in the history
Fix logging pin-threads details
  • Loading branch information
trapexit authored Jul 31, 2023
2 parents 282ce08 + eb141c4 commit d817fa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libfuse/lib/fuse_loop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ pin_threads(const std::vector<pthread_t> read_threads_,
const std::vector<pthread_t> process_threads_,
const std::string type_)
{
if(type_.empty())
if(type_.empty() || (type_ == "false"))
return;
if(type_ == "R1L")
return ::pin_threads_R1L(read_threads_);
Expand Down Expand Up @@ -511,7 +511,7 @@ fuse_session_loop_mt(struct fuse_session *se_,
read_thread_count,
process_thread_count,
process_thread_queue_depth,
pin_threads_type_);
pin_threads_type_.c_str());

::wait(se_,&finished);

Expand Down

0 comments on commit d817fa4

Please sign in to comment.