Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
2f3196d
Breadcrumbs
linux
/
arch
/
arm
/
include
/
asm
/
flat.h
Blame
Blame
Latest commit
History
History
35 lines (28 loc) · 814 Bytes
Breadcrumbs
linux
/
arch
/
arm
/
include
/
asm
/
flat.h
Top
File metadata and controls
Code
Blame
35 lines (28 loc) · 814 Bytes
Raw
/* SPDX-License-Identifier: GPL-2.0 */ /* * 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) 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 } 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 } #define flat_get_relocate_addr(rel) (rel) #endif /* __ARM_FLAT_H__ */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
You can’t perform that action at this time.