From 22469b9e0657204feec8bd1062a9e3d68760d4e1 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Thu, 1 May 2025 19:31:40 -0500 Subject: [PATCH] fuse_loop.cpp --- libfuse/lib/fuse_loop.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/libfuse/lib/fuse_loop.cpp b/libfuse/lib/fuse_loop.cpp index e76f6150..6d43993d 100644 --- a/libfuse/lib/fuse_loop.cpp +++ b/libfuse/lib/fuse_loop.cpp @@ -251,20 +251,6 @@ _calculate_thread_counts(int *read_thread_count_, *process_thread_queue_depth_ *= *process_thread_count_; } -static -void -pin_threads_R1L(const CPU::ThreadIdVec read_threads_) -{ - CPU::CPUVec cpus; - - cpus = CPU::cpus(); - if(cpus.empty()) - return; - - for(auto const thread_id : read_threads_) - CPU::setaffinity(thread_id,cpus.front()); -} - static void pin_threads_R1P(const CPU::ThreadIdVec read_threads_)