]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - kernel/module-internal.h
mm: /proc/pid/smaps: factor out mem stats gathering
[linux.git] / kernel / module-internal.h
index 915e123a430fbb0cb6ea9197b90ab6ec3684a191..79c9be2dbbe987a95e53be8c64d9e540db7bec4b 100644 (file)
@@ -9,4 +9,27 @@
  * 2 of the Licence, or (at your option) any later version.
  */
 
-extern int mod_verify_sig(const void *mod, unsigned long *_modlen);
+#include <linux/elf.h>
+#include <asm/module.h>
+
+struct load_info {
+       const char *name;
+       /* pointer to module in temporary copy, freed at end of load_module() */
+       struct module *mod;
+       Elf_Ehdr *hdr;
+       unsigned long len;
+       Elf_Shdr *sechdrs;
+       char *secstrings, *strtab;
+       unsigned long symoffs, stroffs;
+       struct _ddebug *debug;
+       unsigned int num_debug;
+       bool sig_ok;
+#ifdef CONFIG_KALLSYMS
+       unsigned long mod_kallsyms_init_off;
+#endif
+       struct {
+               unsigned int sym, str, mod, vers, info, pcpu;
+       } index;
+};
+
+extern int mod_verify_sig(const void *mod, struct load_info *info);