Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:security\apparmor\match.c Create Date:2022-07-28 19:51:04
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:aa_setup_dfa_engine

Proto:int aa_setup_dfa_engine(void)

Type:int

Parameter:Nothing

38  nulldfa = aa_dfa_unpack - unpack the binary tables of a serialized dfa*@blob: aligned serialized stream of data to unpack (NOT NULL)*@size: size of data to unpack*@flags: flags controlling what type of accept tables are acceptable
41  If IS_ERR(nulldfa) Then
42  error = PTR_ERR(nulldfa)
43  nulldfa = NULL
44  Return error
47  stacksplitdfa = aa_dfa_unpack - unpack the binary tables of a serialized dfa*@blob: aligned serialized stream of data to unpack (NOT NULL)*@size: size of data to unpack*@flags: flags controlling what type of accept tables are acceptable
51  If IS_ERR(stacksplitdfa) Then
52  aa_put_dfa - put a dfa refcount*@dfa: dfa to put refcount (MAYBE NULL)* Requires: if @dfa != NULL that a valid refcount be held
53  nulldfa = NULL
54  error = PTR_ERR(stacksplitdfa)
55  stacksplitdfa = NULL
56  Return error
59  Return 0
Caller
NameDescribe
apparmor_init