函数源码 |
Source File:fs\inode.c |
Create Date:2022-07-29 10:38:09 |
首页 | Copyright©Brick |
1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 | /* * Initialize the waitqueues and inode hash table. */ void __init inode_init_early( void ) { /* If hashes are distributed across NUMA nodes, defer * hash allocation until vmalloc space is available. */ if (hashdist) return ; inode_hashtable = alloc_large_system_hash( "Inode-cache" , sizeof ( struct hlist_head), ihash_entries, 14, HASH_EARLY | HASH_ZERO, &i_hash_shift, &i_hash_mask, 0, 0); } |