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:
Martin Stein 2021-03-12 09:45:54 +01:00 committed by Norman Feske
parent 34245376ba
commit 2d0ac161cb

View File

@ -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)
{ }