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()
971 struct sk_buff *args; in tipc_nl_compat_publ_dump() local
974 args = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); in tipc_nl_compat_publ_dump()
975 if (!args) in tipc_nl_compat_publ_dump()
978 hdr = genlmsg_put(args, 0, 0, &tipc_genl_family, NLM_F_MULTI, in tipc_nl_compat_publ_dump()
981 kfree_skb(args); in tipc_nl_compat_publ_dump()
985 nest = nla_nest_start_noflag(args, TIPC_NLA_SOCK); in tipc_nl_compat_publ_dump()
987 kfree_skb(args); in tipc_nl_compat_publ_dump()
991 if (nla_put_u32(args, TIPC_NLA_SOCK_REF, sock)) { in tipc_nl_compat_publ_dump()
992 kfree_skb(args); in tipc_nl_compat_publ_dump()
996 nla_nest_end(args, nest); in tipc_nl_compat_publ_dump()
997 genlmsg_end(args, hdr); in tipc_nl_compat_publ_dump()
1002 err = __tipc_nl_compat_dumpit(&dump, msg, args); in tipc_nl_compat_publ_dump()
1004 kfree_skb(args); in tipc_nl_compat_publ_dump()