Skip to content

Commit

Permalink
lkl tools: lklfuse: disabled multihreaded mode
Browse files Browse the repository at this point in the history
We can't properly support it because multithreading LKL leaks threads
and the number of concurrent threads is limited to the maximum numbers
of interrupts (64 on 64bit systems, 32 otherwise).

Signed-off-by: Octavian Purdila <[email protected]>
  • Loading branch information
Octavian Purdila committed Aug 19, 2016
1 parent 0869aa7 commit 5c74652
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/lkl/lklfuse.c
Original file line number Diff line number Diff line change
Expand Up @@ -623,9 +623,9 @@ int main(int argc, char **argv)
}

if (mt)
ret = fuse_loop_mt(fuse);
else
ret = fuse_loop(fuse);
fprintf(stderr, "warning: multithreaded mode not supported\n");

ret = fuse_loop(fuse);

stop_lkl();

Expand Down

0 comments on commit 5c74652

Please sign in to comment.