mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
75a6faf617
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms and conditions of the gnu general public license version 2 as published by the free software foundation extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 101 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190531190113.822954939@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
24 lines
544 B
C
24 lines
544 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* aQuantia Corporation Network Driver
|
|
* Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved
|
|
*/
|
|
|
|
/* File aq_rss.h: Receive Side Scaling definitions. */
|
|
|
|
#ifndef AQ_RSS_H
|
|
#define AQ_RSS_H
|
|
|
|
#include "aq_common.h"
|
|
#include "aq_cfg.h"
|
|
|
|
struct aq_rss_parameters {
|
|
u16 base_cpu_number;
|
|
u16 indirection_table_size;
|
|
u16 hash_secret_key_size;
|
|
u32 hash_secret_key[AQ_CFG_RSS_HASHKEY_SIZE / sizeof(u32)];
|
|
u8 indirection_table[AQ_CFG_RSS_INDIRECTION_TABLE_MAX];
|
|
};
|
|
|
|
#endif /* AQ_RSS_H */
|