mirror of
https://github.com/torvalds/linux.git
synced 2026-05-01 21:12:29 -04:00
Support to turn on/off adaptive RX/TX coalesce. When adaptive coalesce is on, use DIM algorithm for a dynamic interrupt moderation. Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com> Link: https://patch.msgid.link/20250821023408.53472-5-jiawenwu@trustnetic.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
16 lines
522 B
C
16 lines
522 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2015 - 2025 Beijing WangXun Technology Co., Ltd. */
|
|
|
|
#ifndef _WX_VF_LIB_H_
|
|
#define _WX_VF_LIB_H_
|
|
|
|
void wx_write_eitr_vf(struct wx_q_vector *q_vector);
|
|
void wx_configure_msix_vf(struct wx *wx);
|
|
int wx_write_uc_addr_list_vf(struct net_device *netdev);
|
|
void wx_setup_psrtype_vf(struct wx *wx);
|
|
void wx_setup_vfmrqc_vf(struct wx *wx);
|
|
void wx_configure_tx_vf(struct wx *wx);
|
|
void wx_configure_rx_ring_vf(struct wx *wx, struct wx_ring *ring);
|
|
|
|
#endif /* _WX_VF_LIB_H_ */
|