X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=fs%2Fdcookies.c;h=c1208f53bd74596c74423f085886c859bf51cf3e;hb=6c1153e00af8de755ec278d873a97c9ce2a72d10;hp=8749339bf4f6c5ed45cdaf37239751c4d05663d4;hpb=63e8d9114dab88c101be2372cb1f83a4fe74d9c1;p=firefly-linux-kernel-4.4.55.git diff --git a/fs/dcookies.c b/fs/dcookies.c index 8749339bf4f6..c1208f53bd74 100644 --- a/fs/dcookies.c +++ b/fs/dcookies.c @@ -12,7 +12,6 @@ * to the pair and can be looked up from userspace. */ -#include #include #include #include @@ -38,7 +37,7 @@ struct dcookie_struct { static LIST_HEAD(dcookie_users); static DEFINE_MUTEX(dcookie_mutex); -static kmem_cache_t *dcookie_cache __read_mostly; +static struct kmem_cache *dcookie_cache __read_mostly; static struct list_head *dcookie_hashtable __read_mostly; static size_t hash_size __read_mostly; @@ -206,7 +205,7 @@ static int dcookie_init(void) dcookie_cache = kmem_cache_create("dcookie_cache", sizeof(struct dcookie_struct), - 0, 0, NULL, NULL); + 0, 0, NULL); if (!dcookie_cache) goto out;