Lines Matching refs:args
128 va_list args; in tipc_tlv_sprintf() local
136 va_start(args, fmt); in tipc_tlv_sprintf()
137 n = vscnprintf(buf, rem, fmt, args); in tipc_tlv_sprintf()
138 va_end(args); in tipc_tlv_sprintf()
968 struct sk_buff *args; in tipc_nl_compat_publ_dump() local
971 args = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); in tipc_nl_compat_publ_dump()
972 if (!args) in tipc_nl_compat_publ_dump()
975 hdr = genlmsg_put(args, 0, 0, &tipc_genl_family, NLM_F_MULTI, in tipc_nl_compat_publ_dump()
978 kfree_skb(args); in tipc_nl_compat_publ_dump()
982 nest = nla_nest_start(args, TIPC_NLA_SOCK); in tipc_nl_compat_publ_dump()
984 kfree_skb(args); in tipc_nl_compat_publ_dump()
988 if (nla_put_u32(args, TIPC_NLA_SOCK_REF, sock)) { in tipc_nl_compat_publ_dump()
989 kfree_skb(args); in tipc_nl_compat_publ_dump()
993 nla_nest_end(args, nest); in tipc_nl_compat_publ_dump()
994 genlmsg_end(args, hdr); in tipc_nl_compat_publ_dump()
999 err = __tipc_nl_compat_dumpit(&dump, msg, args); in tipc_nl_compat_publ_dump()
1001 kfree_skb(args); in tipc_nl_compat_publ_dump()