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
I've opened this issue to track the missing pieces for the initial rust filesystem abstractions.
I have backported @wedsonaf's branch fs on top of rust-next to get a sense about the missing modules, see rust-next-fs.
Here's a list of the missing parts:
file depends on cred, fs, mm, io_buffer, iov_iter and user_ptr
mm depends on pages
iov_iter depends on io_buffer
pages depends on io_buffer
user_ptr depends on io_buffer
One strategy would be to start bottom-up, starting with io_buffer, page, iov_iter, cred and user_ptr and then continue with the rest. Remains to be seen how much of the code can be backported as it is and how much it needs to be changed.
The text was updated successfully, but these errors were encountered:
I've opened this issue to track the missing pieces for the initial rust filesystem abstractions.
I have backported @wedsonaf's branch fs on top of rust-next to get a sense about the missing modules, see rust-next-fs.
Here's a list of the missing parts:
The dependencies between the modules are:
One strategy would be to start bottom-up, starting with
io_buffer
,page
,iov_iter
,cred
anduser_ptr
and then continue with the rest. Remains to be seen how much of the code can be backported as it is and how much it needs to be changed.The text was updated successfully, but these errors were encountered: