os: remove error messages from FS VFS update mtime

The update modification timestamp is implemented as one-shot where
the caller is expected to try again if the first attempt failed (see
current libc implementation). So the message is misleading as further
attempts might succeed.

Issue #3713.
This commit is contained in:
Josef Söntgen 2020-03-26 10:33:13 +01:00 committed by Christian Helmuth
parent 0df358a550
commit ddc0caa605
1 changed files with 0 additions and 2 deletions

View File

@ -276,7 +276,6 @@ class Vfs::Fs_file_system : public File_system
using ::File_system::Packet_descriptor;
if (!source.ready_to_submit()) {
Genode::error(__func__, ":", __LINE__, " Insufficient_buffer");
return false;
}
@ -289,7 +288,6 @@ class Vfs::Fs_file_system : public File_system
/* pass packet to server side */
source.submit_packet(p);
} catch (::File_system::Session::Tx::Source::Packet_alloc_failed) {
Genode::error(__func__, ":", __LINE__, " Insufficient_buffer");
return false;
} catch (...) {
Genode::error("unhandled exception");