:orphan: .. title:: NET_BUF_WARN_ALLOC_INTERVAL .. option:: CONFIG_NET_BUF_WARN_ALLOC_INTERVAL *Interval of Network buffer allocation warnings* Type: ``int`` 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. Direct dependencies =================== \ :option:`NET_BUF_LOG ` && \ :option:`NET_BUF ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/Kconfig:38`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` Menu path: (Top) → Sub Systems and OS Services → Networking → Network buffer support .. parsed-literal:: config NET_BUF_WARN_ALLOC_INTERVAL int "Interval of Network buffer allocation warnings" range 0 60 default 1 depends on \ :option:`NET_BUF_LOG ` && \ :option:`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.)*