1# Stack usage related options 2 3# Copyright (c) 2016 Intel Corporation. 4# SPDX-License-Identifier: Apache-2.0 5 6menu "Stack usage" 7 8config NET_TX_STACK_SIZE 9 int "TX thread stack size" 10 default 1200 11 help 12 Set the TX thread stack size in bytes. The TX thread is waiting 13 data from application. Each network interface will start one 14 TX thread for sending network packets destined to it. 15 This value is a baseline and the actual TX stack size might 16 be bigger depending on what features are enabled. 17 18config NET_RX_STACK_SIZE 19 int "RX thread stack size" 20 default 1500 21 help 22 Set the RX thread stack size in bytes. The RX thread is waiting 23 data from network. There is one RX thread in the system. 24 This value is a baseline and the actual RX stack size might 25 be bigger depending on what features are enabled. 26 27endmenu 28