| /f-stack/dpdk/drivers/net/cxgbe/base/ |
| H A D | t4vf_hw.c | 72 int size, void *rpl, bool sleep_ok) in t4vf_wr_mbox_core() argument 233 if (rpl) { in t4vf_wr_mbox_core() 237 memcpy(rpl, cmd_rpl, size); in t4vf_wr_mbox_core() 344 struct fw_params_cmd cmd, rpl; in t4vf_query_params() local 522 struct fw_rss_glb_config_cmd cmd, rpl; in t4vf_get_rss_glb_config() local 593 struct fw_pfvf_cmd cmd, rpl; in t4vf_get_vfres() local 613 word = be32_to_cpu(rpl.niqflint_niq); in t4vf_get_vfres() 617 word = be32_to_cpu(rpl.type_to_neq); in t4vf_get_vfres() 621 word = be32_to_cpu(rpl.tc_to_nexactf); in t4vf_get_vfres() 658 struct fw_vi_stats_cmd cmd, rpl; in t4vf_get_port_stats_fw() local [all …]
|
| H A D | common.h | 443 int size, void *rpl, bool sleep_ok, int timeout); 446 void *rpl, bool sleep_ok); 449 const void *cmd, int size, void *rpl, in t4_wr_mbox_timeout() argument 459 int size, void *rpl) in t4_wr_mbox() argument 461 return t4_wr_mbox_meat(adap, mbox, cmd, size, rpl, true); in t4_wr_mbox() 465 int size, void *rpl) in t4_wr_mbox_ns() argument 467 return t4_wr_mbox_meat(adap, mbox, cmd, size, rpl, false); in t4_wr_mbox_ns() 473 int size, void *rpl) in t4vf_wr_mbox() argument 475 return t4vf_wr_mbox_core(adapter, cmd, size, rpl, true); in t4vf_wr_mbox() 479 int size, void *rpl) in t4vf_wr_mbox_ns() argument [all …]
|
| H A D | t4_hw.c | 249 *rpl++ = cpu_to_be64(t4_read_reg64(adap, mbox_addr)); in get_mbox_rpl() 512 } else if (rpl) { in t4_wr_mbox_meat_timeout() 513 get_mbox_rpl(adap, rpl, size / 8, data_reg); in t4_wr_mbox_meat_timeout() 540 void *rpl, bool sleep_ok) in t4_wr_mbox_meat() argument 2493 struct fw_pfvf_cmd cmd, rpl; in t4_get_pfres() local 2515 word = be32_to_cpu(rpl.niqflint_niq); in t4_get_pfres() 2518 word = be32_to_cpu(rpl.type_to_neq); in t4_get_pfres() 2521 word = be32_to_cpu(rpl.r_caps_to_nethctrl); in t4_get_pfres() 4682 u8 opcode = *(const u8 *)rpl; in t4_handle_fw_rpl() 4690 const struct fw_port_cmd *p = (const void *)rpl; in t4_handle_fw_rpl() [all …]
|
| /f-stack/dpdk/drivers/net/cxgbe/ |
| H A D | smt.c | 10 const struct cpl_smt_write_rpl *rpl) in cxgbe_do_smt_write_rpl() argument 12 unsigned int smtidx = G_TID_TID(GET_TID(rpl)); in cxgbe_do_smt_write_rpl() 15 if (unlikely(rpl->status != CPL_ERR_NONE)) { in cxgbe_do_smt_write_rpl() 20 rpl->status, smtidx); in cxgbe_do_smt_write_rpl()
|
| H A D | l2t.c | 26 const struct cpl_l2t_write_rpl *rpl) in cxgbe_do_l2t_write_rpl() argument 29 unsigned int tid = GET_TID(rpl); in cxgbe_do_l2t_write_rpl() 32 if (unlikely(rpl->status != CPL_ERR_NONE)) { in cxgbe_do_l2t_write_rpl() 35 rpl->status, l2t_idx); in cxgbe_do_l2t_write_rpl()
|
| H A D | cxgbe_filter.h | 259 void cxgbe_filter_rpl(struct adapter *adap, const struct cpl_set_tcb_rpl *rpl); 269 const struct cpl_act_open_rpl *rpl); 271 const struct cpl_abort_rpl_rss *rpl);
|
| H A D | smt.h | 40 const struct cpl_smt_write_rpl *rpl);
|
| H A D | l2t.h | 57 const struct cpl_l2t_write_rpl *rpl);
|
| H A D | cxgbe_filter.c | 1165 const struct cpl_act_open_rpl *rpl) in cxgbe_hash_filter_rpl() argument 1170 unsigned int tid = GET_TID(rpl); in cxgbe_hash_filter_rpl() 1172 (be32_to_cpu(rpl->atid_status))); in cxgbe_hash_filter_rpl() 1173 unsigned int status = G_AOPEN_STATUS(be32_to_cpu(rpl->atid_status)); in cxgbe_hash_filter_rpl() 1242 void cxgbe_filter_rpl(struct adapter *adap, const struct cpl_set_tcb_rpl *rpl) in cxgbe_filter_rpl() argument 1245 unsigned int tid = GET_TID(rpl); in cxgbe_filter_rpl() 1262 unsigned int ret = G_COOKIE(rpl->cookie); in cxgbe_filter_rpl() 1441 const struct cpl_abort_rpl_rss *rpl) in cxgbe_hash_del_filter_rpl() argument 1446 unsigned int tid = GET_TID(rpl); in cxgbe_hash_del_filter_rpl()
|
| /f-stack/freebsd/netipsec/ |
| H A D | key_debug.c | 807 kdebug_secreplay(struct secreplay *rpl) in kdebug_secreplay() argument 811 IPSEC_ASSERT(rpl != NULL, ("null rpl")); in kdebug_secreplay() 813 rpl->count, rpl->bitmap_size, rpl->wsize, rpl->last); in kdebug_secreplay() 815 if (rpl->bitmap == NULL) { in kdebug_secreplay() 821 for (len = 0; len < rpl->bitmap_size*4; len++) { in kdebug_secreplay() 823 printf("%u", (((rpl->bitmap)[len] >> l) & 1) ? 1 : 0); in kdebug_secreplay()
|
| /f-stack/freebsd/net/ |
| H A D | if_pfsync.h | 200 u_int32_t rpl; member
|
| /f-stack/tools/compat/include/net/ |
| H A D | if_pfsync.h | 200 u_int32_t rpl; member
|
| /f-stack/freebsd/netpfil/pf/ |
| H A D | if_pfsync.c | 1279 pt->rpl = ntohl(pt->rpl); in pfsync_update_net_tdb() 1283 if (pt->rpl < tdb->tdb_rpl || in pfsync_update_net_tdb() 1288 tdb->tdb_rpl = pt->rpl; in pfsync_update_net_tdb()
|