mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-10-14 07:59:07 +08:00
Add RTEMS_BSD_CONFIG_DOMAIN_PAGE_MBUFS_SIZE.
The domain allocator page abd mbuf size can be configured by the user using RTEMS_BSD_CONFIG_DOMAIN_PAGE_MBUFS_SIZE.
This commit is contained in:
@@ -58,6 +58,7 @@ def rtems(mm):
|
|||||||
'local/mmcbr_if.c',
|
'local/mmcbr_if.c',
|
||||||
'rtems/ipsec_get_policylen.c',
|
'rtems/ipsec_get_policylen.c',
|
||||||
'rtems/rtems-bsd-arp-processor.c',
|
'rtems/rtems-bsd-arp-processor.c',
|
||||||
|
'rtems/rtems-bsd-allocator-domain-size.c',
|
||||||
'rtems/rtems-bsd-get-allocator-domain-size.c',
|
'rtems/rtems-bsd-get-allocator-domain-size.c',
|
||||||
'rtems/rtems-bsd-get-ethernet-addr.c',
|
'rtems/rtems-bsd-get-ethernet-addr.c',
|
||||||
'rtems/rtems-bsd-get-mac-address.c',
|
'rtems/rtems-bsd-get-mac-address.c',
|
||||||
|
@@ -1049,6 +1049,7 @@ def build(bld):
|
|||||||
'rtemsbsd/pppd/upap.c',
|
'rtemsbsd/pppd/upap.c',
|
||||||
'rtemsbsd/pppd/utils.c',
|
'rtemsbsd/pppd/utils.c',
|
||||||
'rtemsbsd/rtems/ipsec_get_policylen.c',
|
'rtemsbsd/rtems/ipsec_get_policylen.c',
|
||||||
|
'rtemsbsd/rtems/rtems-bsd-allocator-domain-size.c',
|
||||||
'rtemsbsd/rtems/rtems-bsd-arp-processor.c',
|
'rtemsbsd/rtems/rtems-bsd-arp-processor.c',
|
||||||
'rtemsbsd/rtems/rtems-bsd-get-allocator-domain-size.c',
|
'rtemsbsd/rtems/rtems-bsd-get-allocator-domain-size.c',
|
||||||
'rtemsbsd/rtems/rtems-bsd-get-ethernet-addr.c',
|
'rtemsbsd/rtems/rtems-bsd-get-ethernet-addr.c',
|
||||||
|
@@ -28,12 +28,13 @@
|
|||||||
*
|
*
|
||||||
* Configuration defines:
|
* Configuration defines:
|
||||||
*
|
*
|
||||||
* RTEMS_BSD_CONFIG_NET_PF_UNIX : Packet Filter.
|
* RTEMS_BSD_CONFIG_DOMAIN_PAGE_MBUFS_SIZE : Memory in bytes for mbufs
|
||||||
* RTEMS_BSD_CONFIG_NET_IF_LAGG : Link Aggregetion and Failover.
|
* RTEMS_BSD_CONFIG_NET_PF_UNIX : Packet Filter.
|
||||||
* RTEMS_BSD_CONFIG_NET_IF_VLAN : Virtual LAN.
|
* RTEMS_BSD_CONFIG_NET_IF_LAGG : Link Aggregetion and Failover.
|
||||||
* RTEMS_BSD_CONFIG_SERVICE_FTPD : File Transfer Protocol (FTP).
|
* RTEMS_BSD_CONFIG_NET_IF_VLAN : Virtual LAN.
|
||||||
* RTEMS_BSD_CONFIG_BSP_CONFIG : Configure default BSP devices.
|
* RTEMS_BSD_CONFIG_SERVICE_FTPD : File Transfer Protocol (FTP).
|
||||||
* RTEMS_BSD_CONFIG_INIT : Configure the LibBSD support.
|
* RTEMS_BSD_CONFIG_BSP_CONFIG : Configure default BSP devices.
|
||||||
|
* RTEMS_BSD_CONFIG_INIT : Configure the LibBSD support.
|
||||||
*
|
*
|
||||||
* Rules for adding to this file:
|
* Rules for adding to this file:
|
||||||
* 1. All user visible defines start with 'RTEMS_BSD_CONFIG_'.
|
* 1. All user visible defines start with 'RTEMS_BSD_CONFIG_'.
|
||||||
@@ -63,10 +64,24 @@
|
|||||||
*/
|
*/
|
||||||
#include <machine/rtems-bsd-rc-conf-services.h>
|
#include <machine/rtems-bsd-rc-conf-services.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Include the RTEMS BSD support.
|
||||||
|
*/
|
||||||
|
#include <rtems/bsd/bsd.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* BSD Kernel configuration.
|
||||||
|
*/
|
||||||
|
#if defined(RTEMS_BSD_CONFIG_DOMAIN_PAGE_MBUFS_SIZE)
|
||||||
|
#define RTEMS_BSD_CFGDECL_DOMAIN_PAGE_MBUFS_SIZE RTEMS_BSD_CONFIG_DOMAIN_PAGE_MBUFS_SIZE
|
||||||
|
#else
|
||||||
|
#define RTEMS_BSD_CFGDECL_DOMAIN_PAGE_MBUFS_SIZE RTEMS_BSD_ALLOCATOR_DOMAIN_PAGE_MBUF_DEFAULT
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* BSD Kernel modules.
|
* BSD Kernel modules.
|
||||||
*/
|
*/
|
||||||
@@ -106,24 +121,31 @@ extern "C" {
|
|||||||
* Configure the system.
|
* Configure the system.
|
||||||
*/
|
*/
|
||||||
#if defined(RTEMS_BSD_CONFIG_INIT)
|
#if defined(RTEMS_BSD_CONFIG_INIT)
|
||||||
/*
|
/*
|
||||||
* If a BSP configuration is requested include the Nexus bus BSP configuration.
|
* Configure the domain allocation memory size.
|
||||||
*/
|
*/
|
||||||
#if defined(RTEMS_BSD_CONFIG_BSP_CONFIG)
|
uintptr_t rtems_bsd_allocator_domain_page_mbuf_size = \
|
||||||
#include <bsp/nexus-devices.h>
|
RTEMS_BSD_CFGDECL_DOMAIN_PAGE_MBUFS_SIZE;
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Create the networking modules and interfaces.
|
* If a BSP configuration is requested include the Nexus bus BSP
|
||||||
*/
|
* configuration.
|
||||||
RTEMS_BSD_CFGDECL_NET_PF_UNIX;
|
*/
|
||||||
RTEMS_BSD_CFGDECL_IF_LAGG;
|
#if defined(RTEMS_BSD_CONFIG_BSP_CONFIG)
|
||||||
RTEMS_BSD_CFGDECL_NET_IF_VLAN;
|
#include <bsp/nexus-devices.h>
|
||||||
|
#endif /* RTEMS_BSD_CONFIG_BSP_CONFIG */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Create the services.
|
* Create the networking modules and interfaces.
|
||||||
*/
|
*/
|
||||||
RTEMS_BSD_CFGDECL_FTPD;
|
RTEMS_BSD_CFGDECL_NET_PF_UNIX;
|
||||||
|
RTEMS_BSD_CFGDECL_IF_LAGG;
|
||||||
|
RTEMS_BSD_CFGDECL_NET_IF_VLAN;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Create the services.
|
||||||
|
*/
|
||||||
|
RTEMS_BSD_CFGDECL_FTPD;
|
||||||
#endif /* RTEMS_BSD_CONFIG_INIT */
|
#endif /* RTEMS_BSD_CONFIG_INIT */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@@ -52,6 +52,12 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The default memory size. Do not change, use
|
||||||
|
* RTEMS_BSD_CONFIG_DOMAIN_PAGE_MBUFS_SIZE to override for your application.
|
||||||
|
*/
|
||||||
|
#define RTEMS_BSD_ALLOCATOR_DOMAIN_PAGE_MBUF_DEFAULT (8 * 1024 * 1024)
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
RTEMS_BSD_RES_IRQ = 1,
|
RTEMS_BSD_RES_IRQ = 1,
|
||||||
RTEMS_BSD_RES_MEMORY = 3
|
RTEMS_BSD_RES_MEMORY = 3
|
||||||
|
43
rtemsbsd/rtems/rtems-bsd-allocator-domain-size.c
Normal file
43
rtemsbsd/rtems/rtems-bsd-allocator-domain-size.c
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @ingroup rtems_bsd_rtems
|
||||||
|
*
|
||||||
|
* @brief The rtems_bsd_allocator_domain_page_mbuf_size variable with the
|
||||||
|
* default for those users who do not use <rtems-bsd-config.h>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2015 embedded brains GmbH. All rights reserved.
|
||||||
|
*
|
||||||
|
* embedded brains GmbH
|
||||||
|
* Dornierstr. 4
|
||||||
|
* 82178 Puchheim
|
||||||
|
* Germany
|
||||||
|
* <rtems@embedded-brains.de>
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions
|
||||||
|
* are met:
|
||||||
|
* 1. Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||||
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||||
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||||
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
|
* SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <rtems/bsd/bsd.h>
|
||||||
|
|
||||||
|
uintptr_t rtems_bsd_allocator_domain_page_mbuf_size = RTEMS_BSD_ALLOCATOR_DOMAIN_PAGE_MBUF_DEFAULT;
|
@@ -39,8 +39,6 @@
|
|||||||
|
|
||||||
#include <rtems/bsd/bsd.h>
|
#include <rtems/bsd/bsd.h>
|
||||||
|
|
||||||
uintptr_t rtems_bsd_allocator_domain_page_mbuf_size = 8 * 1024 * 1024;
|
|
||||||
|
|
||||||
uintptr_t
|
uintptr_t
|
||||||
rtems_bsd_get_allocator_domain_size(rtems_bsd_allocator_domain domain)
|
rtems_bsd_get_allocator_domain_size(rtems_bsd_allocator_domain domain)
|
||||||
{
|
{
|
||||||
|
@@ -53,11 +53,6 @@ rtems_task Init(
|
|||||||
early_initialization();
|
early_initialization();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DEFAULT_NETWORK_PAGE_MBUFS_SIZE
|
|
||||||
rtems_bsd_allocator_domain_page_mbuf_size =
|
|
||||||
DEFAULT_NETWORK_PAGE_MBUFS_SIZE;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Let other tasks run to complete background work */
|
/* Let other tasks run to complete background work */
|
||||||
default_set_self_prio( RTEMS_MAXIMUM_PRIORITY - 1 );
|
default_set_self_prio( RTEMS_MAXIMUM_PRIORITY - 1 );
|
||||||
|
|
||||||
|
@@ -263,11 +263,6 @@ Init(rtems_task_argument arg)
|
|||||||
assert(sc == RTEMS_SUCCESSFUL);
|
assert(sc == RTEMS_SUCCESSFUL);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DEFAULT_NETWORK_PAGE_MBUFS_SIZE
|
|
||||||
rtems_bsd_allocator_domain_page_mbuf_size =
|
|
||||||
DEFAULT_NETWORK_PAGE_MBUFS_SIZE;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
rtems_bsd_initialize();
|
rtems_bsd_initialize();
|
||||||
|
|
||||||
#ifndef DEFAULT_NETWORK_NO_INTERFACE_0
|
#ifndef DEFAULT_NETWORK_NO_INTERFACE_0
|
||||||
@@ -295,13 +290,16 @@ Init(rtems_task_argument arg)
|
|||||||
assert(0);
|
assert(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <machine/rtems-bsd-sysinit.h>
|
/*
|
||||||
|
* Configure LibBSD.
|
||||||
|
*/
|
||||||
|
#define RTEMS_BSD_CONFIG_NET_PF_UNIX
|
||||||
|
#define RTEMS_BSD_CONFIG_NET_IF_LAGG
|
||||||
|
#define RTEMS_BSD_CONFIG_NET_IF_VLAN
|
||||||
|
#define RTEMS_BSD_CONFIG_BSP_CONFIG
|
||||||
|
#define RTEMS_BSD_CONFIG_INIT
|
||||||
|
|
||||||
SYSINIT_NEED_NET_PF_UNIX;
|
#include <machine/rtems-bsd-config.h>
|
||||||
SYSINIT_NEED_NET_IF_LAGG;
|
|
||||||
SYSINIT_NEED_NET_IF_VLAN;
|
|
||||||
|
|
||||||
#include <bsp/nexus-devices.h>
|
|
||||||
|
|
||||||
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
|
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
|
||||||
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
|
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
|
||||||
|
@@ -47,7 +47,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(LIBBSP_I386_PC386_BSP_H)
|
#if defined(LIBBSP_I386_PC386_BSP_H)
|
||||||
#define DEFAULT_NETWORK_PAGE_MBUFS_SIZE (64 * 1024 * 1024)
|
#define RTEMS_BSD_CONFIG_DOMAIN_PAGE_MBUFS_SIZE (64 * 1024 * 1024)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define NET_CFG_SELF_IP "@NET_CFG_SELF_IP@"
|
#define NET_CFG_SELF_IP "@NET_CFG_SELF_IP@"
|
||||||
|
Reference in New Issue
Block a user