mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
vfs/cbe: mark extend/rekey fs readable
Despite being readable, the files control/extend and control/rekey proclaimed that they were not when asked. This caused the fs_query tool to not report the content of the files although it could have. Ref #4032
This commit is contained in:
parent
34245376ba
commit
2d0ac161cb
@ -1951,7 +1951,7 @@ class Vfs_cbe::Extend_file_system : public Vfs::Single_file_system
|
||||
Extend_file_system(Wrapper &w)
|
||||
:
|
||||
Single_file_system(Node_type::TRANSACTIONAL_FILE, type_name(),
|
||||
Node_rwx::wo(), Xml_node("<extend/>")),
|
||||
Node_rwx::rw(), Xml_node("<extend/>")),
|
||||
_w(w)
|
||||
{ }
|
||||
|
||||
@ -2093,7 +2093,7 @@ class Vfs_cbe::Rekey_file_system : public Vfs::Single_file_system
|
||||
Rekey_file_system(Wrapper &w)
|
||||
:
|
||||
Single_file_system(Node_type::TRANSACTIONAL_FILE, type_name(),
|
||||
Node_rwx::wo(), Xml_node("<rekey/>")),
|
||||
Node_rwx::rw(), Xml_node("<rekey/>")),
|
||||
_w(w)
|
||||
{ }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user