cregit-Linux how code gets into the kernel

Release 4.14 arch/m68k/include/asm/flat.h

/* SPDX-License-Identifier: GPL-2.0 */
/*
 * flat.h -- uClinux flat-format executables
 */

#ifndef __M68KNOMMU_FLAT_H__

#define __M68KNOMMU_FLAT_H__

#include <linux/uaccess.h>


#define	flat_argvp_envp_on_stack()		1

#define	flat_old_ram_flag(flags)		(flags)

#define	flat_reloc_valid(reloc, size)		((reloc) <= (size))

static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags, u32 *addr, u32 *persistent) { #ifdef CONFIG_CPU_HAS_NO_UNALIGNED return copy_from_user(addr, rp, 4) ? -EFAULT : 0; #else return get_user(*addr, rp); #endif }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro4884.21%125.00%
Greg Ungerer610.53%125.00%
Andrew Morton23.51%125.00%
Bernd Schmidt11.75%125.00%
Total57100.00%4100.00%


static inline int flat_put_addr_at_rp(u32 __user *rp, u32 addr, u32 rel) { #ifdef CONFIG_CPU_HAS_NO_UNALIGNED return copy_to_user(rp, &addr, 4) ? -EFAULT : 0; #else return put_user(addr, rp); #endif }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro4387.76%150.00%
Greg Ungerer612.24%150.00%
Total49100.00%2100.00%

#define flat_get_relocate_addr(rel) (rel)
static inline int flat_set_persistent(u32 relval, u32 *persistent) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ezequiel García1058.82%133.33%
Bernd Schmidt529.41%133.33%
Geert Uytterhoeven211.76%133.33%
Total17100.00%3100.00%

#define FLAT_PLAT_INIT(regs) \ do { \ if (current->mm) \ (regs)->d5 = current->mm->start_data; \ } while (0) #endif /* __M68KNOMMU_FLAT_H__ */

Overall Contributors

PersonTokensPropCommitsCommitProp
Al Viro9454.34%110.00%
Greg Ungerer5833.53%440.00%
Ezequiel García105.78%110.00%
Bernd Schmidt63.47%110.00%
Andrew Morton21.16%110.00%
Geert Uytterhoeven21.16%110.00%
Greg Kroah-Hartman10.58%110.00%
Total173100.00%10100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.