Skip to content

Commit b523a2b

Browse files
committed
[nrf noup] lib: net_buf: buf: Revert alloc DBG to WRN change
This warning is raised in many places when using bluetooth. However, it is not very useful for the user to see. This is a noup PR as there is currently more changes coming in around this code and how to handle deadlocks in zephyr. Signed-off-by: Sean Madigan <[email protected]>
1 parent c8aea90 commit b523a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/net_buf/buf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ struct net_buf *net_buf_alloc_len(struct net_buf_pool *pool, size_t size,
273273

274274
if (!K_TIMEOUT_EQ(timeout, K_NO_WAIT) &&
275275
k_current_get() == k_work_queue_thread_get(&k_sys_work_q)) {
276-
LOG_WRN("Timeout discarded. No blocking in syswq");
276+
LOG_DBG("Timeout discarded. No blocking in syswq");
277277
timeout = K_NO_WAIT;
278278
}
279279

0 commit comments

Comments
 (0)