Lines Matching defs:reply
566 * would be reported as new related packets, while reply
2026 struct sk_buff *reply)
2033 return nla_put_nohdr(reply, sizeof(zone_limit), &zone_limit);
2039 struct sk_buff *reply)
2051 return nla_put_nohdr(reply, sizeof(zone_limit), &zone_limit);
2057 struct sk_buff *reply)
2070 err = ovs_ct_limit_get_default_limit(info, reply);
2082 net, info->data, zone, limit, reply);
2099 struct sk_buff *reply)
2105 err = ovs_ct_limit_get_default_limit(info, reply);
2114 ct_limit->zone, ct_limit->limit, reply);
2128 struct sk_buff *reply;
2134 reply = ovs_ct_limit_cmd_reply_start(info, OVS_CT_LIMIT_CMD_SET,
2136 if (IS_ERR(reply))
2137 return PTR_ERR(reply);
2151 genlmsg_end(reply, ovs_reply_header);
2152 return genlmsg_reply(reply, info);
2155 nlmsg_free(reply);
2162 struct sk_buff *reply;
2168 reply = ovs_ct_limit_cmd_reply_start(info, OVS_CT_LIMIT_CMD_DEL,
2170 if (IS_ERR(reply))
2171 return PTR_ERR(reply);
2183 genlmsg_end(reply, ovs_reply_header);
2184 return genlmsg_reply(reply, info);
2187 nlmsg_free(reply);
2195 struct sk_buff *reply;
2202 reply = ovs_ct_limit_cmd_reply_start(info, OVS_CT_LIMIT_CMD_GET,
2204 if (IS_ERR(reply))
2205 return PTR_ERR(reply);
2207 nla_reply = nla_nest_start_noflag(reply, OVS_CT_LIMIT_ATTR_ZONE_LIMIT);
2216 reply);
2221 reply);
2226 nla_nest_end(reply, nla_reply);
2227 genlmsg_end(reply, ovs_reply_header);
2228 return genlmsg_reply(reply, info);
2231 nlmsg_free(reply);