Lines Matching defs:reply
1718 struct sk_buff *reply)
1725 return nla_put_nohdr(reply, sizeof(zone_limit), &zone_limit);
1731 struct sk_buff *reply)
1743 return nla_put_nohdr(reply, sizeof(zone_limit), &zone_limit);
1749 struct sk_buff *reply)
1762 err = ovs_ct_limit_get_default_limit(info, reply);
1774 net, info->data, zone, limit, reply);
1791 struct sk_buff *reply)
1797 err = ovs_ct_limit_get_default_limit(info, reply);
1806 ct_limit->zone, ct_limit->limit, reply);
1820 struct sk_buff *reply;
1826 reply = ovs_ct_limit_cmd_reply_start(info, OVS_CT_LIMIT_CMD_SET,
1828 if (IS_ERR(reply))
1829 return PTR_ERR(reply);
1843 genlmsg_end(reply, ovs_reply_header);
1844 return genlmsg_reply(reply, info);
1847 nlmsg_free(reply);
1854 struct sk_buff *reply;
1860 reply = ovs_ct_limit_cmd_reply_start(info, OVS_CT_LIMIT_CMD_DEL,
1862 if (IS_ERR(reply))
1863 return PTR_ERR(reply);
1875 genlmsg_end(reply, ovs_reply_header);
1876 return genlmsg_reply(reply, info);
1879 nlmsg_free(reply);
1887 struct sk_buff *reply;
1894 reply = ovs_ct_limit_cmd_reply_start(info, OVS_CT_LIMIT_CMD_GET,
1896 if (IS_ERR(reply))
1897 return PTR_ERR(reply);
1899 nla_reply = nla_nest_start_noflag(reply, OVS_CT_LIMIT_ATTR_ZONE_LIMIT);
1908 reply);
1913 reply);
1918 nla_nest_end(reply, nla_reply);
1919 genlmsg_end(reply, ovs_reply_header);
1920 return genlmsg_reply(reply, info);
1923 nlmsg_free(reply);