Home
last modified time | relevance | path

Searched refs:veb (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/net/ethernet/intel/i40e/ !
H A Di40e_main.c38 static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
53 static int i40e_veb_get_bw_info(struct i40e_veb *veb);
558 struct i40e_veb *veb; in i40e_pf_reset_stats() local
565 i40e_pf_for_each_veb(pf, i, veb) { in i40e_pf_reset_stats()
566 memset(&veb->stats, 0, sizeof(veb->stats)); in i40e_pf_reset_stats()
567 memset(&veb->stats_offsets, 0, sizeof(veb->stats_offsets)); in i40e_pf_reset_stats()
568 memset(&veb->tc_stats, 0, sizeof(veb in i40e_pf_reset_stats()
778 i40e_update_veb_stats(struct i40e_veb * veb) i40e_update_veb_stats() argument
6712 i40e_veb_config_tc(struct i40e_veb * veb,u8 enabled_tc) i40e_veb_config_tc() argument
6765 struct i40e_veb *veb; i40e_dcb_reconfigure() local
9858 i40e_veb_link_event(struct i40e_veb * veb,bool link_up) i40e_veb_link_event() argument
9881 struct i40e_veb *veb = i40e_pf_get_main_veb(pf); i40e_link_event() local
9968 struct i40e_veb *veb; i40e_watchdog_subtask() local
10322 i40e_config_bridge_mode(struct i40e_veb * veb) i40e_config_bridge_mode() argument
10343 i40e_reconstitute_veb(struct i40e_veb * veb) i40e_reconstitute_veb() argument
10810 struct i40e_veb *veb; i40e_rebuild() local
13066 struct i40e_veb *veb; i40e_ndo_bridge_setlink() local
13135 struct i40e_veb *veb; i40e_ndo_bridge_getlink() local
13794 struct i40e_veb *veb; i40e_is_vsi_uplink_mode_veb() local
14071 struct i40e_veb *veb; i40e_vsi_release() local
14311 struct i40e_veb *veb = NULL; i40e_vsi_setup() local
14485 i40e_veb_get_bw_info(struct i40e_veb * veb) i40e_veb_get_bw_info() argument
14540 struct i40e_veb *veb; i40e_veb_mem_alloc() local
14589 struct i40e_veb *veb; i40e_switch_branch_release() local
14620 i40e_veb_clear(struct i40e_veb * veb) i40e_veb_clear() argument
14641 i40e_veb_release(struct i40e_veb * veb) i40e_veb_release() argument
14683 i40e_add_veb(struct i40e_veb * veb,struct i40e_vsi * vsi) i40e_add_veb() argument
14747 struct i40e_veb *veb; i40e_veb_setup() local
14811 struct i40e_veb *veb; i40e_setup_pf_switch_element() local
14990 struct i40e_veb *veb; i40e_setup_pf_switch() local
16118 struct i40e_veb *veb; i40e_remove() local
[all...]
H A Di40e_debugfs.c674 * i40e_dbg_dump_veb_seid - handles dump stats of a single given veb
680 struct i40e_veb *veb; in i40e_dbg_dump_veb_seid() local
682 veb = i40e_pf_get_veb_by_seid(pf, seid); in i40e_dbg_dump_veb_seid()
683 if (!veb) { in i40e_dbg_dump_veb_seid()
684 dev_info(&pf->pdev->dev, "can't find veb %d\n", seid); in i40e_dbg_dump_veb_seid()
688 "veb idx=%d stats_ic=%d seid=%d uplink=%d mode=%s\n", in i40e_dbg_dump_veb_seid()
689 veb->idx, veb->stats_idx, veb->seid, veb in i40e_dbg_dump_veb_seid()
700 struct i40e_veb *veb; i40e_dbg_dump_veb_all() local
833 struct i40e_veb *veb; i40e_dbg_command_write() local
880 struct i40e_veb *veb; i40e_dbg_command_write() local
[all...]
H A Di40e.h560 struct i40e_veb *veb[I40E_MAX_VEB]; member
722 * Find and return next non-NULL VEB pointer in pf->veb array and
729 if (pf->veb[*idx]) in __i40e_pf_next_veb()
730 return pf->veb[*idx]; in __i40e_pf_next_veb()
1185 void i40e_update_veb_stats(struct i40e_veb *veb);
1220 void i40e_veb_release(struct i40e_veb *veb);
1222 int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc);
1399 struct i40e_veb *veb; in i40e_pf_get_veb_by_seid() local
1402 i40e_pf_for_each_veb(pf, i, veb) in i40e_pf_get_veb_by_seid()
1403 if (veb in i40e_pf_get_veb_by_seid()
[all...]
H A Di40e_ethtool.c258 I40E_VEB_STAT("veb.rx_bytes", stats.rx_bytes),
259 I40E_VEB_STAT("veb.tx_bytes", stats.tx_bytes),
260 I40E_VEB_STAT("veb.rx_unicast", stats.rx_unicast),
261 I40E_VEB_STAT("veb.tx_unicast", stats.tx_unicast),
262 I40E_VEB_STAT("veb.rx_multicast", stats.rx_multicast),
263 I40E_VEB_STAT("veb.tx_multicast", stats.tx_multicast),
264 I40E_VEB_STAT("veb.rx_broadcast", stats.rx_broadcast),
265 I40E_VEB_STAT("veb.tx_broadcast", stats.tx_broadcast),
266 I40E_VEB_STAT("veb.rx_discards", stats.rx_discards),
267 I40E_VEB_STAT("veb
2409 struct i40e_veb *veb = NULL; i40e_get_ethtool_stats() local
[all...]
/linux/drivers/video/fbdev/ !
H A Dimsttfb.c309 __u16 hes, heb, hsb, ht, ves, veb, vsb, vt, vil; member
471 __u32 MHz, hes, heb, veb, htp, vtp; in compute_imstt_regvals_ibm() local
475 hes = 0x0008; heb = 0x0012; veb = 0x002a; htp = 10; vtp = 2; in compute_imstt_regvals_ibm()
479 hes = 0x0005; heb = 0x0020; veb = 0x0028; htp = 8; vtp = 3; in compute_imstt_regvals_ibm()
483 hes = 0x000a; heb = 0x001c; veb = 0x0020; htp = 8; vtp = 3; in compute_imstt_regvals_ibm()
487 hes = 0x0012; heb = 0x0022; veb = 0x0031; htp = 4; vtp = 3; in compute_imstt_regvals_ibm()
491 hes = 0x0012; heb = 0x002f; veb = 0x0029; htp = 4; vtp = 1; in compute_imstt_regvals_ibm()
495 hes = 0x0018; heb = 0x0040; veb = 0x002a; htp = 4; vtp = 3; in compute_imstt_regvals_ibm()
509 init->veb = veb; in compute_imstt_regvals_ibm()
[all...]