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
786d35d
Breadcrumbs
linux
/
arch
/
arm
/
include
/
asm
/
module.h
Blame
Blame
Latest commit
History
History
47 lines (38 loc) · 1004 Bytes
Breadcrumbs
linux
/
arch
/
arm
/
include
/
asm
/
module.h
Top
File metadata and controls
Code
Blame
47 lines (38 loc) · 1004 Bytes
Raw
#ifndef _ASM_ARM_MODULE_H #define _ASM_ARM_MODULE_H #include <asm-generic/module.h> struct unwind_table; #ifdef CONFIG_ARM_UNWIND enum { ARM_SEC_INIT, ARM_SEC_DEVINIT, ARM_SEC_CORE, ARM_SEC_EXIT, ARM_SEC_DEVEXIT, ARM_SEC_MAX, }; struct mod_arch_specific { struct unwind_table *unwind[ARM_SEC_MAX]; }; #endif /* * Add the ARM architecture version to the version magic string */ #define MODULE_ARCH_VERMAGIC_ARMVSN "ARMv" __stringify(__LINUX_ARM_ARCH__) " " /* Add __virt_to_phys patching state as well */ #ifdef CONFIG_ARM_PATCH_PHYS_VIRT #define MODULE_ARCH_VERMAGIC_P2V "p2v8 " #else #define MODULE_ARCH_VERMAGIC_P2V "" #endif /* Add instruction set architecture tag to distinguish ARM/Thumb kernels */ #ifdef CONFIG_THUMB2_KERNEL #define MODULE_ARCH_VERMAGIC_ARMTHUMB "thumb2 " #else #define MODULE_ARCH_VERMAGIC_ARMTHUMB "" #endif #define MODULE_ARCH_VERMAGIC \ MODULE_ARCH_VERMAGIC_ARMVSN \ MODULE_ARCH_VERMAGIC_ARMTHUMB \ MODULE_ARCH_VERMAGIC_P2V #endif /* _ASM_ARM_MODULE_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
36
37
38
39
40
41
42
43
44
45
46
47
You can’t perform that action at this time.