• C
    Btrfs: Worker thread optimizations · 35d8ba66
    Chris Mason 提交于
    This changes the worker thread pool to maintain a list of idle threads,
    avoiding a complex search for a good thread to wake up.
    
    Threads have two states:
    
    idle - we try to reuse the last thread used in hopes of improving the batching
    ratios
    
    busy - each time a new work item is added to a busy task, the task is
    rotated to the end of the line.
    Signed-off-by: NChris Mason <chris.mason@oracle.com>
    35d8ba66
async-thread.c 8.6 KB