Lines Matching refs:extack
87 #define NL_SET_ERR_MSG(extack, msg) do { \ argument
89 struct netlink_ext_ack *__extack = (extack); \
95 #define NL_SET_ERR_MSG_MOD(extack, msg) \ argument
96 NL_SET_ERR_MSG((extack), KBUILD_MODNAME ": " msg)
98 #define NL_SET_BAD_ATTR(extack, attr) do { \ argument
99 if ((extack)) \
100 (extack)->bad_attr = (attr); \
103 #define NL_SET_ERR_MSG_ATTR(extack, attr, msg) do { \ argument
105 struct netlink_ext_ack *__extack = (extack); \
113 static inline void nl_set_extack_cookie_u64(struct netlink_ext_ack *extack, in nl_set_extack_cookie_u64() argument
118 memcpy(extack->cookie, &__cookie, sizeof(__cookie)); in nl_set_extack_cookie_u64()
119 extack->cookie_len = sizeof(__cookie); in nl_set_extack_cookie_u64()
127 const struct netlink_ext_ack *extack);
189 struct netlink_ext_ack *extack; member