From e876dc182c49f21899c633ff0abbfe92667b6c28 Mon Sep 17 00:00:00 2001 From: Vasiliy Ulyanov Date: Thu, 27 Mar 2014 12:58:31 +0400 Subject: [PATCH] [FIX] missing syscalls issue Change-Id: If08158bd4e62608d1a97877eb4bc6a157a6e90c9 Signed-off-by: Vasiliy Ulyanov --- ks_features/ks_features.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ks_features/ks_features.c b/ks_features/ks_features.c index 8af0d36..de4f05e 100644 --- a/ks_features/ks_features.c +++ b/ks_features/ks_features.c @@ -451,11 +451,8 @@ static int init_syscall_features(void) name = get_sys_name(i); addr = swap_ksyms(name); if (addr == 0) { - printk("%s() not found\n", name); - return -EFAULT; - } - - if (ni_syscall == addr) { + printk("INFO: %s() not found\n", name); + } else if (ni_syscall == addr) { printk("INFO: %s is not install\n", name); addr = 0; } -- 2.7.4