Release 4.13 arch/arm/include/asm/flat.h
/*
* arch/arm/include/asm/flat.h -- uClinux flat-format executables
*/
#ifndef __ARM_FLAT_H__
#define __ARM_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)
{
#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
return copy_from_user(addr, rp, 4) ? -EFAULT : 0;
#else
return get_user(*addr, rp);
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 47 | 82.46% | 1 | 33.33% |
Greg Ungerer | 8 | 14.04% | 1 | 33.33% |
Russell King | 2 | 3.51% | 1 | 33.33% |
Total | 57 | 100.00% | 3 | 100.00% |
static inline int flat_put_addr_at_rp(u32 __user *rp, u32 addr, u32 rel)
{
#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
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)
#define flat_set_persistent(relval, p) 0
#endif /* __ARM_FLAT_H__ */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 93 | 59.62% | 1 | 25.00% |
Greg Ungerer | 51 | 32.69% | 1 | 25.00% |
Russell King | 12 | 7.69% | 2 | 50.00% |
Total | 156 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.