/* * AppArmor security module * * This file contains AppArmor security identifier (sid) manipulation fns * * Copyright 2009-2010 Canonical Ltd. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, version 2 of the * License. * * * AppArmor allocates a unique sid for every profile loaded. If a profile * is replaced it receives the sid of the profile it is replacing. * * The sid value of 0 is invalid. */ #include #include #include #include "include/sid.h" /* global counter from which sids are allocated */ static u32 global_sid; static DEFINE_SPINLOCK(sid_lock); /* TODO FIXME: add sid to profile mapping, and sid recycling */ /** * aa_alloc_sid - allocate a new sid for a profile */ u32 aa_alloc_sid(void) { u32 sid; /* * TODO FIXME: sid recycling - part of profile mapping table */ spin_lock(&sid_lock); sid = (++global_sid); spin_unlock(&sid_lock); return sid; } /** * aa_free_sid - free a sid * @sid: sid to free */ void aa_free_sid(u32 sid) { ; /* NOP ATM */ } vate-remove' selected='selected'>nds-private-remove net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVenkat Reddy Talla <vreddytalla@nvidia.com>2016-11-17 23:24:36 +0530
committerMark Brown <broonie@kernel.org>2016-11-23 16:27:42 +0000
commit983779235a4d08f94e8cda073200423e0ff01d2e (patch)
tree254b624bd499c14b09d55abaf209ea95f3c860f7 /net/mac802154/cfg.h
parent383d0fca7035a12f1201277d33e8fc87c9d60c9a (diff)
regulator: max77620: add documentation for MPOK property
Adding documentation for maxim,power-ok-control dts property Signed-off-by: Venkat Reddy Talla <vreddytalla@nvidia.com> Acked-by: Rob Herring <robh@kernel.org> Acked-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'net/mac802154/cfg.h')