diff options
author | Paul Moore <paul.moore@hp.com> | 2008-04-10 10:48:14 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-04-18 20:26:16 +1000 |
commit | 3e11217263d0521e212cb8a017fbc2a1514db78f (patch) | |
tree | d3b399c3d907cd90afd27003000fd9d99212f44b /security/selinux/Makefile | |
parent | 832cbd9aa1293cba57d06571f5fc8f0917c672af (diff) | |
download | op-kernel-dev-3e11217263d0521e212cb8a017fbc2a1514db78f.zip op-kernel-dev-3e11217263d0521e212cb8a017fbc2a1514db78f.tar.gz |
SELinux: Add network port SID cache
Much like we added a network node cache, this patch adds a network port
cache. The design is taken almost completely from the network node cache
which in turn was taken from the network interface cache. The basic idea is
to cache entries in a hash table based on protocol/port information. The
hash function only takes the port number into account since the number of
different protocols in use at any one time is expected to be relatively
small.
Signed-off-by: Paul Moore <paul.moore@hp.com>
Acked-by: Stephen Smalley <sds@tycho.nsa.gov>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/selinux/Makefile')
-rw-r--r-- | security/selinux/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/selinux/Makefile b/security/selinux/Makefile index 00afd85..d47fc5e 100644 --- a/security/selinux/Makefile +++ b/security/selinux/Makefile @@ -11,6 +11,7 @@ selinux-y := avc.o \ nlmsgtab.o \ netif.o \ netnode.o \ + netport.o \ exports.o selinux-$(CONFIG_SECURITY_NETWORK_XFRM) += xfrm.o |