The aa_features object that is passed to aa_policy_cache_new() does not have to represent the currently running kernel. It may represent a different kernel, such as a kernel that was just installed, that is not currently running.
This patch adjusts the function comments to remove mentions of "... the currently running kernel". Signed-off-by: Tyler Hicks <[email protected]> Acked-by: Steve Beattie <[email protected]> --- libraries/libapparmor/src/policy_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libapparmor/src/policy_cache.c b/libraries/libapparmor/src/policy_cache.c index b4391b1..31f2e8a 100644 --- a/libraries/libapparmor/src/policy_cache.c +++ b/libraries/libapparmor/src/policy_cache.c @@ -142,7 +142,7 @@ static int replace_all_cb(DIR *dir unused, const char *name, struct stat *st, * aa_policy_cache_new - create a new policy_cache from a path * @policy_cache: will point to the address of an allocated and initialized * aa_policy_cache_new object upon success - * @kernel_features: features representing the currently running kernel + * @kernel_features: features representing a kernel * @path: path to the policy cache * @max_caches: The maximum number of policy caches, one for each unique set of * kernel features, before older caches are auto-reaped. 0 means -- 2.1.4 -- AppArmor mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/apparmor
