#define KMSG_COMPONENT …
#define pr_fmt(fmt) …
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/interrupt.h>
#include <asm/string.h>
#include <linux/kmod.h>
#include <linux/sysctl.h>
#include <net/ip_vs.h>
static LIST_HEAD(ip_vs_pe);
static DEFINE_MUTEX(ip_vs_pe_mutex);
struct ip_vs_pe *__ip_vs_pe_getbyname(const char *pe_name)
{ … }
struct ip_vs_pe *ip_vs_pe_getbyname(const char *name)
{ … }
int register_ip_vs_pe(struct ip_vs_pe *pe)
{ … }
EXPORT_SYMBOL_GPL(…);
int unregister_ip_vs_pe(struct ip_vs_pe *pe)
{ … }
EXPORT_SYMBOL_GPL(…);