:orphan: .. title:: NET_BUF_WARN_ALLOC_INTERVAL .. option:: CONFIG_NET_BUF_WARN_ALLOC_INTERVAL *Interval of Network buffer allocation warnings* Type: ``int`` Help ==== .. code-block:: none Interval in seconds of Network buffer allocation warnings which are generated when a buffer cannot immediately be allocated with K_FOREVER which may lead to deadlocks. Setting it to 0 makes warnings to be printed only once per allocation. Direct dependencies =================== \ :option:`NET_BUF_LOG ` && \ :option:`NET_BUF ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== At ``/net/Kconfig:38`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``/Kconfig:39`` Menu path: (Top) → Sub Systems and OS Services → Networking → Network buffer support .. code-block:: kconfig config NET_BUF_WARN_ALLOC_INTERVAL int "Interval of Network buffer allocation warnings" range 0 60 default 1 depends on NET_BUF_LOG && NET_BUF help Interval in seconds of Network buffer allocation warnings which are generated when a buffer cannot immediately be allocated with K_FOREVER which may lead to deadlocks. Setting it to 0 makes warnings to be printed only once per allocation. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*