Page MenuHomeFreeBSD

D59804.id187047.diff
No OneTemporary

D59804.id187047.diff

Index: sys/dev/al_eth/al_eth.c
===================================================================
--- sys/dev/al_eth/al_eth.c
+++ sys/dev/al_eth/al_eth.c
@@ -55,6 +55,7 @@
#include <net/if_types.h>
#include <netinet/in.h>
#include <net/if_vlan_var.h>
+#include <net/rss_config.h>
#include <netinet/tcp.h>
#include <netinet/tcp_lro.h>
@@ -2960,8 +2961,8 @@
al_eth_mac_table_promiscuous_set(adapter, false);
/* set toeplitz hash keys */
- for (i = 0; i < sizeof(adapter->toeplitz_hash_key); i++)
- *((uint8_t*)adapter->toeplitz_hash_key + i) = (uint8_t)random();
+ CTASSERT(sizeof(adapter->toeplitz_hash_key) == RSS_KEYSIZE);
+ rss_getkey((uint8_t *)adapter->toeplitz_hash_key);
for (i = 0; i < AL_ETH_RX_HASH_KEY_NUM; i++)
al_eth_hash_key_set(&adapter->hal_adapter, i,

File Metadata

Mime Type
text/plain
Expires
Sat, Sep 19, 11:30 PM (6 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
39258236
Default Alt Text
D59804.id187047.diff (790 B)

Event Timeline