Re: [PATCH 4/4] Add loopback address type inline

2007-04-06 Thread Brian Haley
YOSHIFUJI Hideaki / wrote: diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 32c6398..06ee92d 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -1067,7 +1067,6 @@ int ip6_route_add(struct fib6_config *cfg) struct net_device *dev = NULL; struct inet6_dev *idev = NUL

Re: [PATCH 4/4] Add loopback address type inline

2007-04-05 Thread YOSHIFUJI Hideaki / 吉藤英明
In article <[EMAIL PROTECTED]> (at Thu, 05 Apr 2007 23:21:33 -0400), Brian Haley <[EMAIL PROTECTED]> says: > Add loopback address type inline to avoid calls to ipv6_addr_type(). > diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c > index f6aa338..7f1aabe 100644 > --- a/net/ipv6/ip6_outp

[PATCH 4/4] Add loopback address type inline

2007-04-05 Thread Brian Haley
Add loopback address type inline to avoid calls to ipv6_addr_type(). Signed-off-by: Brian Haley <[EMAIL PROTECTED]> --- include/net/ipv6.h|7 +++ net/ipv6/ip6_output.c |5 +++-- net/ipv6/route.c |8 +++- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a