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
1
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
2f3196d
Documentation
LICENSES
arch
alpha
arc
arm
arm64
c6x
csky
h8300
hexagon
ia64
m68k
microblaze
mips
nds32
nios2
openrisc
parisc
powerpc
riscv
s390
sh
sparc
um
unicore32
x86
xtensa
boot
configs
include
asm
Kbuild
asm-offsets.h
asm-uaccess.h
asmmacro.h
atomic.h
barrier.h
bitops.h
bootparam.h
bugs.h
cache.h
cacheasm.h
cacheflush.h
checksum.h
cmpxchg.h
coprocessor.h
core.h
current.h
delay.h
dma.h
elf.h
fixmap.h
flat.h
ftrace.h
futex.h
highmem.h
hw_breakpoint.h
hw_irq.h
initialize_mmu.h
io.h
irq.h
irqflags.h
jump_label.h
kasan.h
kmem_layout.h
linkage.h
mmu.h
mmu_context.h
module.h
mxregs.h
nommu_context.h
page.h
pci-bridge.h
pci.h
perf_event.h
pgalloc.h
pgtable.h
platform.h
processor.h
ptrace.h
regs.h
serial.h
shmparam.h
signal.h
smp.h
spinlock.h
spinlock_types.h
stackprotector.h
stacktrace.h
string.h
switch_to.h
syscall.h
sysmem.h
thread_info.h
timex.h
tlb.h
tlbflush.h
traps.h
types.h
uaccess.h
ucontext.h
unaligned.h
unistd.h
user.h
vectors.h
uapi
kernel
lib
mm
oprofile
platforms
variants
Kconfig
Kconfig.debug
Makefile
.gitignore
Kconfig
block
certs
crypto
drivers
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
arch
/
xtensa
/
include
/
asm
/
flat.h
Copy path
Blame
Blame
Latest commit
History
History
22 lines (19 loc) · 583 Bytes
Breadcrumbs
linux
/
arch
/
xtensa
/
include
/
asm
/
flat.h
Top
File metadata and controls
Code
Blame
22 lines (19 loc) · 583 Bytes
Raw
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_XTENSA_FLAT_H #define __ASM_XTENSA_FLAT_H #include <asm/unaligned.h> #define flat_argvp_envp_on_stack() 0 #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) { *addr = get_unaligned((__force u32 *)rp); return 0; } static inline int flat_put_addr_at_rp(u32 __user *rp, u32 addr, u32 rel) { put_unaligned(addr, (__force u32 *)rp); return 0; } #define flat_get_relocate_addr(rel) (rel) #endif /* __ASM_XTENSA_FLAT_H */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
You can’t perform that action at this time.