2012-08-02 15:46:53 +00:00
|
|
|
/*
|
|
|
|
* \brief Fast-bitmap allocator for NIC-session packet streams
|
|
|
|
* \author Sebastian Sumpf
|
|
|
|
* \date 2012-07-30
|
|
|
|
*
|
|
|
|
* This allocator can be used with a nic session. It is *not* required though.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2012-2017 Genode Labs GmbH
|
2012-08-02 15:46:53 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2012-08-02 15:46:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__NIC__PACKET_ALLOCATOR__
|
|
|
|
#define _INCLUDE__NIC__PACKET_ALLOCATOR__
|
|
|
|
|
2014-02-12 12:59:41 +00:00
|
|
|
#include <os/packet_allocator.h>
|
2012-08-02 15:46:53 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Nic { struct Packet_allocator; }
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Packet allocator used for packet streaming in nic sessions.
|
|
|
|
*/
|
|
|
|
struct Nic::Packet_allocator : Genode::Packet_allocator
|
|
|
|
{
|
|
|
|
enum { DEFAULT_PACKET_SIZE = 1600 };
|
2012-08-02 15:46:53 +00:00
|
|
|
|
2014-02-12 12:59:41 +00:00
|
|
|
/**
|
2015-03-04 20:12:14 +00:00
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \param md_alloc Meta-data allocator
|
2014-02-12 12:59:41 +00:00
|
|
|
*/
|
2015-03-04 20:12:14 +00:00
|
|
|
Packet_allocator(Genode::Allocator *md_alloc)
|
|
|
|
: Genode::Packet_allocator(md_alloc, DEFAULT_PACKET_SIZE) {}
|
2012-08-02 15:46:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__NIC__PACKET_ALLOCATOR__ */
|