LwIP VFS: remove link status messages

Remove warnings from the plugin that were used to check behavior of
applications waiting for link and IP status changes.

Ref #2335
This commit is contained in:
Ehmry - 2018-08-24 16:47:11 +02:00 committed by Christian Helmuth
parent e2215768a2
commit 26611db95b
1 changed files with 3 additions and 8 deletions

View File

@ -35,7 +35,7 @@ extern "C" {
}
using namespace Vfs;
using Genode::warning;
typedef Vfs::File_io_service::Read_result Read_result;
typedef Vfs::File_io_service::Write_result Write_result;
typedef Vfs::File_io_service::Sync_result Sync_result;
@ -1596,7 +1596,6 @@ class Lwip::File_system final : public Vfs::File_system
*/
void status_callback() override
{
Genode::warning("notify that interface is up");
tcp_dir.notify();
udp_dir.notify();
@ -1788,12 +1787,8 @@ class Lwip::File_system final : public Vfs::File_system
return Read_result::READ_ERR_INVALID;
}
bool queue_read(Vfs_handle *, file_size)
{
if (!_netif.ready())
Genode::warning(__func__, ": LwIP interface not ready");
return _netif.ready();
}
bool queue_read(Vfs_handle *, file_size) {
return _netif.ready(); }
bool read_ready(Vfs_handle *vfs_handle) override
{