1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #13066 from PeterKietzmann/pr_kconf_ipv6

Kconfig: Expose gnrc/ipv6 configurations
This commit is contained in:
Leandro Lanzieri 2020-01-10 14:51:23 +01:00 committed by GitHub
commit 7463543e34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 4 deletions

View File

@ -140,8 +140,8 @@ extern "C" {
/**
* @brief Default message queue size to use for the IPv6 thread.
*/
#ifndef GNRC_IPV6_MSG_QUEUE_SIZE
#define GNRC_IPV6_MSG_QUEUE_SIZE (8U)
#ifndef CONFIG_GNRC_IPV6_MSG_QUEUE_SIZE
#define CONFIG_GNRC_IPV6_MSG_QUEUE_SIZE (8U)
#endif
#ifdef DOXYGEN

View File

@ -8,6 +8,7 @@ menu "GNRC Network stack"
depends on MODULE_GNRC
rsource "link_layer/lorawan/Kconfig"
rsource "network_layer/ipv6/Kconfig"
rsource "network_layer/ipv6/blacklist/Kconfig"
rsource "network_layer/ipv6/whitelist/Kconfig"

View File

@ -0,0 +1,19 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
menuconfig KCONFIG_MODULE_GNRC_IPV6
bool "Configure GNRC IPv6 module"
depends on MODULE_GNRC_IPV6
help
Configure GNRC IPv6 module using Kconfig.
if KCONFIG_MODULE_GNRC_IPV6
config GNRC_IPV6_MSG_QUEUE_SIZE
int "Default message queue size to use for the IPv6 thread"
default 8
endif # KCONFIG_MODULE_GNRC_IPV6

View File

@ -172,12 +172,12 @@ static void _dispatch_next_header(gnrc_pktsnip_t *pkt, unsigned nh,
static void *_event_loop(void *args)
{
msg_t msg, reply, msg_q[GNRC_IPV6_MSG_QUEUE_SIZE];
msg_t msg, reply, msg_q[CONFIG_GNRC_IPV6_MSG_QUEUE_SIZE];
gnrc_netreg_entry_t me_reg = GNRC_NETREG_ENTRY_INIT_PID(GNRC_NETREG_DEMUX_CTX_ALL,
sched_active_pid);
(void)args;
msg_init_queue(msg_q, GNRC_IPV6_MSG_QUEUE_SIZE);
msg_init_queue(msg_q, CONFIG_GNRC_IPV6_MSG_QUEUE_SIZE);
/* initialize fragmentation data-structures */
#ifdef MODULE_GNRC_IPV6_EXT_FRAG