]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
[IPv6]: use container_of() macro in fib6_clean_node()
authorBenjamin Thery <benjamin.thery@bull.net>
Tue, 9 Oct 2007 03:39:36 +0000 (20:39 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Wed, 10 Oct 2007 23:54:58 +0000 (16:54 -0700)
commit0a8891a0a419d43ea06c8ded0849f0820c6a873b
treec27533cfcb08840470ae082bc981a03d2fa57c22
parent4665079cbb2a3e17de82f2ab2940b9f97f37d65e
[IPv6]: use container_of() macro in fib6_clean_node()

In ip6_fib.c, fib6_clean_node() casts a fib6_walker_t pointer to
a fib6_cleaner_t pointer assuming a struct fib6_walker_t (field 'w')
is the first field in struct fib6_walker_t.

To prevent any future problems that may occur if one day a field
is inadvertently inserted before the 'w' field in struct fib6_cleaner_t,
(and to improve readability), this patch uses the container_of() macro.

Signed-off-by: Benjamin Thery <benjamin.thery@bull.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ip6_fib.c