From defc1ea34074e7882724c460260d307cdf981a70 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 27 Jun 2008 02:52:20 +0000 Subject: *: introduce and use FAST_FUNC: regparm on i386, otherwise no-on text data bss dec hex filename 808035 611 6868 815514 c719a busybox_old 804472 611 6868 811951 c63af busybox_unstripped --- libbb/selinux_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libbb/selinux_common.c') diff --git a/libbb/selinux_common.c b/libbb/selinux_common.c index 7478cc7b5..5fdbe9d58 100644 --- a/libbb/selinux_common.c +++ b/libbb/selinux_common.c @@ -7,7 +7,7 @@ #include "libbb.h" #include -context_t set_security_context_component(security_context_t cur_context, +context_t FAST_FUNC set_security_context_component(security_context_t cur_context, char *user, char *role, char *type, char *range) { context_t con = context_new(cur_context); @@ -29,7 +29,7 @@ error: return NULL; } -void setfscreatecon_or_die(security_context_t scontext) +void FAST_FUNC setfscreatecon_or_die(security_context_t scontext) { if (setfscreatecon(scontext) < 0) { /* Can be NULL. All known printf implementations @@ -39,7 +39,7 @@ void setfscreatecon_or_die(security_context_t scontext) } } -void selinux_preserve_fcontext(int fdesc) +void FAST_FUNC selinux_preserve_fcontext(int fdesc) { security_context_t context; -- cgit v1.2.3