kernel/fs/fscache/cookie.c
.. .. @@ -950,3 +950,11 @@ 950 950 return -ESTALE; 951 951 } 952 952 EXPORT_SYMBOL(__fscache_check_consistency); 953 +954 +void __init fscache_cookie_init(void)955 +{956 + int i;957 +958 + for (i = 0; i < ARRAY_SIZE(fscache_cookie_hash); i++)959 + INIT_HLIST_BL_HEAD(&fscache_cookie_hash[i]);960 +}