bonding:set save_load to 0 when initializing

It is unnecessary to set save_load to 1 here,
as the tx_hashtbl is just kzalloced.

Signed-off-by: Weiping Pan(潘卫平) <panweiping3@gmail.com>
Signed-off-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Peter Pan(潘卫平) and committed by
David S. Miller
38dbaf0a a08070ac

+1 -1
+1 -1
drivers/net/bonding/bond_alb.c
··· 176 176 bond_info->tx_hashtbl = new_hashtbl; 177 177 178 178 for (i = 0; i < TLB_HASH_TABLE_SIZE; i++) { 179 - tlb_init_table_entry(&bond_info->tx_hashtbl[i], 1); 179 + tlb_init_table_entry(&bond_info->tx_hashtbl[i], 0); 180 180 } 181 181 182 182 _unlock_tx_hashtbl(bond);