mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-05 11:53:21 +07:00
LSM: fix documentation for the socket_post_create hook
This patch slightly fixes the documentation for the socket_post_create hook. The documentation states that i_security field is accessible through inode field of socket structure (i.e., 'sock->inode->i_security'). There is no inode field in the socket structure. The i_security field is accessible through SOCK_INODE macro. The patch updates the documentation to reflect this. Signed-off-by: Denis Efremov <efremov@ispras.ru> Acked-by: Kees Cook <keescook@chromium.org> Acked-by: Casey Schaufler <casey@schaufler-ca.com> Signed-off-by: James Morris <james.morris@microsoft.com>
This commit is contained in:
parent
5f4b97555c
commit
68b3edbd9f
@ -768,9 +768,9 @@
|
|||||||
* socket structure, but rather, the socket security information is stored
|
* socket structure, but rather, the socket security information is stored
|
||||||
* in the associated inode. Typically, the inode alloc_security hook will
|
* in the associated inode. Typically, the inode alloc_security hook will
|
||||||
* allocate and and attach security information to
|
* allocate and and attach security information to
|
||||||
* sock->inode->i_security. This hook may be used to update the
|
* SOCK_INODE(sock)->i_security. This hook may be used to update the
|
||||||
* sock->inode->i_security field with additional information that wasn't
|
* SOCK_INODE(sock)->i_security field with additional information that
|
||||||
* available when the inode was allocated.
|
* wasn't available when the inode was allocated.
|
||||||
* @sock contains the newly created socket structure.
|
* @sock contains the newly created socket structure.
|
||||||
* @family contains the requested protocol family.
|
* @family contains the requested protocol family.
|
||||||
* @type contains the requested communications type.
|
* @type contains the requested communications type.
|
||||||
|
Loading…
Reference in New Issue
Block a user