netlink: force uninline of nl_receive_message()

The entire netlink(4) message processing thread is all inlined into
nl_taskqueue_handler() making it difficult to dtrace(1) on a message
level.
This commit is contained in:
Gleb Smirnoff
2026-02-16 15:39:29 -08:00
parent 757b0bf5cf
commit 11c1b69885
+1 -1
View File
@@ -256,7 +256,7 @@ nl_send(struct nl_writer *nw, struct nlpcb *nlp)
}
}
static int
static __noinline int
nl_receive_message(struct nlmsghdr *hdr, int remaining_length,
struct nlpcb *nlp, struct nl_pstate *npt)
{