mirror of
				https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
				synced 2025-11-04 07:44:51 +10:00 
			
		
		
		
	We previously register IPPROTO_ROUTING offload under inet6_add_offload(),
but in error path, we try to unregister it with inet_del_offload(). This
doesn't seem correct, it should actually be inet6_del_offload(), also
ipv6_exthdrs_offload_exit() from that commit seems rather incorrect (it
also uses rthdr_offload twice), but it got removed entirely later on.
Fixes: 3336288a9f ("ipv6: Switch to using new offload infrastructure.")
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
		
	
			
		
			
				
	
	
		
			42 lines
		
	
	
		
			936 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			936 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 *	IPV6 GSO/GRO offload support
 | 
						|
 *	Linux INET6 implementation
 | 
						|
 *
 | 
						|
 *	This program is free software; you can redistribute it and/or
 | 
						|
 *      modify it under the terms of the GNU General Public License
 | 
						|
 *      as published by the Free Software Foundation; either version
 | 
						|
 *      2 of the License, or (at your option) any later version.
 | 
						|
 *
 | 
						|
 *      IPV6 Extension Header GSO/GRO support
 | 
						|
 */
 | 
						|
#include <net/protocol.h>
 | 
						|
#include "ip6_offload.h"
 | 
						|
 | 
						|
static const struct net_offload rthdr_offload = {
 | 
						|
	.flags		=	INET6_PROTO_GSO_EXTHDR,
 | 
						|
};
 | 
						|
 | 
						|
static const struct net_offload dstopt_offload = {
 | 
						|
	.flags		=	INET6_PROTO_GSO_EXTHDR,
 | 
						|
};
 | 
						|
 | 
						|
int __init ipv6_exthdrs_offload_init(void)
 | 
						|
{
 | 
						|
	int ret;
 | 
						|
 | 
						|
	ret = inet6_add_offload(&rthdr_offload, IPPROTO_ROUTING);
 | 
						|
	if (ret)
 | 
						|
		goto out;
 | 
						|
 | 
						|
	ret = inet6_add_offload(&dstopt_offload, IPPROTO_DSTOPTS);
 | 
						|
	if (ret)
 | 
						|
		goto out_rt;
 | 
						|
 | 
						|
out:
 | 
						|
	return ret;
 | 
						|
 | 
						|
out_rt:
 | 
						|
	inet6_del_offload(&rthdr_offload, IPPROTO_ROUTING);
 | 
						|
	goto out;
 | 
						|
}
 |