Question about the hash used in XOR mode
From: Shmulik Hen <hidden>
Date: 2003-09-21 13:37:37
From: Shmulik Hen <hidden>
Date: 2003-09-21 13:37:37
In bond_xmit_xor(), we have the following: slave = bond->prev; . . . slave_no = (data->h_dest[5]^slave->dev->dev_addr[5]) % bond->slave_cnt; Which should give us a number between 0 and slave_cnt-1 which is constant per destination address, hence acts as a hash function. But, the fact is slave->dev->dev_addr[5] is the same the whole time, and is actually the same as bond->device->dev_addr[5]. Is there a special meaning for XORing with a constant ? Wouldn't it be the same is we did just: slave_no = data->h_dest[5] % bond->slave_cnt; -- | Shmulik Hen Advanced Network Services | | Israel Design Center, Jerusalem | | LAN Access Division, Platform Networking | | Intel Communications Group, Intel corp. |