Open YozoraHoshifuru opened 2 years ago
Hello!
If you are running WineFS on a single NUMA node, you can just comment out the sched_setaffinity() statements in WineFS and load WineFS as a module. Basically comment out these lines:
However, if you are running WineFS on multiple NUMA nodes and want to use the NUMA affinity feature of WineFS, then it must be built-in into the linux kernel, as the sched_setaffinity() statements which can only be used by built-in modules help in migrating threads to the cores of the NUMA node where the data resides.
Hello! I'd like to dynamically load WineFS, thus I ran the command
make menuconfig
and modified the*
in the option box of DuoFS toM
after runningcp CONFIG_WINEFS .config
andmake olddefconfig
. However, when I compiled and installed the Linux kernel 5.1 inLinux-5.1/
directory, the error like this occurs:Here are the figures showing that I have modified the
*
in the option box of DuoFS toM
in menuconfig. If I want to dynamically load WineFS instead of build it into the kernel, how should I modify the CONFIG_WINEFS or menuconfig? Looking forward to your reply! Thanks!