/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/ |
H A D | ethtool.c | 100 struct ethtool_coalesce *coalesce) in efx_ethtool_get_coalesce() 108 coalesce->tx_coalesce_usecs = tx_usecs; in efx_ethtool_get_coalesce() 109 coalesce->tx_coalesce_usecs_irq = tx_usecs; in efx_ethtool_get_coalesce() 110 coalesce->rx_coalesce_usecs = rx_usecs; in efx_ethtool_get_coalesce() 111 coalesce->rx_coalesce_usecs_irq = rx_usecs; in efx_ethtool_get_coalesce() 112 coalesce->use_adaptive_rx_coalesce = rx_adaptive; in efx_ethtool_get_coalesce() 118 struct ethtool_coalesce *coalesce) in efx_ethtool_set_coalesce() 128 if (coalesce->rx_coalesce_usecs != rx_usecs) in efx_ethtool_set_coalesce() 129 rx_usecs = coalesce->rx_coalesce_usecs; in efx_ethtool_set_coalesce() 131 rx_usecs = coalesce in efx_ethtool_set_coalesce() 99 efx_ethtool_get_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce) efx_ethtool_get_coalesce() argument 117 efx_ethtool_set_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce) efx_ethtool_set_coalesce() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/sfc/ |
H A D | ethtool.c | 100 struct ethtool_coalesce *coalesce, in efx_ethtool_get_coalesce() 110 coalesce->tx_coalesce_usecs = tx_usecs; in efx_ethtool_get_coalesce() 111 coalesce->tx_coalesce_usecs_irq = tx_usecs; in efx_ethtool_get_coalesce() 112 coalesce->rx_coalesce_usecs = rx_usecs; in efx_ethtool_get_coalesce() 113 coalesce->rx_coalesce_usecs_irq = rx_usecs; in efx_ethtool_get_coalesce() 114 coalesce->use_adaptive_rx_coalesce = rx_adaptive; in efx_ethtool_get_coalesce() 120 struct ethtool_coalesce *coalesce, in efx_ethtool_set_coalesce() 132 if (coalesce->rx_coalesce_usecs != rx_usecs) in efx_ethtool_set_coalesce() 133 rx_usecs = coalesce->rx_coalesce_usecs; in efx_ethtool_set_coalesce() 135 rx_usecs = coalesce in efx_ethtool_set_coalesce() 99 efx_ethtool_get_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) efx_ethtool_get_coalesce() argument 119 efx_ethtool_set_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) efx_ethtool_set_coalesce() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/sfc/siena/ |
H A D | ethtool.c | 100 struct ethtool_coalesce *coalesce, in efx_ethtool_get_coalesce() 110 coalesce->tx_coalesce_usecs = tx_usecs; in efx_ethtool_get_coalesce() 111 coalesce->tx_coalesce_usecs_irq = tx_usecs; in efx_ethtool_get_coalesce() 112 coalesce->rx_coalesce_usecs = rx_usecs; in efx_ethtool_get_coalesce() 113 coalesce->rx_coalesce_usecs_irq = rx_usecs; in efx_ethtool_get_coalesce() 114 coalesce->use_adaptive_rx_coalesce = rx_adaptive; in efx_ethtool_get_coalesce() 120 struct ethtool_coalesce *coalesce, in efx_ethtool_set_coalesce() 132 if (coalesce->rx_coalesce_usecs != rx_usecs) in efx_ethtool_set_coalesce() 133 rx_usecs = coalesce->rx_coalesce_usecs; in efx_ethtool_set_coalesce() 135 rx_usecs = coalesce in efx_ethtool_set_coalesce() 99 efx_ethtool_get_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) efx_ethtool_get_coalesce() argument 119 efx_ethtool_set_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) efx_ethtool_set_coalesce() argument [all...] |
/kernel/linux/linux-5.10/net/ethtool/ |
H A D | coalesce.c | 12 struct ethtool_coalesce coalesce; member 73 ret = dev->ethtool_ops->get_coalesce(dev, &data->coalesce); in coalesce_prepare_data() 127 const struct ethtool_coalesce *coal = &data->coalesce; in coalesce_fill_reply() 222 struct ethtool_coalesce coalesce = {}; in ethnl_set_coalesce() local 258 ret = ops->get_coalesce(dev, &coalesce); in ethnl_set_coalesce() 262 ethnl_update_u32(&coalesce.rx_coalesce_usecs, in ethnl_set_coalesce() 264 ethnl_update_u32(&coalesce.rx_max_coalesced_frames, in ethnl_set_coalesce() 266 ethnl_update_u32(&coalesce.rx_coalesce_usecs_irq, in ethnl_set_coalesce() 268 ethnl_update_u32(&coalesce.rx_max_coalesced_frames_irq, in ethnl_set_coalesce() 270 ethnl_update_u32(&coalesce in ethnl_set_coalesce() [all...] |
H A D | ioctl.c | 1623 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; in ethtool_get_coalesce() local 1629 ret = dev->ethtool_ops->get_coalesce(dev, &coalesce); in ethtool_get_coalesce() 1633 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce))) in ethtool_get_coalesce() 1640 struct ethtool_coalesce *coalesce) in ethtool_set_coalesce_supported() 1645 if (coalesce->rx_coalesce_usecs) in ethtool_set_coalesce_supported() 1647 if (coalesce->rx_max_coalesced_frames) in ethtool_set_coalesce_supported() 1649 if (coalesce->rx_coalesce_usecs_irq) in ethtool_set_coalesce_supported() 1651 if (coalesce->rx_max_coalesced_frames_irq) in ethtool_set_coalesce_supported() 1653 if (coalesce in ethtool_set_coalesce_supported() 1639 ethtool_set_coalesce_supported(struct net_device *dev, struct ethtool_coalesce *coalesce) ethtool_set_coalesce_supported() argument 1696 struct ethtool_coalesce coalesce; ethtool_set_coalesce() local 2452 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; ethtool_get_per_queue_coalesce() local 2489 struct ethtool_coalesce coalesce; ethtool_set_per_queue_coalesce() local [all...] |
H A D | Makefile | 9 channels.o coalesce.o pause.o eee.o tsinfo.o cabletest.o \
|
/kernel/linux/linux-6.6/net/ethtool/ |
H A D | coalesce.c | 12 struct ethtool_coalesce coalesce; member 74 ret = dev->ethtool_ops->get_coalesce(dev, &data->coalesce, in coalesce_prepare_data() 136 const struct ethtool_coalesce *coal = &data->coalesce; in coalesce_fill_reply() 262 struct ethtool_coalesce coalesce = {}; in __ethnl_set_coalesce() local 267 ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce, in __ethnl_set_coalesce() 273 ethnl_update_u32(&coalesce.rx_coalesce_usecs, in __ethnl_set_coalesce() 275 ethnl_update_u32(&coalesce.rx_max_coalesced_frames, in __ethnl_set_coalesce() 277 ethnl_update_u32(&coalesce.rx_coalesce_usecs_irq, in __ethnl_set_coalesce() 279 ethnl_update_u32(&coalesce.rx_max_coalesced_frames_irq, in __ethnl_set_coalesce() 281 ethnl_update_u32(&coalesce in __ethnl_set_coalesce() [all...] |
H A D | ioctl.c | 1648 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; in ethtool_get_coalesce() local 1655 ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce, in ethtool_get_coalesce() 1660 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce))) in ethtool_get_coalesce() 1667 struct ethtool_coalesce *coalesce) in ethtool_set_coalesce_supported() 1672 if (coalesce->rx_coalesce_usecs) in ethtool_set_coalesce_supported() 1674 if (coalesce->rx_max_coalesced_frames) in ethtool_set_coalesce_supported() 1676 if (coalesce->rx_coalesce_usecs_irq) in ethtool_set_coalesce_supported() 1678 if (coalesce->rx_max_coalesced_frames_irq) in ethtool_set_coalesce_supported() 1680 if (coalesce in ethtool_set_coalesce_supported() 1666 ethtool_set_coalesce_supported(struct net_device *dev, struct ethtool_coalesce *coalesce) ethtool_set_coalesce_supported() argument 1724 struct ethtool_coalesce coalesce; ethtool_set_coalesce() local 2538 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; ethtool_get_per_queue_coalesce() local 2575 struct ethtool_coalesce coalesce; ethtool_set_per_queue_coalesce() local [all...] |
H A D | Makefile | 9 channels.o coalesce.o pause.o eee.o tsinfo.o cabletest.o \
|
/kernel/linux/linux-5.10/drivers/net/ethernet/pensando/ionic/ |
H A D | ionic_ethtool.c | 407 struct ethtool_coalesce *coalesce) in ionic_get_coalesce() 411 coalesce->tx_coalesce_usecs = lif->tx_coalesce_usecs; in ionic_get_coalesce() 412 coalesce->rx_coalesce_usecs = lif->rx_coalesce_usecs; in ionic_get_coalesce() 415 coalesce->use_adaptive_tx_coalesce = test_bit(IONIC_LIF_F_TX_DIM_INTR, lif->state); in ionic_get_coalesce() 417 coalesce->use_adaptive_tx_coalesce = 0; in ionic_get_coalesce() 419 coalesce->use_adaptive_rx_coalesce = test_bit(IONIC_LIF_F_RX_DIM_INTR, lif->state); in ionic_get_coalesce() 425 struct ethtool_coalesce *coalesce) in ionic_set_coalesce() 442 (coalesce->tx_coalesce_usecs != lif->rx_coalesce_usecs || in ionic_set_coalesce() 443 coalesce->use_adaptive_tx_coalesce)) { in ionic_set_coalesce() 451 rx_coal = ionic_coal_usec_to_hw(lif->ionic, coalesce in ionic_set_coalesce() 406 ionic_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce) ionic_get_coalesce() argument 424 ionic_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce) ionic_set_coalesce() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/pensando/ionic/ |
H A D | ionic_ethtool.c | 417 struct ethtool_coalesce *coalesce, in ionic_get_coalesce() 423 coalesce->tx_coalesce_usecs = lif->tx_coalesce_usecs; in ionic_get_coalesce() 424 coalesce->rx_coalesce_usecs = lif->rx_coalesce_usecs; in ionic_get_coalesce() 427 coalesce->use_adaptive_tx_coalesce = test_bit(IONIC_LIF_F_TX_DIM_INTR, lif->state); in ionic_get_coalesce() 429 coalesce->use_adaptive_tx_coalesce = 0; in ionic_get_coalesce() 431 coalesce->use_adaptive_rx_coalesce = test_bit(IONIC_LIF_F_RX_DIM_INTR, lif->state); in ionic_get_coalesce() 437 struct ethtool_coalesce *coalesce, in ionic_set_coalesce() 456 (coalesce->tx_coalesce_usecs != lif->rx_coalesce_usecs || in ionic_set_coalesce() 457 coalesce->use_adaptive_tx_coalesce)) { in ionic_set_coalesce() 465 rx_coal = ionic_coal_usec_to_hw(lif->ionic, coalesce in ionic_set_coalesce() 416 ionic_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) ionic_get_coalesce() argument 436 ionic_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) ionic_set_coalesce() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/netdevsim/ |
H A D | ethtool.c | 52 memcpy(coal, &ns->ethtool.coalesce, sizeof(ns->ethtool.coalesce)); in nsim_get_coalesce() 63 memcpy(&ns->ethtool.coalesce, coal, sizeof(ns->ethtool.coalesce)); in nsim_set_coalesce()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/falcon/ |
H A D | ethtool.c | 580 struct ethtool_coalesce *coalesce) in ef4_ethtool_get_coalesce() 588 coalesce->tx_coalesce_usecs = tx_usecs; in ef4_ethtool_get_coalesce() 589 coalesce->tx_coalesce_usecs_irq = tx_usecs; in ef4_ethtool_get_coalesce() 590 coalesce->rx_coalesce_usecs = rx_usecs; in ef4_ethtool_get_coalesce() 591 coalesce->rx_coalesce_usecs_irq = rx_usecs; in ef4_ethtool_get_coalesce() 592 coalesce->use_adaptive_rx_coalesce = rx_adaptive; in ef4_ethtool_get_coalesce() 598 struct ethtool_coalesce *coalesce) in ef4_ethtool_set_coalesce() 608 if (coalesce->rx_coalesce_usecs != rx_usecs) in ef4_ethtool_set_coalesce() 609 rx_usecs = coalesce->rx_coalesce_usecs; in ef4_ethtool_set_coalesce() 611 rx_usecs = coalesce in ef4_ethtool_set_coalesce() 579 ef4_ethtool_get_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce) ef4_ethtool_get_coalesce() argument 597 ef4_ethtool_set_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce) ef4_ethtool_set_coalesce() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/sfc/falcon/ |
H A D | ethtool.c | 580 struct ethtool_coalesce *coalesce, in ef4_ethtool_get_coalesce() 590 coalesce->tx_coalesce_usecs = tx_usecs; in ef4_ethtool_get_coalesce() 591 coalesce->tx_coalesce_usecs_irq = tx_usecs; in ef4_ethtool_get_coalesce() 592 coalesce->rx_coalesce_usecs = rx_usecs; in ef4_ethtool_get_coalesce() 593 coalesce->rx_coalesce_usecs_irq = rx_usecs; in ef4_ethtool_get_coalesce() 594 coalesce->use_adaptive_rx_coalesce = rx_adaptive; in ef4_ethtool_get_coalesce() 600 struct ethtool_coalesce *coalesce, in ef4_ethtool_set_coalesce() 612 if (coalesce->rx_coalesce_usecs != rx_usecs) in ef4_ethtool_set_coalesce() 613 rx_usecs = coalesce->rx_coalesce_usecs; in ef4_ethtool_set_coalesce() 615 rx_usecs = coalesce in ef4_ethtool_set_coalesce() 579 ef4_ethtool_get_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) ef4_ethtool_get_coalesce() argument 599 ef4_ethtool_set_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) ef4_ethtool_set_coalesce() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/brocade/bna/ |
H A D | bnad_ethtool.c | 311 bnad_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce) in bnad_get_coalesce() argument 318 coalesce->use_adaptive_rx_coalesce = in bnad_get_coalesce() 322 coalesce->rx_coalesce_usecs = bnad->rx_coalescing_timeo * in bnad_get_coalesce() 324 coalesce->tx_coalesce_usecs = bnad->tx_coalescing_timeo * in bnad_get_coalesce() 326 coalesce->tx_max_coalesced_frames = BFI_TX_INTERPKT_COUNT; in bnad_get_coalesce() 332 bnad_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce) in bnad_set_coalesce() argument 338 if (coalesce->rx_coalesce_usecs == 0 || in bnad_set_coalesce() 339 coalesce->rx_coalesce_usecs > in bnad_set_coalesce() 343 if (coalesce->tx_coalesce_usecs == 0 || in bnad_set_coalesce() 344 coalesce in bnad_set_coalesce() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/brocade/bna/ |
H A D | bnad_ethtool.c | 311 struct ethtool_coalesce *coalesce, in bnad_get_coalesce() 320 coalesce->use_adaptive_rx_coalesce = in bnad_get_coalesce() 324 coalesce->rx_coalesce_usecs = bnad->rx_coalescing_timeo * in bnad_get_coalesce() 326 coalesce->tx_coalesce_usecs = bnad->tx_coalescing_timeo * in bnad_get_coalesce() 328 coalesce->tx_max_coalesced_frames = BFI_TX_INTERPKT_COUNT; in bnad_get_coalesce() 334 struct ethtool_coalesce *coalesce, in bnad_set_coalesce() 342 if (coalesce->rx_coalesce_usecs == 0 || in bnad_set_coalesce() 343 coalesce->rx_coalesce_usecs > in bnad_set_coalesce() 347 if (coalesce->tx_coalesce_usecs == 0 || in bnad_set_coalesce() 348 coalesce in bnad_set_coalesce() 310 bnad_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) bnad_get_coalesce() argument 333 bnad_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) bnad_set_coalesce() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/can/spi/mcp251xfd/ |
H A D | mcp251xfd-ram.c | 24 const u8 coalesce, u8 val) in can_ram_rounddown_pow_of_two() 31 if (coalesce) { in can_ram_rounddown_pow_of_two() 38 ret = min_t(u8, coalesce * 2, config->fifo_depth); in can_ram_rounddown_pow_of_two() 22 can_ram_rounddown_pow_of_two(const struct can_ram_config *config, const struct can_ram_obj_config *obj, const u8 coalesce, u8 val) can_ram_rounddown_pow_of_two() argument
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/ |
H A D | ice_lib.c | 2702 * Set coalesce param in q_vector and update these parameters in HW. 2716 * ice_vsi_rebuild_update_coalesce_itr - set coalesce for a q_vector 2721 * Set coalesce param in q_vector and update these parameters in HW. 2739 * ice_vsi_rebuild_get_coalesce - get coalesce from all q_vectors 2741 * @coalesce: array of struct with stored coalesce 2747 struct ice_coalesce_stored *coalesce) in ice_vsi_rebuild_get_coalesce() 2754 coalesce[i].itr_tx = q_vector->tx.itr_setting; in ice_vsi_rebuild_get_coalesce() 2755 coalesce[i].itr_rx = q_vector->rx.itr_setting; in ice_vsi_rebuild_get_coalesce() 2756 coalesce[ in ice_vsi_rebuild_get_coalesce() 2746 ice_vsi_rebuild_get_coalesce(struct ice_vsi *vsi, struct ice_coalesce_stored *coalesce) ice_vsi_rebuild_get_coalesce() argument 2778 ice_vsi_rebuild_set_coalesce(struct ice_vsi *vsi, struct ice_coalesce_stored *coalesce, int size) ice_vsi_rebuild_set_coalesce() argument 2851 struct ice_coalesce_stored *coalesce; ice_vsi_rebuild() local [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/amazon/ena/ |
H A D | ena_ethtool.c | 357 struct ethtool_coalesce *coalesce) in ena_get_coalesce() 365 coalesce->tx_coalesce_usecs = in ena_get_coalesce() 369 coalesce->rx_coalesce_usecs = in ena_get_coalesce() 373 coalesce->use_adaptive_rx_coalesce = in ena_get_coalesce() 402 struct ethtool_coalesce *coalesce) in ena_set_coalesce() 412 coalesce->tx_coalesce_usecs); in ena_set_coalesce() 419 coalesce->rx_coalesce_usecs); in ena_set_coalesce() 425 if (coalesce->use_adaptive_rx_coalesce && in ena_set_coalesce() 429 if (!coalesce->use_adaptive_rx_coalesce && in ena_set_coalesce() 356 ena_get_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce) ena_get_coalesce() argument 401 ena_set_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce) ena_set_coalesce() argument
|
/kernel/linux/linux-6.6/drivers/net/ethernet/amazon/ena/ |
H A D | ena_ethtool.c | 363 struct ethtool_coalesce *coalesce, in ena_get_coalesce() 373 coalesce->tx_coalesce_usecs = in ena_get_coalesce() 377 coalesce->rx_coalesce_usecs = in ena_get_coalesce() 381 coalesce->use_adaptive_rx_coalesce = in ena_get_coalesce() 410 struct ethtool_coalesce *coalesce, in ena_set_coalesce() 422 coalesce->tx_coalesce_usecs); in ena_set_coalesce() 429 coalesce->rx_coalesce_usecs); in ena_set_coalesce() 435 if (coalesce->use_adaptive_rx_coalesce && in ena_set_coalesce() 439 if (!coalesce->use_adaptive_rx_coalesce && in ena_set_coalesce() 362 ena_get_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) ena_get_coalesce() argument 409 ena_set_coalesce(struct net_device *net_dev, struct ethtool_coalesce *coalesce, struct kernel_ethtool_coalesce *kernel_coal, struct netlink_ext_ack *extack) ena_set_coalesce() argument
|
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ice/ |
H A D | ice_lib.c | 2973 * ice_vsi_rebuild_get_coalesce - get coalesce from all q_vectors 2975 * @coalesce: array of struct with stored coalesce 2981 struct ice_coalesce_stored *coalesce) in ice_vsi_rebuild_get_coalesce() 2988 coalesce[i].itr_tx = q_vector->tx.itr_settings; in ice_vsi_rebuild_get_coalesce() 2989 coalesce[i].itr_rx = q_vector->rx.itr_settings; in ice_vsi_rebuild_get_coalesce() 2990 coalesce[i].intrl = q_vector->intrl; in ice_vsi_rebuild_get_coalesce() 2993 coalesce[i].tx_valid = true; in ice_vsi_rebuild_get_coalesce() 2995 coalesce[i].rx_valid = true; in ice_vsi_rebuild_get_coalesce() 3002 * ice_vsi_rebuild_set_coalesce - set coalesce fro 2980 ice_vsi_rebuild_get_coalesce(struct ice_vsi *vsi, struct ice_coalesce_stored *coalesce) ice_vsi_rebuild_get_coalesce() argument 3012 ice_vsi_rebuild_set_coalesce(struct ice_vsi *vsi, struct ice_coalesce_stored *coalesce, int size) ice_vsi_rebuild_set_coalesce() argument 3138 struct ice_coalesce_stored *coalesce; ice_vsi_rebuild() local [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/ |
H A D | qed_l2.h | 415 u16 coalesce, struct qed_queue_cid *p_cid); 419 u16 coalesce, struct qed_queue_cid *p_cid);
|
/kernel/linux/linux-6.6/drivers/net/ethernet/qlogic/qed/ |
H A D | qed_l2.h | 440 u16 coalesce, struct qed_queue_cid *p_cid); 444 u16 coalesce, struct qed_queue_cid *p_cid);
|
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/netdevsim/ |
H A D | ethtool-coalesce.sh | 20 if ! ethtool -h | grep -q coalesce; then 21 echo "SKIP: No --coalesce support in ethtool"
|
/kernel/linux/linux-5.10/arch/um/drivers/ |
H A D | vector_kern.h | 106 int coalesce; member
|