s390/qeth: add missing hash table initializations
commit5f78e29cee
("qeth: optimize IP handling in rx_mode callback") added new hash tables, but missed to initialize them. Fixes:5f78e29cee
("qeth: optimize IP handling in rx_mode callback") Signed-off-by: Ursula Braun <ubraun@linux.vnet.ibm.com> Reviewed-by: Julian Wiedmann <jwi@linux.vnet.ibm.com> Signed-off-by: Julian Wiedmann <jwi@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
25e2c341e7
commit
ebccc7397e
|
@ -3044,6 +3044,8 @@ static int qeth_l3_probe_device(struct ccwgroup_device *gdev)
|
||||||
rc = qeth_l3_create_device_attributes(&gdev->dev);
|
rc = qeth_l3_create_device_attributes(&gdev->dev);
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
|
hash_init(card->ip_htable);
|
||||||
|
hash_init(card->ip_mc_htable);
|
||||||
card->options.layer2 = 0;
|
card->options.layer2 = 0;
|
||||||
card->info.hwtrap = 0;
|
card->info.hwtrap = 0;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue