diff options
author | Daniel Jurgens <danielj@mellanox.com> | 2017-05-19 15:48:59 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-05-23 19:28:12 +0300 |
commit | 409dcf31538ae6ae96b3a0a1d3211e668bfefe8b (patch) | |
tree | ee0e91fb5f99ad65bca29b34c4b6261f63405278 /security/selinux/Makefile | |
parent | ab861dfca1652aa09b26b7aa2899feb29b33dfd9 (diff) | |
download | linux-409dcf31538ae6ae96b3a0a1d3211e668bfefe8b.tar.xz |
selinux: Add a cache for quicker retreival of PKey SIDs
It is likely that the SID for the same PKey will be requested many
times. To reduce the time to modify QPs and process MADs use a cache to
store PKey SIDs.
This code is heavily based on the "netif" and "netport" concept
originally developed by James Morris <jmorris@redhat.com> and Paul Moore
<paul@paul-moore.com> (see security/selinux/netif.c and
security/selinux/netport.c for more information)
Signed-off-by: Daniel Jurgens <danielj@mellanox.com>
Acked-by: Doug Ledford <dledford@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/Makefile')
-rw-r--r-- | security/selinux/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/Makefile b/security/selinux/Makefile index 3411c33e2a44..ff5895ede96f 100644 --- a/security/selinux/Makefile +++ b/security/selinux/Makefile @@ -5,7 +5,7 @@ obj-$(CONFIG_SECURITY_SELINUX) := selinux.o selinux-y := avc.o hooks.o selinuxfs.o netlink.o nlmsgtab.o netif.o \ - netnode.o netport.o exports.o \ + netnode.o netport.o ibpkey.o exports.o \ ss/ebitmap.o ss/hashtab.o ss/symtab.o ss/sidtab.o ss/avtab.o \ ss/policydb.o ss/services.o ss/conditional.o ss/mls.o ss/status.o |