mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
ac7ce12123
This was a premature optimization from the early days of SerenityOS. The eternal heap was a simple bump pointer allocator over a static byte array. My original idea was to avoid heap fragmentation and improve data locality, but both ideas were rooted in cargo culting, not data. We would reserve 4 MiB at boot and only ended up using ~256 KiB, wasting the rest. This patch replaces all kmalloc_eternal() usage by regular kmalloc().
28 lines
709 B
C++
28 lines
709 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Kernel/Net/NetworkAdapter.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class LoopbackAdapter final : public NetworkAdapter {
|
|
private:
|
|
LoopbackAdapter(NonnullOwnPtr<KString>);
|
|
|
|
public:
|
|
static RefPtr<LoopbackAdapter> try_create();
|
|
virtual ~LoopbackAdapter() override;
|
|
|
|
virtual void send_raw(ReadonlyBytes) override;
|
|
virtual StringView class_name() const override { return "LoopbackAdapter"sv; }
|
|
virtual bool link_up() override { return true; }
|
|
virtual bool link_full_duplex() override { return true; }
|
|
virtual int link_speed() override { return 1000; }
|
|
};
|
|
|
|
}
|