sock_init

static int __init sock_init(void)
{
        /*
         *      Initialize sock SLAB cache.
         */

        sk_init();

        /* 
         *      Initialize skbuff SLAB cache
         */     
        skb_init();

        /*
         *      Initialize the protocols module.
         */

        init_inodecache();
        register_filesystem(&sock_fs_type);
        sock_mnt = kern_mount(&sock_fs_type);

        /* The real protocol initialization is performed in later initcalls.
         */

#ifdef CONFIG_NETFILTER
        netfilter_init();
#endif

        return 0;
}

很简单的代码。

sk_init():根据内存大小确定socket接收、发送缓存大小。

skb_init():创建2个slab缓存,名字分别skbuff_head_cache和skbuff_fclone_cache。

init_inodecache():创建名字为sock_inode_cache的slab缓存。

register_filesystem(&sock_fs_type):注册sockfs文件系统。

kern_mount(&sock_fs_type):挂载文件系统。

最后根据内核选项CONFIG_NETFILTER决定是否调用netfilter_init()函数,该函数首先创建/proc/net/netfilter目录,并在目录下创建nf_queue、nf_log2个文件


你可能感兴趣的:(sock_init)