diff options
| author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2026-03-13 17:26:05 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2026-03-13 17:26:05 +0100 |
| commit | a7e8c9cc3a13baf3dcf9734dd55609aa7ff9a1a0 (patch) | |
| tree | e35ab2f843598362bcda9ba40dc499eead795d42 /security/apparmor/include/lib.h | |
| parent | ee6bf57ad14c891455f6ea6f3e7b96d841b436b8 (diff) | |
| parent | 86818b2e7d9c22225b15f2ae91d3f35c4a07dfd9 (diff) | |
Merge v6.19.8
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'security/apparmor/include/lib.h')
| -rw-r--r-- | security/apparmor/include/lib.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/security/apparmor/include/lib.h b/security/apparmor/include/lib.h index 444197075fd6..26df19c1df4f 100644 --- a/security/apparmor/include/lib.h +++ b/security/apparmor/include/lib.h @@ -85,6 +85,18 @@ void aa_info_message(const char *str); /* Security blob offsets */ extern struct lsm_blob_sizes apparmor_blob_sizes; +enum reftype { + REF_NS, + REF_PROXY, + REF_RAWDATA, +}; + +/* common reference count used by data the shows up in aafs */ +struct aa_common_ref { + struct kref count; + enum reftype reftype; +}; + /** * aa_strneq - compare null terminated @str to a non null terminated substring * @str: a null terminated string |
