Home
last modified time | relevance | path

Searched refs:NLMSG_TAIL (Results 1 – 2 of 2) sorted by relevance

/linux/tools/testing/selftests/bpf/
H A Dnetlink_helpers.c323 rta = NLMSG_TAIL(n); in addattr_l()
340 memcpy(NLMSG_TAIL(n), data, len); in addraw_l()
341 memset((void *) NLMSG_TAIL(n) + len, 0, NLMSG_ALIGN(len) - len); in addraw_l()
348 struct rtattr *nest = NLMSG_TAIL(n); in addattr_nest()
356 nest->rta_len = (void *)NLMSG_TAIL(n) - (void *)nest; in addattr_nest_end()
H A Dnetlink_helpers.h23 #define NLMSG_TAIL(nmsg) \ macro