Re: [PATCH] fix IP-over-ATM and ARP interaction - formatting fixed.

2006-05-12 Thread David S. Miller
From: Simon Kelley <[EMAIL PROTECTED]> Date: Sat, 06 May 2006 18:02:00 +0100 > This patch adds a new function, neigh_table_init_no_netlink() which > does everything the neigh_table_init() does, except add the table to > the netlink all-arp-tables chain. In addition neigh_table_init() has a > check

[PATCH] fix IP-over-ATM and ARP interaction - formatting fixed.

2006-05-06 Thread Simon Kelley
The classical IP over ATM code maintains its own IPv4 <-> ARP table, using the standard neighbour-table code. The neigh_table_init function adds this neighbour table to a linked list of all neighbor tables which is used by the functions neigh_delete() neigh_add() and neightbl_set(), all called b

Re: [PATCH] fix IP-over-ATM and ARP interaction.

2006-05-06 Thread YOSHIFUJI Hideaki / 吉藤英明
In article <[EMAIL PROTECTED]> (at Sat, 06 May 2006 17:13:29 +0100), Simon Kelley <[EMAIL PROTECTED]> says: > +void neigh_table_init(struct neigh_table *tbl) > +{ > + struct neigh_table *tmp; > + > + neigh_table_init_no_netlink(tbl); > + write_lock(&neigh_tbl_lock); > + for (tmp = neigh_table

[PATCH] fix IP-over-ATM and ARP interaction.

2006-05-06 Thread Simon Kelley
The classical IP over ATM code maintains its own IPv4 <-> ARP table, using the standard neighbour-table code. The neigh_table_init function adds this neighbour table to a linked list of all neighbor tables which is used by the functions neigh_delete() neigh_add() and neightbl_set(), all called b