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个文件


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值