diff options
| author | Song Yoong Siang <[email protected]> | 2025-06-20 10:02:50 +0000 |
|---|---|---|
| committer | Tony Nguyen <[email protected]> | 2025-07-18 16:02:28 +0000 |
| commit | bdfaa8d70da26edb8779d2f7035f186490b2d586 (patch) | |
| tree | 585e7d85c64de110c809a599d02e05678ce033db /drivers/net/ethernet/intel/igc/igc.h | |
| parent | ice: breakout common LAG code into helpers (diff) | |
| download | kernel-bdfaa8d70da26edb8779d2f7035f186490b2d586.tar.gz kernel-bdfaa8d70da26edb8779d2f7035f186490b2d586.zip | |
igc: Relocate RSS field definitions to igc_defines.h
Move the RSS field definitions related to IPv4 and IPv6 UDP from igc.h to
igc_defines.h to consolidate the RSS field definitions in a single header
file, improving code organization and maintainability.
This refactoring does not alter the functionality of the driver but
enhances the logical grouping of related constants
Reviewed-by: Kurt Kanzenbach <[email protected]>
Signed-off-by: Song Yoong Siang <[email protected]>
Reviewed-by: Aleksandr Loktionov <[email protected]>
Reviewed-by: Brett Creeley <[email protected]>
Tested-by: Mor Bar-Gabay <[email protected]>
Signed-off-by: Tony Nguyen <[email protected]>
Diffstat (limited to 'drivers/net/ethernet/intel/igc/igc.h')
| -rw-r--r-- | drivers/net/ethernet/intel/igc/igc.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/ethernet/intel/igc/igc.h b/drivers/net/ethernet/intel/igc/igc.h index 97b1a2c820ee..fdec66caef4d 100644 --- a/drivers/net/ethernet/intel/igc/igc.h +++ b/drivers/net/ethernet/intel/igc/igc.h @@ -406,10 +406,6 @@ extern char igc_driver_name[]; #define IGC_FLAG_RSS_FIELD_IPV4_UDP BIT(6) #define IGC_FLAG_RSS_FIELD_IPV6_UDP BIT(7) -#define IGC_MRQC_ENABLE_RSS_MQ 0x00000002 -#define IGC_MRQC_RSS_FIELD_IPV4_UDP 0x00400000 -#define IGC_MRQC_RSS_FIELD_IPV6_UDP 0x00800000 - /* RX-desc Write-Back format RSS Type's */ enum igc_rss_type_num { IGC_RSS_TYPE_NO_HASH = 0, |
