summaryrefslogtreecommitdiff
path: root/gl/lib
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2007-11-10 17:31:31 +0100
committerJim Meyering <meyering@redhat.com>2007-11-10 18:41:14 +0100
commit56e3106e934796f993decd08b3c4224d3830209a (patch)
tree899d1c9f84823122e8eed0d2c2a13c488216f267 /gl/lib
parentca5b9746c86355cbb6c2053242b2e800a3f1ca4f (diff)
downloadcoreutils-56e3106e934796f993decd08b3c4224d3830209a.tar.xz
install+SELinux: reduce a 12x performance hit to ~1.5x
* src/install.c (setdefaultfilecon): Call matchpathcon_init_prefix, to mitigate what would otherwise be a large performance hit due to the use of matchpathcon. Dan Walsh suggested the use of matchpathcon_init_prefix. * gl/lib/se-selinux.in.h (matchpathcon_init_prefix): Define. Signed-off-by: Jim Meyering <meyering@redhat.com>
Diffstat (limited to 'gl/lib')
-rw-r--r--gl/lib/se-selinux.in.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gl/lib/se-selinux.in.h b/gl/lib/se-selinux.in.h
index 7bfe4c5ff..7be1e702a 100644
--- a/gl/lib/se-selinux.in.h
+++ b/gl/lib/se-selinux.in.h
@@ -51,4 +51,7 @@ static inline int security_compute_create (security_context_t scon,
security_class_t tclass,
security_context_t *newcon)
{ errno = ENOTSUP; return -1; }
+static inline int matchpathcon_init_prefix (char const *path,
+ char const *prefix)
+ { errno = ENOTSUP; return -1; }
#endif