Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-13 Thread Xin Long
On Tue, Aug 11, 2020 at 10:26 AM Hideaki Yoshifuji wrote: > > Hi, > > 2020年8月9日(日) 19:52 Xin Long : > > > > On Fri, Aug 7, 2020 at 5:26 PM Hideaki Yoshifuji > > wrote: > > > > > > Hi, > > > > > > 2020年8月6日(木) 23:03 David Ahern : > > > > > > > > On 8/6/20 2:55 AM, Xin Long wrote: > > > > > On Thu,

Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-10 Thread Hideaki Yoshifuji
Hi, 2020年8月9日(日) 19:52 Xin Long : > > On Fri, Aug 7, 2020 at 5:26 PM Hideaki Yoshifuji > wrote: > > > > Hi, > > > > 2020年8月6日(木) 23:03 David Ahern : > > > > > > On 8/6/20 2:55 AM, Xin Long wrote: > > > > On Thu, Aug 6, 2020 at 10:50 AM Hideaki Yoshifuji > > > > wrote: > > > >> > > > >> Hi, > > >

Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-09 Thread Xin Long
On Fri, Aug 7, 2020 at 5:26 PM Hideaki Yoshifuji wrote: > > Hi, > > 2020年8月6日(木) 23:03 David Ahern : > > > > On 8/6/20 2:55 AM, Xin Long wrote: > > > On Thu, Aug 6, 2020 at 10:50 AM Hideaki Yoshifuji > > > wrote: > > >> > > >> Hi, > > >> > > >> 2020年8月4日(火) 0:35 Xin Long : > > >>> > > >>> This is

Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-07 Thread Hideaki Yoshifuji
Hi, 2020年8月6日(木) 23:03 David Ahern : > > On 8/6/20 2:55 AM, Xin Long wrote: > > On Thu, Aug 6, 2020 at 10:50 AM Hideaki Yoshifuji > > wrote: > >> > >> Hi, > >> > >> 2020年8月4日(火) 0:35 Xin Long : > >>> > >>> This is to add an ip_dev_find like function for ipv6, used to find > >>> the dev by saddr.

Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-07 Thread Xin Long
On Thu, Aug 6, 2020 at 10:03 PM David Ahern wrote: > > On 8/6/20 2:55 AM, Xin Long wrote: > > On Thu, Aug 6, 2020 at 10:50 AM Hideaki Yoshifuji > > wrote: > >> > >> Hi, > >> > >> 2020年8月4日(火) 0:35 Xin Long : > >>> > >>> This is to add an ip_dev_find like function for ipv6, used to find > >>> the

Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-06 Thread David Ahern
On 8/6/20 2:55 AM, Xin Long wrote: > On Thu, Aug 6, 2020 at 10:50 AM Hideaki Yoshifuji > wrote: >> >> Hi, >> >> 2020年8月4日(火) 0:35 Xin Long : >>> >>> This is to add an ip_dev_find like function for ipv6, used to find >>> the dev by saddr. >>> >>> It will be used by TIPC protocol. So also export it.

Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-06 Thread Xin Long
On Thu, Aug 6, 2020 at 10:50 AM Hideaki Yoshifuji wrote: > > Hi, > > 2020年8月4日(火) 0:35 Xin Long : > > > > This is to add an ip_dev_find like function for ipv6, used to find > > the dev by saddr. > > > > It will be used by TIPC protocol. So also export it. > > > > Signed-off-by: Xin Long > > --- >

Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-05 Thread Hideaki Yoshifuji
Hi, 2020年8月4日(火) 0:35 Xin Long : > > This is to add an ip_dev_find like function for ipv6, used to find > the dev by saddr. > > It will be used by TIPC protocol. So also export it. > > Signed-off-by: Xin Long > --- > include/net/addrconf.h | 2 ++ > net/ipv6/addrconf.c| 39 +

Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-05 Thread David Ahern
On 8/5/20 5:03 AM, Ying Xue wrote: >> diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c >> index 840bfdb..857d6f9 100644 >> --- a/net/ipv6/addrconf.c >> +++ b/net/ipv6/addrconf.c >> @@ -1983,6 +1983,45 @@ int ipv6_chk_prefix(const struct in6_addr *addr, >> struct net_device *dev) >> } >> EX

Re: [PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-05 Thread Ying Xue
On 8/3/20 11:34 PM, Xin Long wrote: > This is to add an ip_dev_find like function for ipv6, used to find > the dev by saddr. > > It will be used by TIPC protocol. So also export it. > > Signed-off-by: Xin Long Acked-by: Ying Xue > --- > include/net/addrconf.h | 2 ++ > net/ipv6/addrconf.c

[PATCH net 1/2] ipv6: add ipv6_dev_find()

2020-08-03 Thread Xin Long
This is to add an ip_dev_find like function for ipv6, used to find the dev by saddr. It will be used by TIPC protocol. So also export it. Signed-off-by: Xin Long --- include/net/addrconf.h | 2 ++ net/ipv6/addrconf.c| 39 +++ 2 files changed, 41 insertio