"Changing VNI, Port, endpoint IP address family, external, and UDP checksum attributes are not supported");
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/etherdevice.h>
#include <net/dst_metadata.h>
#include <net/gro_cells.h>
#include <net/rtnetlink.h>
#include <net/protocol.h>
#define GENEVE_NETDEV_VER "0.6"
#define GENEVE_UDP_PORT 6081
#define GENEVE_N_VID (1u << 24)
#define GENEVE_VID_MASK (GENEVE_N_VID - 1)
#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
static bool log_ecn_error = true;
module_param(log_ecn_error, bool, 0644);
MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
#define GENEVE_BASE_HLEN (sizeof(struct udphdr) + sizeof(struct genevehdr))
#define GENEVE_IPV4_HLEN (ETH_HLEN + sizeof(struct iphdr) + GENEVE_BASE_HLEN)
#define GENEVE_IPV6_HLEN (ETH_HLEN + sizeof(struct ipv6hdr) + GENEVE_BASE_HLEN)
struct list_head geneve_list;
struct list_head sock_list;
static unsigned int geneve_net_id;
struct geneve_dev *geneve;
struct geneve_dev_node hlist4;
#if IS_ENABLED(CONFIG_IPV6)
struct geneve_dev_node hlist6;
struct ip_tunnel_info info;
struct geneve_sock __rcu *sock4;
#if IS_ENABLED(CONFIG_IPV6)
struct geneve_sock __rcu *sock6;
struct gro_cells gro_cells;
bool use_udp6_rx_checksums;
struct hlist_head vni_list[VNI_HASH_SIZE];
static inline __u32 geneve_net_vni_hash(u8 vni[3])
vnid = (vni[0] << 16) | (vni[1] << 8) | vni[2];
return hash_32(vnid, VNI_HASH_BITS);