svn commit: r293495 - in stable/10/sys: amd64/linux32 i386/linux
Dmitry Chagin
dchagin at FreeBSD.org
Sat Jan 9 15:18:38 UTC 2016
Author: dchagin
Date: Sat Jan 9 15:18:36 2016
New Revision: 293495
URL: https://svnweb.freebsd.org/changeset/base/293495
Log:
MFC r283385:
Some style(9) && whitespaces fixes. No functional changes.
Modified:
stable/10/sys/amd64/linux32/linux32_sysvec.c
stable/10/sys/i386/linux/linux_sysvec.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/amd64/linux32/linux32_sysvec.c
==============================================================================
--- stable/10/sys/amd64/linux32/linux32_sysvec.c Sat Jan 9 15:17:34 2016 (r293494)
+++ stable/10/sys/amd64/linux32/linux32_sysvec.c Sat Jan 9 15:18:36 2016 (r293495)
@@ -294,7 +294,7 @@ elf_linux_fixup(register_t **stack_base,
base--;
suword32(base, (uint32_t)imgp->args->argc);
*stack_base = (register_t *)base;
- return 0;
+ return (0);
}
extern unsigned long linux_sznonrtsigcode;
@@ -1171,9 +1171,9 @@ linux_elf_modevent(module_t mod, int typ
printf("Could not deinstall ELF interpreter entry\n");
break;
default:
- return EOPNOTSUPP;
+ return (EOPNOTSUPP);
}
- return error;
+ return (error);
}
static moduledata_t linux_elf_mod = {
Modified: stable/10/sys/i386/linux/linux_sysvec.c
==============================================================================
--- stable/10/sys/i386/linux/linux_sysvec.c Sat Jan 9 15:17:34 2016 (r293494)
+++ stable/10/sys/i386/linux/linux_sysvec.c Sat Jan 9 15:18:36 2016 (r293495)
@@ -209,15 +209,15 @@ static int
translate_traps(int signal, int trap_code)
{
if (signal != SIGBUS)
- return signal;
+ return (signal);
switch (trap_code) {
case T_PROTFLT:
case T_TSSFLT:
case T_DOUBLEFLT:
case T_PAGEFLT:
- return SIGSEGV;
+ return (SIGSEGV);
default:
- return signal;
+ return (signal);
}
}
@@ -685,7 +685,7 @@ linux_sigreturn(struct thread *td, struc
#define EFLAGS_SECURE(ef, oef) ((((ef) ^ (oef)) & ~PSL_USERCHANGE) == 0)
eflags = frame.sf_sc.sc_eflags;
if (!EFLAGS_SECURE(eflags, regs->tf_eflags))
- return(EINVAL);
+ return (EINVAL);
/*
* Don't allow users to load a valid privileged %cs. Let the
@@ -700,7 +700,7 @@ linux_sigreturn(struct thread *td, struc
ksi.ksi_trapno = T_PROTFLT;
ksi.ksi_addr = (void *)regs->tf_eip;
trapsignal(td, &ksi);
- return(EINVAL);
+ return (EINVAL);
}
lmask.__bits[0] = frame.sf_sc.sc_mask;
@@ -776,7 +776,7 @@ linux_rt_sigreturn(struct thread *td, st
#define EFLAGS_SECURE(ef, oef) ((((ef) ^ (oef)) & ~PSL_USERCHANGE) == 0)
eflags = context->sc_eflags;
if (!EFLAGS_SECURE(eflags, regs->tf_eflags))
- return(EINVAL);
+ return (EINVAL);
/*
* Don't allow users to load a valid privileged %cs. Let the
@@ -791,7 +791,7 @@ linux_rt_sigreturn(struct thread *td, st
ksi.ksi_trapno = T_PROTFLT;
ksi.ksi_addr = (void *)regs->tf_eip;
trapsignal(td, &ksi);
- return(EINVAL);
+ return (EINVAL);
}
linux_to_bsd_sigset(&uc.uc_sigmask, &bmask);
@@ -1147,9 +1147,9 @@ linux_elf_modevent(module_t mod, int typ
printf("Could not deinstall ELF interpreter entry\n");
break;
default:
- return EOPNOTSUPP;
+ return (EOPNOTSUPP);
}
- return error;
+ return (error);
}
static moduledata_t linux_elf_mod = {
More information about the svn-src-stable-10
mailing list