函数源码

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source File:mm\shmem.c Create Date:2022-07-27 15:44:52
首页 Copyright©Brick

4042
4043
4044
4045
4046
4047
4048
4049
4050
int __init shmem_init(void)
{
    BUG_ON(register_filesystem(&shmem_fs_type) != 0);
 
    shm_mnt = kern_mount(&shmem_fs_type);
    BUG_ON(IS_ERR(shm_mnt));
 
    return 0;
}