Re: [PATCH v6 24/36] nds32: Loadable modules
From: Greentime Hu <hidden>
Date: 2018-01-19 14:26:57
Also in:
linux-arch, linux-devicetree, linux-serial, lkml
From: Greentime Hu <hidden>
Date: 2018-01-19 14:26:57
Also in:
linux-arch, linux-devicetree, linux-serial, lkml
2018-01-18 18:41 GMT+08:00 Arnd Bergmann [off-list ref]:
On Mon, Jan 15, 2018 at 6:53 AM, Greentime Hu [off-list ref] wrote:quoted
From: Greentime Hu <greentime-MUIXKm3Oiri1Z/+hSey0Gg@public.gmane.org> This patch adds support for loadable modules.One detail: You still seem to have both the ELF_REL and ELF_RELA based functions implemented here, you should drop the unused ELF_REL version:quoted
diff --git a/arch/nds32/kernel/module.c b/arch/nds32/kernel/module.c new file mode 100644 index 0000000..714a6d6 --- /dev/null +++ b/arch/nds32/kernel/module.c@@ -0,0 +1,286 @@ +// SPDX-License-Identifier: GPL-2.0 +// Copyright (C) 2005-2017 Andes Technology Corporation + +#include <linux/module.h> +#include <linux/elf.h> +#include <linux/vmalloc.h> + +#include <asm/pgtable.h>include <linux/moduleloader.h> to catch this.quoted
+int +apply_relocate(Elf32_Shdr * sechdrs, const char *strtab, + unsigned int symindex, unsigned int relsec, + struct module *module) +{ + return 0; +}and drop this. With that change, Acked-by: Arnd Bergmann <redacted>
Hi, Arnd: Thank you. I will include moduleloader.h and drop apply_relocate(). -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html