/linux-6.3-rc2/lib/dim/ |
A D | net_dim.c | 21 {.usec = 1, .pkts = NET_DIM_DEFAULT_RX_CQ_PKTS_FROM_EQE,}, \ 29 {.usec = 2, .pkts = 256,}, \ 30 {.usec = 8, .pkts = 128,}, \ 31 {.usec = 16, .pkts = 64,}, \ 32 {.usec = 32, .pkts = 64,}, \ 33 {.usec = 64, .pkts = 64,} \ 45 {.usec = 5, .pkts = 128,}, \ 46 {.usec = 8, .pkts = 64,}, \ 47 {.usec = 16, .pkts = 32,}, \ 48 {.usec = 32, .pkts = 32,}, \ [all …]
|
/linux-6.3-rc2/drivers/bluetooth/ |
A D | h4_recv.h | 45 const struct h4_recv_pkt *pkts, in h4_recv_buf() argument 57 if (buffer[0] != (&pkts[i])->type) in h4_recv_buf() 60 skb = bt_skb_alloc((&pkts[i])->maxlen, in h4_recv_buf() 65 hci_skb_pkt_type(skb) = (&pkts[i])->type; in h4_recv_buf() 66 hci_skb_expect(skb) = (&pkts[i])->hlen; in h4_recv_buf() 98 if (skb->len == (&pkts[i])->hlen) { in h4_recv_buf() 101 switch ((&pkts[i])->lsize) { in h4_recv_buf() 108 dlen = skb->data[(&pkts[i])->loff]; in h4_recv_buf() 119 (&pkts[i])->loff); in h4_recv_buf() 135 (&pkts[i])->recv(hdev, skb); in h4_recv_buf() [all …]
|
A D | hci_h4.c | 178 if (buffer[0] != (&pkts[i])->type) in h4_recv_buf() 181 skb = bt_skb_alloc((&pkts[i])->maxlen, in h4_recv_buf() 186 hci_skb_pkt_type(skb) = (&pkts[i])->type; in h4_recv_buf() 187 hci_skb_expect(skb) = (&pkts[i])->hlen; in h4_recv_buf() 210 if (hci_skb_pkt_type(skb) == (&pkts[i])->type) in h4_recv_buf() 219 if (skb->len == (&pkts[i])->hlen) { in h4_recv_buf() 222 switch ((&pkts[i])->lsize) { in h4_recv_buf() 229 dlen = skb->data[(&pkts[i])->loff]; in h4_recv_buf() 240 (&pkts[i])->loff); in h4_recv_buf() 259 (&pkts[i])->recv(hdev, skb); in h4_recv_buf() [all …]
|
/linux-6.3-rc2/tools/testing/selftests/bpf/prog_tests/ |
A D | l4lb_all.c | 16 __u64 pkts; in test_l4lb() member 27 __u64 bytes = 0, pkts = 0; in test_l4lb() local 81 pkts += stats[i].pkts; in test_l4lb() 84 pkts != NUM_ITER * 2)) in test_l4lb() 85 printf("test_l4lb:FAIL:stats %lld %lld\n", bytes, pkts); in test_l4lb()
|
A D | xdp_noinline.c | 18 __u64 pkts; in test_xdp_noinline() member 29 __u64 bytes = 0, pkts = 0; in test_xdp_noinline() local 68 pkts += stats[i].pkts; in test_xdp_noinline() 71 ASSERT_EQ(pkts, NUM_ITER * 2, "stats pkts"); in test_xdp_noinline()
|
/linux-6.3-rc2/tools/testing/selftests/drivers/net/netdevsim/ |
A D | hw_stats_l3.sh | 318 local pkts=$(get_hwstat dummy1 l3 rx.packets) 319 ((pkts < 10)) 324 local pkts=$(get_hwstat dummy1 l3 rx.packets) 325 ((pkts >= 20)) 333 local pkts=$(get_hwstat dummy1 l3 rx.packets) 334 ((pkts < 10)) 345 local pkts=$(get_hwstat dummy1 l3 rx.packets) 346 ((pkts < 10)) 390 local pkts=$(get_hwstat dummy1 l3 rx.packets) 391 ((pkts < 10)) [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/huawei/hinic/ |
A D | hinic_rx.c | 58 rxq_stats->pkts = 0; in hinic_rxq_clean_stats() 78 stats->pkts = rxq_stats->pkts; in hinic_rxq_get_stats() 364 int num_wqes, pkts = 0; in rxq_recv() local 426 pkts++; in rxq_recv() 450 rxq->rxq_stats.pkts += pkts; in rxq_recv() 454 return pkts; in rxq_recv() 462 int pkts; in rx_poll() local 465 if (pkts >= budget) in rx_poll() 475 return pkts; in rx_poll() 584 int err, pkts; in hinic_init_rxq() local [all …]
|
A D | hinic_tx.c | 82 txq_stats->pkts = 0; in hinic_txq_clean_stats() 103 stats->pkts = txq_stats->pkts; in hinic_txq_get_stats() 707 int nr_sges, pkts = 0; in free_tx_poll() local 733 pkts++; in free_tx_poll() 742 } while (pkts < budget); in free_tx_poll() 761 txq->txq_stats.pkts += pkts; in free_tx_poll() 764 if (pkts < budget) { in free_tx_poll() 771 return pkts; in free_tx_poll()
|
/linux-6.3-rc2/net/netfilter/ |
A D | xt_connbytes.c | 28 u_int64_t pkts = 0; in connbytes_mt() local 74 pkts = atomic64_read(&counters[IP_CT_DIR_ORIGINAL].packets); in connbytes_mt() 78 pkts = atomic64_read(&counters[IP_CT_DIR_REPLY].packets); in connbytes_mt() 83 pkts = atomic64_read(&counters[IP_CT_DIR_ORIGINAL].packets) + in connbytes_mt() 87 if (pkts != 0) in connbytes_mt() 88 what = div64_u64(bytes, pkts); in connbytes_mt()
|
A D | nfnetlink_acct.c | 30 atomic64_t pkts; member 89 atomic64_set(&matching->pkts, 0); in nfnl_acct_new() 133 atomic64_set(&nfacct->pkts, in nfnl_acct_new() 147 u64 pkts, bytes; in nfnl_acct_fill_info() local 161 pkts = atomic64_xchg(&acct->pkts, 0); in nfnl_acct_fill_info() 167 pkts = atomic64_read(&acct->pkts); in nfnl_acct_fill_info() 170 if (nla_put_be64(skb, NFACCT_PKTS, cpu_to_be64(pkts), in nfnl_acct_fill_info() 455 atomic64_inc(&nfacct->pkts); in nfnl_acct_update() 490 atomic64_read(&nfacct->pkts) : atomic64_read(&nfacct->bytes); in nfnl_acct_overquota()
|
/linux-6.3-rc2/tools/testing/selftests/net/forwarding/ |
A D | pedit_ip.sh | 133 local pkts 134 pkts=$(busywait "$TC_HIT_TIMEOUT" until_counter_is ">= 10" \ 136 check_err $? "Expected to get 10 packets, but got $pkts." 138 pkts=$(tc_rule_handle_stats_get "$pedit_locus" 101) 139 ((pkts >= 10)) 140 check_err $? "Expected to get 10 packets on pedit rule, but got $pkts."
|
A D | pedit_l4port.sh | 138 local pkts 139 pkts=$(busywait "$TC_HIT_TIMEOUT" until_counter_is ">= 10" \ 141 check_err $? "Expected to get 10 packets, but got $pkts." 143 pkts=$(tc_rule_handle_stats_get "$pedit_locus" 101) 144 ((pkts >= 10)) 145 check_err $? "Expected to get 10 packets on pedit rule, but got $pkts."
|
A D | pedit_dsfield.sh | 134 local pkts 135 pkts=$(busywait "$TC_HIT_TIMEOUT" until_counter_is ">= 10" \ 137 check_err $? "Expected to get 10 packets on test probe, but got $pkts." 139 pkts=$(tc_rule_handle_stats_get "$pedit_locus" 101) 140 ((pkts >= 10)) 141 check_err $? "Expected to get 10 packets on pedit rule, but got $pkts."
|
/linux-6.3-rc2/drivers/net/ethernet/netronome/nfp/flower/ |
A D | qos_conf.c | 372 curr_stats->pkts = be64_to_cpu(msg->pass_pkts) + in nfp_flower_stats_rlim_reply() 378 prev_stats->pkts = curr_stats->pkts; in nfp_flower_stats_rlim_reply() 491 diff_pkts = curr_stats->pkts - prev_stats->pkts; in nfp_flower_stats_rate_limiter() 493 prev_stats->pkts = curr_stats->pkts; in nfp_flower_stats_rate_limiter() 804 meter_entry->stats.curr.pkts = be64_to_cpu(msg->pass_pkts) + in nfp_act_stats_reply() 810 meter_entry->stats.prev.pkts = meter_entry->stats.curr.pkts; in nfp_act_stats_reply() 842 diff_pkts = meter_entry->stats.curr.pkts > meter_entry->stats.prev.pkts ? in nfp_act_stats_actions() 843 meter_entry->stats.curr.pkts - meter_entry->stats.prev.pkts : 0; in nfp_act_stats_actions() 853 meter_entry->stats.prev.pkts = meter_entry->stats.curr.pkts; in nfp_act_stats_actions()
|
/linux-6.3-rc2/tools/testing/selftests/bpf/ |
A D | xskxceiver.c | 577 free(pkt_stream->pkts); in pkt_stream_delete() 605 pkt_stream->pkts = calloc(nb_pkts, sizeof(*pkt_stream->pkts)); in __pkt_stream_alloc() 606 if (!pkt_stream->pkts) { in __pkt_stream_alloc() 731 pkt_stream->pkts[i].addr = pkts[i].addr + ifobj->umem->base_addr; in __pkt_stream_generate_custom() 732 pkt_stream->pkts[i].len = pkts[i].len; in __pkt_stream_generate_custom() 734 pkt_stream->pkts[i].valid = pkts[i].valid; in __pkt_stream_generate_custom() 1632 pkt_stream_generate_custom(test, pkts, ARRAY_SIZE(pkts)); in testapp_single_pkt() 1638 struct pkt pkts[] = { in testapp_invalid_desc() local 1660 pkts[6].valid = true; in testapp_invalid_desc() 1664 pkts[7].valid = false; in testapp_invalid_desc() [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/microchip/lan966x/ |
A D | lan966x_mirror.c | 116 new_stats.rx_packets - old_stats->pkts, in lan966x_mirror_port_stats() 122 old_stats->pkts = new_stats.rx_packets; in lan966x_mirror_port_stats() 128 new_stats.tx_packets - old_stats->pkts, in lan966x_mirror_port_stats() 134 old_stats->pkts = new_stats.tx_packets; in lan966x_mirror_port_stats()
|
/linux-6.3-rc2/net/vmw_vsock/ |
A D | vsock_loopback.c | 111 struct sk_buff_head pkts; in vsock_loopback_work() local 114 skb_queue_head_init(&pkts); in vsock_loopback_work() 117 skb_queue_splice_init(&vsock->pkt_queue, &pkts); in vsock_loopback_work() 120 while ((skb = __skb_dequeue(&pkts))) { in vsock_loopback_work()
|
/linux-6.3-rc2/net/tipc/ |
A D | bcast.c | 259 int tipc_bcast_xmit(struct net *net, struct sk_buff_head *pkts, in tipc_bcast_xmit() argument 269 rc = tipc_link_xmit(l, pkts, &xmitq); in tipc_bcast_xmit() 272 __skb_queue_purge(pkts); in tipc_bcast_xmit() 295 selector = msg_link_selector(buf_msg(skb_peek(pkts))); in tipc_rcast_xmit() 300 if (!tipc_msg_pskb_copy(dnode, pkts, &_pkts)) in tipc_rcast_xmit() 378 int tipc_mcast_xmit(struct net *net, struct sk_buff_head *pkts, in tipc_mcast_xmit() argument 392 if (dests->local && !tipc_msg_reassemble(pkts, &localq)) { in tipc_mcast_xmit() 400 skb = skb_peek(pkts); in tipc_mcast_xmit() 417 rc = tipc_rcast_xmit(net, pkts, dests, cong_link_cnt); in tipc_mcast_xmit() 419 rc = tipc_bcast_xmit(net, pkts, cong_link_cnt); in tipc_mcast_xmit() [all …]
|
A D | bearer.h | 245 void tipc_clone_to_loopback(struct net *net, struct sk_buff_head *pkts); 250 struct sk_buff_head *pkts) in tipc_loopback_trace() argument 253 tipc_clone_to_loopback(net, pkts); in tipc_loopback_trace()
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx5/core/en/tc/ |
A D | act_stats.c | 168 u64 pkts, bytes, lastused; in mlx5e_tc_act_stats_fill_stats() local 182 &bytes, &pkts, &lastused); in mlx5e_tc_act_stats_fill_stats() 186 pkts - item->lastpackets, in mlx5e_tc_act_stats_fill_stats() 189 item->lastpackets = pkts; in mlx5e_tc_act_stats_fill_stats()
|
/linux-6.3-rc2/drivers/usb/host/ |
A D | xhci-mtk-sch.c | 315 sch_ep->pkts = max_burst + 1; in setup_sch_info() 316 sch_ep->bw_cost_per_microframe = maxpkt * sch_ep->pkts; in setup_sch_info() 331 sch_ep->pkts = esit_pkts; in setup_sch_info() 338 sch_ep->pkts = esit_pkts; in setup_sch_info() 340 sch_ep->pkts = 1; in setup_sch_info() 342 sch_ep->pkts = roundup_pow_of_two(esit_pkts) in setup_sch_info() 346 DIV_ROUND_UP(esit_pkts, sch_ep->pkts); in setup_sch_info() 350 sch_ep->bw_cost_per_microframe = maxpkt * sch_ep->pkts; in setup_sch_info() 352 sch_ep->pkts = 1; /* at most one packet for each microframe */ in setup_sch_info() 711 ep_ctx->reserved[0] = cpu_to_le32(EP_BPKTS(sch_ep->pkts) in xhci_mtk_check_bandwidth() [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/pensando/ionic/ |
A D | ionic_txrx.c | 296 stats->pkts++; in ionic_rx_clean() 534 u64 pkts, bytes; in ionic_dim_update() local 544 pkts = lif->txqstats[qi].pkts; in ionic_dim_update() 548 pkts = lif->rxqstats[qi].pkts; in ionic_dim_update() 552 pkts = lif->txqstats[qi].pkts + lif->rxqstats[qi].pkts; in ionic_dim_update() 558 pkts, bytes, &dim_sample); in ionic_dim_update() 844 int pkts = 0; in ionic_tx_service() local 862 pkts++; in ionic_tx_service() 891 int pkts = 0; in ionic_tx_empty() local 900 pkts++; in ionic_tx_empty() [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/fungible/funeth/ |
A D | funeth_txrx.h | 44 #define FUN_IRQ_CQ_DB(usec, pkts) \ argument 46 ((pkts) << FUN_DB_INTCOAL_ENTRIES_S)) 49 #define FUN_IRQ_SQ_DB(usec, pkts) \ argument 52 ((pkts) << FUN_DB_INTCOAL_ENTRIES_S))
|
/linux-6.3-rc2/drivers/net/ethernet/intel/ice/ |
A D | ice_repr.c | 156 u64 pkts, bytes; in ice_repr_sp_stats64() local 161 &pkts, &bytes); in ice_repr_sp_stats64() 162 stats->rx_packets = pkts; in ice_repr_sp_stats64() 168 &pkts, &bytes); in ice_repr_sp_stats64() 169 stats->tx_packets = pkts; in ice_repr_sp_stats64()
|
/linux-6.3-rc2/drivers/net/ethernet/ |
A D | lantiq_xrx200.c | 318 int pkts = 0; in xrx200_tx_housekeeping() local 322 while (pkts < budget) { in xrx200_tx_housekeeping() 328 pkts++; in xrx200_tx_housekeeping() 341 net_dev->stats.tx_packets += pkts; in xrx200_tx_housekeeping() 343 netdev_completed_queue(ch->priv->net_dev, pkts, bytes); in xrx200_tx_housekeeping() 349 if (pkts < budget) { in xrx200_tx_housekeeping() 350 if (napi_complete_done(&ch->napi, pkts)) in xrx200_tx_housekeeping() 354 return pkts; in xrx200_tx_housekeeping()
|