···216216217217static LIST_HEAD(global_queue);218218219219-static unsigned long global_num = 0;219219+static unsigned long global_num;220220221221/*222222 * Buffers are freed after this timeout
+1-1
drivers/md/dm-crypt.c
···230230#define POOL_ENTRY_SIZE 512231231232232static DEFINE_SPINLOCK(dm_crypt_clients_lock);233233-static unsigned int dm_crypt_clients_n = 0;233233+static unsigned int dm_crypt_clients_n;234234static volatile unsigned long dm_crypt_pages_per_client;235235#define DM_CRYPT_MEMORY_PERCENT 2236236#define DM_CRYPT_MIN_PAGES_PER_CLIENT (BIO_MAX_VECS * 16)
+1-1
drivers/md/dm-raid.c
···3030 */3131#define MIN_RAID456_JOURNAL_SPACE (4*2048)32323333-static bool devices_handle_discard_safely = false;3333+static bool devices_handle_discard_safely;34343535/*3636 * The following flags are used by dm-raid.c to set up the array state.
+2-2
drivers/md/dm.c
···50505151static const char *_name = DM_NAME;52525353-static unsigned int major = 0;5454-static unsigned int _major = 0;5353+static unsigned int major;5454+static unsigned int _major;55555656static DEFINE_IDR(_minor_idr);5757