Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 63423
b: refs/heads/master
c: f1543f8
h: refs/heads/master
i:
  63421: 3f3b3be
  63419: 7aef772
  63415: 749c45b
  63407: f01ab21
  63391: f0a38c9
  63359: b7f718a
v: v3
  • Loading branch information
Florian Zumbiehl authored and David S. Miller committed Jul 31, 2007
1 parent 237e49e commit 8f2b8cd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 48b8d78315bf2aef4b6b4fb41c2c94e0b6600234
refs/heads/master: f1543f8b8316f49b318ac6cd8c78a7fd18509311
25 changes: 15 additions & 10 deletions trunk/drivers/net/pppoe.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,19 +108,24 @@ static inline int cmp_addr(struct pppoe_addr *a, unsigned long sid, char *addr)
(memcmp(a->remote,addr,ETH_ALEN) == 0));
}

static int hash_item(unsigned long sid, unsigned char *addr)
#if 8%PPPOE_HASH_BITS
#error 8 must be a multiple of PPPOE_HASH_BITS
#endif

static int hash_item(unsigned int sid, unsigned char *addr)
{
char hash = 0;
int i, j;
unsigned char hash = 0;
unsigned int i;

for (i = 0; i < ETH_ALEN ; ++i) {
for (j = 0; j < 8/PPPOE_HASH_BITS ; ++j) {
hash ^= addr[i] >> ( j * PPPOE_HASH_BITS );
}
for (i = 0 ; i < ETH_ALEN ; i++) {
hash ^= addr[i];
}
for (i = 0 ; i < sizeof(sid_t)*8 ; i += 8 ){
hash ^= sid>>i;
}
for (i = 8 ; (i>>=1) >= PPPOE_HASH_BITS ; ) {
hash ^= hash>>i;
}

for (i = 0; i < (sizeof(unsigned long)*8) / PPPOE_HASH_BITS ; ++i)
hash ^= sid >> (i*PPPOE_HASH_BITS);

return hash & ( PPPOE_HASH_SIZE - 1 );
}
Expand Down

0 comments on commit 8f2b8cd

Please sign in to comment.