cregit-Linux how code gets into the kernel

Release 4.15 arch/mips/include/asm/compat-signal.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_COMPAT_SIGNAL_H

#define __ASM_COMPAT_SIGNAL_H

#include <linux/bug.h>
#include <linux/compat.h>
#include <linux/compiler.h>

#include <asm/signal.h>
#include <asm/siginfo.h>

#include <linux/uaccess.h>


static inline int __copy_conv_sigset_to_user(compat_sigset_t __user *d, const sigset_t *s) { BUILD_BUG_ON(sizeof(*d) != sizeof(*s)); BUILD_BUG_ON(_NSIG_WORDS != 2); return put_compat_sigset(d, s, sizeof(*d)); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle4686.79%150.00%
Al Viro713.21%150.00%
Total53100.00%2100.00%


static inline int __copy_conv_sigset_from_user(sigset_t *d, const compat_sigset_t __user *s) { return get_compat_sigset(d, s); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle2392.00%150.00%
Al Viro28.00%150.00%
Total25100.00%2100.00%

#endif /* __ASM_COMPAT_SIGNAL_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle9589.62%350.00%
Al Viro98.49%116.67%
Greg Kroah-Hartman10.94%116.67%
Linus Torvalds10.94%116.67%
Total106100.00%6100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.