drivers/net/ethernet/intel/ice/virt/rss.h

Source file repositories/reference/linux-study-clean/drivers/net/ethernet/intel/ice/virt/rss.h

File Facts

System
Linux kernel
Corpus path
drivers/net/ethernet/intel/ice/virt/rss.h
Extension
.h
Size
544 bytes
Lines
19
Domain
Driver Families
Bucket
drivers/net
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef _ICE_VIRT_RSS_H_
#define _ICE_VIRT_RSS_H_

#include <linux/types.h>

struct ice_vf;

int ice_vc_handle_rss_cfg(struct ice_vf *vf, u8 *msg, bool add);
int ice_vc_config_rss_key(struct ice_vf *vf, u8 *msg);
int ice_vc_config_rss_lut(struct ice_vf *vf, u8 *msg);
int ice_vc_config_rss_hfunc(struct ice_vf *vf, u8 *msg);
int ice_vc_get_rss_hashcfg(struct ice_vf *vf);
int ice_vc_set_rss_hashcfg(struct ice_vf *vf, u8 *msg);

#endif /* _ICE_VIRT_RSS_H_ */

Annotation

Implementation Notes