#include <linux/module.h>
#include <linux/vmalloc.h>
#include <linux/miscdevice.h>
#include <linux/sched/mm.h>
#include <linux/dm-ioctl.h>
#include <linux/compat.h>
#include <linux/uaccess.h>
#define DM_MSG_PREFIX "ioctl"
#define DM_DRIVER_EMAIL "dm-devel@redhat.com"
volatile unsigned global_event_nr;
struct list_head name_list;
struct list_head uuid_list;
struct mapped_device *md;
struct dm_table *new_map;
struct dm_target_versions *vers, *old_vers;
#define MASK_BUCKETS (NUM_BUCKETS - 1)
static struct list_head _name_buckets[NUM_BUCKETS];
static struct list_head _uuid_buckets[NUM_BUCKETS];
static void dm_hash_remove_all(bool keep_open_devices, bool mark_deferred, bool only_deferred);