• Home
  • Raw
  • Download

Lines Matching refs:reply

2037 					  struct sk_buff *reply)  in ovs_ct_limit_get_default_limit()  argument
2044 return nla_put_nohdr(reply, sizeof(zone_limit), &zone_limit); in ovs_ct_limit_get_default_limit()
2050 struct sk_buff *reply) in __ovs_ct_limit_get_zone_limit() argument
2062 return nla_put_nohdr(reply, sizeof(zone_limit), &zone_limit); in __ovs_ct_limit_get_zone_limit()
2068 struct sk_buff *reply) in ovs_ct_limit_get_zone_limit() argument
2081 err = ovs_ct_limit_get_default_limit(info, reply); in ovs_ct_limit_get_zone_limit()
2093 net, info->data, zone, limit, reply); in ovs_ct_limit_get_zone_limit()
2110 struct sk_buff *reply) in ovs_ct_limit_get_all_zone_limit() argument
2116 err = ovs_ct_limit_get_default_limit(info, reply); in ovs_ct_limit_get_all_zone_limit()
2125 ct_limit->zone, ct_limit->limit, reply); in ovs_ct_limit_get_all_zone_limit()
2139 struct sk_buff *reply; in ovs_ct_limit_cmd_set() local
2145 reply = ovs_ct_limit_cmd_reply_start(info, OVS_CT_LIMIT_CMD_SET, in ovs_ct_limit_cmd_set()
2147 if (IS_ERR(reply)) in ovs_ct_limit_cmd_set()
2148 return PTR_ERR(reply); in ovs_ct_limit_cmd_set()
2162 genlmsg_end(reply, ovs_reply_header); in ovs_ct_limit_cmd_set()
2163 return genlmsg_reply(reply, info); in ovs_ct_limit_cmd_set()
2166 nlmsg_free(reply); in ovs_ct_limit_cmd_set()
2173 struct sk_buff *reply; in ovs_ct_limit_cmd_del() local
2179 reply = ovs_ct_limit_cmd_reply_start(info, OVS_CT_LIMIT_CMD_DEL, in ovs_ct_limit_cmd_del()
2181 if (IS_ERR(reply)) in ovs_ct_limit_cmd_del()
2182 return PTR_ERR(reply); in ovs_ct_limit_cmd_del()
2194 genlmsg_end(reply, ovs_reply_header); in ovs_ct_limit_cmd_del()
2195 return genlmsg_reply(reply, info); in ovs_ct_limit_cmd_del()
2198 nlmsg_free(reply); in ovs_ct_limit_cmd_del()
2206 struct sk_buff *reply; in ovs_ct_limit_cmd_get() local
2213 reply = ovs_ct_limit_cmd_reply_start(info, OVS_CT_LIMIT_CMD_GET, in ovs_ct_limit_cmd_get()
2215 if (IS_ERR(reply)) in ovs_ct_limit_cmd_get()
2216 return PTR_ERR(reply); in ovs_ct_limit_cmd_get()
2218 nla_reply = nla_nest_start_noflag(reply, OVS_CT_LIMIT_ATTR_ZONE_LIMIT); in ovs_ct_limit_cmd_get()
2227 reply); in ovs_ct_limit_cmd_get()
2232 reply); in ovs_ct_limit_cmd_get()
2237 nla_nest_end(reply, nla_reply); in ovs_ct_limit_cmd_get()
2238 genlmsg_end(reply, ovs_reply_header); in ovs_ct_limit_cmd_get()
2239 return genlmsg_reply(reply, info); in ovs_ct_limit_cmd_get()
2242 nlmsg_free(reply); in ovs_ct_limit_cmd_get()