Release 4.13 arch/m68k/include/asm/flat.h
/*
* 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
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 48 | 84.21% | 1 | 25.00% |
Greg Ungerer | 6 | 10.53% | 1 | 25.00% |
Andrew Morton | 2 | 3.51% | 1 | 25.00% |
Bernd Schmidt | 1 | 1.75% | 1 | 25.00% |
Total | 57 | 100.00% | 4 | 100.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
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 43 | 87.76% | 1 | 50.00% |
Greg Ungerer | 6 | 12.24% | 1 | 50.00% |
Total | 49 | 100.00% | 2 | 100.00% |
#define flat_get_relocate_addr(rel) (rel)
static inline int flat_set_persistent(u32 relval, u32 *persistent)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ezequiel García | 10 | 58.82% | 1 | 33.33% |
Bernd Schmidt | 5 | 29.41% | 1 | 33.33% |
Geert Uytterhoeven | 2 | 11.76% | 1 | 33.33% |
Total | 17 | 100.00% | 3 | 100.00% |
#define FLAT_PLAT_INIT(regs) \
do { \
if (current->mm) \
(regs)->d5 = current->mm->start_data; \
} while (0)
#endif /* __M68KNOMMU_FLAT_H__ */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 94 | 54.65% | 1 | 11.11% |
Greg Ungerer | 58 | 33.72% | 4 | 44.44% |
Ezequiel García | 10 | 5.81% | 1 | 11.11% |
Bernd Schmidt | 6 | 3.49% | 1 | 11.11% |
Andrew Morton | 2 | 1.16% | 1 | 11.11% |
Geert Uytterhoeven | 2 | 1.16% | 1 | 11.11% |
Total | 172 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.