:orphan: .. title:: NET_RX_STACK_SIZE .. option:: CONFIG_NET_RX_STACK_SIZE *RX thread stack size* Type: ``int`` Help ==== Set the RX thread stack size in bytes. The RX thread is waiting data from network. There is one RX thread in the system. This value is a baseline and the actual RX stack size might be bigger depending on what features are enabled. Direct dependencies =================== \ :option:`SPARC ` || \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 2048 - 1500 Kconfig definitions =================== .. highlight:: kconfig At ``arch/sparc/Kconfig:62`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` Menu path: (Top) → SPARC Options .. parsed-literal:: config NET_RX_STACK_SIZE int default 2048 depends on \ :option:`SPARC ` ---- At ``subsys/net/ip/Kconfig.stack:18`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:87`` → ``subsys/net/ip/Kconfig:826`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → IP stack → Stack usage .. parsed-literal:: config NET_RX_STACK_SIZE int "RX thread stack size" default 1500 depends on \ :option:`NETWORKING ` help Set the RX thread stack size in bytes. The RX thread is waiting data from network. There is one RX thread in the system. This value is a baseline and the actual RX stack size might be bigger depending on what features are enabled. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*