CONFIG_NET_BUF_RX_COUNT

How many network buffers are allocated for receiving data

Type: int

Help

Each data buffer will occupy CONFIG_NET_BUF_DATA_SIZE + smallish header (sizeof(struct net_buf)) amount of data.

Direct dependencies

NETWORKING

(Includes any dependencies from if’s and menus.)

Defaults

Kconfig definition

At subsys/net/ip/Kconfig:380

Included via Kconfig:10Kconfig.zephyr:35subsys/Kconfig:22subsys/net/Kconfig:91

Menu path: (top menu) → Networking → IP stack

config NET_BUF_RX_COUNT
    int
    prompt "How many network buffers are allocated for receiving data" if NETWORKING
    default 36 if NET_L2_ETHERNET && NETWORKING
    default 16 if NETWORKING
    depends on NETWORKING
    help
      Each data buffer will occupy CONFIG_NET_BUF_DATA_SIZE + smallish
      header (sizeof(struct net_buf)) amount of data.

(Definitions include propagated dependencies, including from if’s and menus.)