diff options
author | John Johansen <john.johansen@canonical.com> | 2017-05-22 02:15:28 +0200 |
---|---|---|
committer | John Johansen <john.johansen@canonical.com> | 2017-06-08 20:29:33 +0200 |
commit | af7caa8f8dd1b45e38a3653a69ed4d708286bc83 (patch) | |
tree | f2bf5db48baf996acf450c7aa5155c2aa98cd74b /security/apparmor/include/context.h | |
parent | security/apparmor: Use POSIX-compatible "printf '%s'" (diff) | |
download | linux-af7caa8f8dd1b45e38a3653a69ed4d708286bc83.tar.xz linux-af7caa8f8dd1b45e38a3653a69ed4d708286bc83.zip |
apparmor: move file context into file.h
Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'security/apparmor/include/context.h')
-rw-r--r-- | security/apparmor/include/context.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/security/apparmor/include/context.h b/security/apparmor/include/context.h index 5b18fedab4c8..420cfd041218 100644 --- a/security/apparmor/include/context.h +++ b/security/apparmor/include/context.h @@ -25,38 +25,6 @@ #define cred_ctx(X) ((X)->security) #define current_ctx() cred_ctx(current_cred()) -/* struct aa_file_ctx - the AppArmor context the file was opened in - * @perms: the permission the file was opened with - * - * The file_ctx could currently be directly stored in file->f_security - * as the profile reference is now stored in the f_cred. However the - * ctx struct will expand in the future so we keep the struct. - */ -struct aa_file_ctx { - u16 allow; -}; - -/** - * aa_alloc_file_context - allocate file_ctx - * @gfp: gfp flags for allocation - * - * Returns: file_ctx or NULL on failure - */ -static inline struct aa_file_ctx *aa_alloc_file_context(gfp_t gfp) -{ - return kzalloc(sizeof(struct aa_file_ctx), gfp); -} - -/** - * aa_free_file_context - free a file_ctx - * @ctx: file_ctx to free (MAYBE_NULL) - */ -static inline void aa_free_file_context(struct aa_file_ctx *ctx) -{ - if (ctx) - kzfree(ctx); -} - /** * struct aa_task_ctx - primary label for confined tasks * @profile: the current profile (NOT NULL) |