File: rss.h

package info (click to toggle)
linux 6.18.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,742,320 kB
  • sloc: ansic: 26,784,243; asm: 272,094; sh: 148,799; python: 79,242; makefile: 57,743; perl: 36,527; xml: 19,542; cpp: 5,911; yacc: 4,939; lex: 2,950; awk: 1,607; sed: 30; ruby: 25
file content (18 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (C) 2022, Intel Corporation. */

#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_ */