Skip to content

Commit

Permalink
ARM: 9077/1: PLT: Move struct plt_entries definition to header
Browse files Browse the repository at this point in the history
commit 4e27170 upstream upstream

No functional change, later it will be re-used in several files.

Signed-off-by: Alexander Sverdlin <alexander.sverdlin@nokia.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
asverdlin authored and gregkh committed Sep 26, 2021
1 parent eb46d7c commit ce90c67
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
9 changes: 9 additions & 0 deletions arch/arm/include/asm/module.h
Expand Up @@ -19,6 +19,15 @@ enum {
};
#endif

#define PLT_ENT_STRIDE L1_CACHE_BYTES
#define PLT_ENT_COUNT (PLT_ENT_STRIDE / sizeof(u32))
#define PLT_ENT_SIZE (sizeof(struct plt_entries) / PLT_ENT_COUNT)

struct plt_entries {
u32 ldr[PLT_ENT_COUNT];
u32 lit[PLT_ENT_COUNT];
};

struct mod_plt_sec {
struct elf32_shdr *plt;
int plt_count;
Expand Down
9 changes: 0 additions & 9 deletions arch/arm/kernel/module-plts.c
Expand Up @@ -12,10 +12,6 @@
#include <asm/cache.h>
#include <asm/opcodes.h>

#define PLT_ENT_STRIDE L1_CACHE_BYTES
#define PLT_ENT_COUNT (PLT_ENT_STRIDE / sizeof(u32))
#define PLT_ENT_SIZE (sizeof(struct plt_entries) / PLT_ENT_COUNT)

#ifdef CONFIG_THUMB2_KERNEL
#define PLT_ENT_LDR __opcode_to_mem_thumb32(0xf8dff000 | \
(PLT_ENT_STRIDE - 4))
Expand All @@ -24,11 +20,6 @@
(PLT_ENT_STRIDE - 8))
#endif

struct plt_entries {
u32 ldr[PLT_ENT_COUNT];
u32 lit[PLT_ENT_COUNT];
};

static bool in_init(const struct module *mod, unsigned long loc)
{
return loc - (u32)mod->init_layout.base < mod->init_layout.size;
Expand Down

0 comments on commit ce90c67

Please sign in to comment.