1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* Copyright (C) 2022, Intel Corporation. */ 3 4 #ifndef _ICE_VIRT_RSS_H_ 5 #define _ICE_VIRT_RSS_H_ 6 7 #include <linux/types.h> 8 9 struct ice_vf; 10 11 int ice_vc_handle_rss_cfg(struct ice_vf *vf, u8 *msg, bool add); 12 int ice_vc_config_rss_key(struct ice_vf *vf, u8 *msg); 13 int ice_vc_config_rss_lut(struct ice_vf *vf, u8 *msg); 14 int ice_vc_config_rss_hfunc(struct ice_vf *vf, u8 *msg); 15 int ice_vc_get_rss_hashcfg(struct ice_vf *vf); 16 int ice_vc_set_rss_hashcfg(struct ice_vf *vf, u8 *msg); 17 18 #endif /* _ICE_VIRT_RSS_H_ */ 19