[IPV6]: Add missing initializations of the new nl_info.nl_net field
Add some more missing initializations of the new nl_info.nl_net field in IPv6 stack. This field will be used when network namespaces are fully supported. Signed-off-by: Benjamin Thery <benjamin.thery@bull.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									3dbf8d56a2
								
							
						
					
					
						commit
						f1243c2db6
					
				| @ -1557,6 +1557,7 @@ addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev, | ||||
| 		.fc_expires = expires, | ||||
| 		.fc_dst_len = plen, | ||||
| 		.fc_flags = RTF_UP | flags, | ||||
| 		.fc_nlinfo.nl_net = &init_net, | ||||
| 	}; | ||||
| 
 | ||||
| 	ipv6_addr_copy(&cfg.fc_dst, pfx); | ||||
| @ -1583,6 +1584,7 @@ static void addrconf_add_mroute(struct net_device *dev) | ||||
| 		.fc_ifindex = dev->ifindex, | ||||
| 		.fc_dst_len = 8, | ||||
| 		.fc_flags = RTF_UP, | ||||
| 		.fc_nlinfo.nl_net = &init_net, | ||||
| 	}; | ||||
| 
 | ||||
| 	ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0); | ||||
| @ -1599,6 +1601,7 @@ static void sit_route_add(struct net_device *dev) | ||||
| 		.fc_ifindex = dev->ifindex, | ||||
| 		.fc_dst_len = 96, | ||||
| 		.fc_flags = RTF_UP | RTF_NONEXTHOP, | ||||
| 		.fc_nlinfo.nl_net = &init_net, | ||||
| 	}; | ||||
| 
 | ||||
| 	/* prefix length - 96 bits "::d.d.d.d" */ | ||||
|  | ||||
| @ -1719,6 +1719,8 @@ static void rtmsg_to_fib6_config(struct in6_rtmsg *rtmsg, | ||||
| 	cfg->fc_src_len = rtmsg->rtmsg_src_len; | ||||
| 	cfg->fc_flags = rtmsg->rtmsg_flags; | ||||
| 
 | ||||
| 	cfg->fc_nlinfo.nl_net = &init_net; | ||||
| 
 | ||||
| 	ipv6_addr_copy(&cfg->fc_dst, &rtmsg->rtmsg_dst); | ||||
| 	ipv6_addr_copy(&cfg->fc_src, &rtmsg->rtmsg_src); | ||||
| 	ipv6_addr_copy(&cfg->fc_gateway, &rtmsg->rtmsg_gateway); | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user