函数源码

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source File:security\security.c Create Date:2022-07-27 20:13:54
首页 Copyright©Brick

1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
int security_msg_msg_alloc(struct msg_msg *msg)
{
    int rc = lsm_msg_msg_alloc(msg);
 
    if (unlikely(rc))
        return rc;
    rc = call_int_hook(msg_msg_alloc_security, 0, msg);
    if (unlikely(rc))
        security_msg_msg_free(msg);
    return rc;
}