You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove external/fs module and make nfs pluggable by making it a module (shared library) that can be added to the image instead of being compiled into the kernel using nfs=true build option.
The text was updated successfully, but these errors were encountered:
…dule
This patch removes external/fs/libnfs module and makes nfs support pluggable
by moving it into a module (shared library) that can be added to the image
instead of being compiled into the kernel using nfs=true build option.
The nfs support can be added by adding nfs module to the image.
More specifically:
- external/fs/libnfs is removed and equivalent modules/libnfs gets created
- most fs/nfs code except for fs_null_vfsops.cc gets moved out of a kernel
into new modules/nfs that is built as a shared library
- vfs mount logic is able to dynamically load extra filesystem
libraries from /usr/lib/fs
Completes #1078
Signed-off-by: Waldemar Kozaczuk <[email protected]>
Remove
external/fs
module and make nfs pluggable by making it a module (shared library) that can be added to the image instead of being compiled into the kernel usingnfs=true
build option.The text was updated successfully, but these errors were encountered: