Use a spinlock to protect the vdma data structures.
[linux-2.6/linux-mips.git] / scripts / modpost.h
blob58610817978099d4a6d3eb5c701804eb40510b24
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdarg.h>
4 #include <string.h>
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <sys/mman.h>
8 #include <fcntl.h>
9 #include <unistd.h>
10 #include <elf.h>
12 #include "elfconfig.h"
14 #if KERNEL_ELFCLASS == ELFCLASS32
16 #define Elf_Ehdr Elf32_Ehdr
17 #define Elf_Shdr Elf32_Shdr
18 #define Elf_Sym Elf32_Sym
19 #define ELF_ST_BIND ELF32_ST_BIND
20 #define ELF_ST_TYPE ELF32_ST_TYPE
22 #else
24 #define Elf_Ehdr Elf64_Ehdr
25 #define Elf_Shdr Elf64_Shdr
26 #define Elf_Sym Elf64_Sym
27 #define ELF_ST_BIND ELF64_ST_BIND
28 #define ELF_ST_TYPE ELF64_ST_TYPE
30 #endif
32 #if KERNEL_ELFDATA != HOST_ELFDATA
34 static void __endian(const void *src, void *dest, unsigned int size)
36 unsigned int i;
37 for (i = 0; i < size; i++)
38 ((unsigned char*)dest)[i] = ((unsigned char*)src)[size - i-1];
43 #define TO_NATIVE(x) \
44 ({ \
45 typeof(x) __x; \
46 __endian(&(x), &(__x), sizeof(__x)); \
47 __x; \
50 #else /* endianness matches */
52 #define TO_NATIVE(x) (x)
54 #endif
56 struct buffer {
57 char *p;
58 int pos;
59 int size;
62 void __attribute__((format(printf, 2, 3)))
63 buf_printf(struct buffer *buf, const char *fmt, ...);
65 void
66 buf_write(struct buffer *buf, const char *s, int len);
68 struct module {
69 struct module *next;
70 const char *name;
71 struct symbol *unres;
72 int seen;
73 struct buffer dev_table_buf;
76 struct elf_info {
77 unsigned long size;
78 Elf_Ehdr *hdr;
79 Elf_Shdr *sechdrs;
80 Elf_Sym *symtab_start;
81 Elf_Sym *symtab_stop;
82 const char *strtab;
85 void handle_moddevtable(struct module *mod, struct elf_info *info,
86 Elf_Sym *sym, const char *symname);
88 void add_moddevtable(struct buffer *buf, struct module *mod);