NET: sungem, use spin_trylock_irqsave
[deliverable/linux.git] / include / linux / module.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_MODULE_H
2#define _LINUX_MODULE_H
3/*
4 * Dynamic loading of modules into the kernel.
5 *
6 * Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996
7 * Rewritten again by Rusty Russell, 2002
8 */
1da177e4
LT
9#include <linux/list.h>
10#include <linux/stat.h>
11#include <linux/compiler.h>
12#include <linux/cache.h>
13#include <linux/kmod.h>
14#include <linux/elf.h>
15#include <linux/stringify.h>
16#include <linux/kobject.h>
17#include <linux/moduleparam.h>
97e1c18e 18#include <linux/tracepoint.h>
1da177e4 19
7ead8b83 20#include <asm/local.h>
1da177e4
LT
21#include <asm/module.h>
22
7ead8b83
LZ
23#include <trace/events/module.h>
24
1da177e4
LT
25/* Not Yet Implemented */
26#define MODULE_SUPPORTED_DEVICE(name)
27
f606ddf4 28/* some toolchains uses a `_' prefix for all user symbols */
1da177e4
LT
29#ifndef MODULE_SYMBOL_PREFIX
30#define MODULE_SYMBOL_PREFIX ""
31#endif
32
730b69d2 33#define MODULE_NAME_LEN MAX_PARAM_PREFIX_LEN
1da177e4
LT
34
35struct kernel_symbol
36{
37 unsigned long value;
38 const char *name;
39};
40
41struct modversion_info
42{
43 unsigned long crc;
44 char name[MODULE_NAME_LEN];
45};
46
47struct module;
48
49struct module_attribute {
50 struct attribute attr;
51 ssize_t (*show)(struct module_attribute *, struct module *, char *);
52 ssize_t (*store)(struct module_attribute *, struct module *,
53 const char *, size_t count);
c988d2b2
MD
54 void (*setup)(struct module *, const char *);
55 int (*test)(struct module *);
56 void (*free)(struct module *);
1da177e4
LT
57};
58
59struct module_kobject
60{
61 struct kobject kobj;
62 struct module *mod;
f30c53a8 63 struct kobject *drivers_dir;
9b473de8 64 struct module_param_attrs *mp;
1da177e4
LT
65};
66
67/* These are either module local, or the kernel's dummy ones. */
68extern int init_module(void);
69extern void cleanup_module(void);
70
71/* Archs provide a method of finding the correct exception table. */
72struct exception_table_entry;
73
74const struct exception_table_entry *
75search_extable(const struct exception_table_entry *first,
76 const struct exception_table_entry *last,
77 unsigned long value);
78void sort_extable(struct exception_table_entry *start,
79 struct exception_table_entry *finish);
80void sort_main_extable(void);
ad6561df 81void trim_init_extable(struct module *m);
1da177e4 82
1da177e4
LT
83#ifdef MODULE
84#define MODULE_GENERIC_TABLE(gtype,name) \
85extern const struct gtype##_id __mod_##gtype##_table \
86 __attribute__ ((unused, alias(__stringify(name))))
87
88extern struct module __this_module;
89#define THIS_MODULE (&__this_module)
90#else /* !MODULE */
91#define MODULE_GENERIC_TABLE(gtype,name)
92#define THIS_MODULE ((struct module *)0)
93#endif
94
95/* Generic info of form tag = "info" */
96#define MODULE_INFO(tag, info) __MODULE_INFO(tag, tag, info)
97
98/* For userspace: you can also call me... */
99#define MODULE_ALIAS(_alias) MODULE_INFO(alias, _alias)
100
101/*
102 * The following license idents are currently accepted as indicating free
103 * software modules
104 *
105 * "GPL" [GNU Public License v2 or later]
106 * "GPL v2" [GNU Public License v2]
107 * "GPL and additional rights" [GNU Public License v2 rights and more]
108 * "Dual BSD/GPL" [GNU Public License v2
109 * or BSD license choice]
8d27e908
XVP
110 * "Dual MIT/GPL" [GNU Public License v2
111 * or MIT license choice]
1da177e4
LT
112 * "Dual MPL/GPL" [GNU Public License v2
113 * or Mozilla license choice]
114 *
115 * The following other idents are available
116 *
117 * "Proprietary" [Non free products]
118 *
119 * There are dual licensed components, but when running with Linux it is the
120 * GPL that is relevant so this is a non issue. Similarly LGPL linked with GPL
121 * is a GPL combined work.
122 *
123 * This exists for several reasons
124 * 1. So modinfo can show license info for users wanting to vet their setup
125 * is free
126 * 2. So the community can ignore bug reports including proprietary modules
127 * 3. So vendors can do likewise based on their own policies
128 */
129#define MODULE_LICENSE(_license) MODULE_INFO(license, _license)
130
1d7015ca
JB
131/*
132 * Author(s), use "Name <email>" or just "Name", for multiple
133 * authors use multiple MODULE_AUTHOR() statements/lines.
134 */
1da177e4
LT
135#define MODULE_AUTHOR(_author) MODULE_INFO(author, _author)
136
137/* What your module does. */
138#define MODULE_DESCRIPTION(_description) MODULE_INFO(description, _description)
139
140/* One for each parameter, describing how to use it. Some files do
141 multiple of these per line, so can't just use MODULE_INFO. */
142#define MODULE_PARM_DESC(_parm, desc) \
143 __MODULE_INFO(parm, _parm, #_parm ":" desc)
144
145#define MODULE_DEVICE_TABLE(type,name) \
146 MODULE_GENERIC_TABLE(type##_device,name)
147
148/* Version of form [<epoch>:]<version>[-<extra-version>].
149 Or for CVS/RCS ID version, everything but the number is stripped.
150 <epoch>: A (small) unsigned integer which allows you to start versions
151 anew. If not mentioned, it's zero. eg. "2:1.0" is after
152 "1:2.0".
153 <version>: The <version> may contain only alphanumerics and the
154 character `.'. Ordered by numeric sort for numeric parts,
155 ascii sort for ascii parts (as per RPM or DEB algorithm).
156 <extraversion>: Like <version>, but inserted for local
157 customizations, eg "rh3" or "rusty1".
158
159 Using this automatically adds a checksum of the .c files and the
160 local headers in "srcversion".
161*/
162#define MODULE_VERSION(_version) MODULE_INFO(version, _version)
163
187afbed
JM
164/* Optional firmware file (or files) needed by the module
165 * format is simply firmware file name. Multiple firmware
166 * files require multiple MODULE_FIRMWARE() specifiers */
167#define MODULE_FIRMWARE(_firmware) MODULE_INFO(firmware, _firmware)
168
1da177e4
LT
169/* Given an address, look for it in the exception tables */
170const struct exception_table_entry *search_exception_tables(unsigned long add);
171
172struct notifier_block;
173
174#ifdef CONFIG_MODULES
175
176/* Get/put a kernel symbol (calls must be symmetric) */
177void *__symbol_get(const char *symbol);
178void *__symbol_get_gpl(const char *symbol);
179#define symbol_get(x) ((typeof(&x))(__symbol_get(MODULE_SYMBOL_PREFIX #x)))
180
181#ifndef __GENKSYMS__
182#ifdef CONFIG_MODVERSIONS
183/* Mark the CRC weak since genksyms apparently decides not to
184 * generate a checksums for some symbols */
185#define __CRC_SYMBOL(sym, sec) \
186 extern void *__crc_##sym __attribute__((weak)); \
187 static const unsigned long __kcrctab_##sym \
3ff6eecc 188 __used \
1da177e4
LT
189 __attribute__((section("__kcrctab" sec), unused)) \
190 = (unsigned long) &__crc_##sym;
191#else
192#define __CRC_SYMBOL(sym, sec)
193#endif
194
195/* For every exported symbol, place a struct in the __ksymtab section */
196#define __EXPORT_SYMBOL(sym, sec) \
a1a8feed 197 extern typeof(sym) sym; \
1da177e4
LT
198 __CRC_SYMBOL(sym, sec) \
199 static const char __kstrtab_##sym[] \
ea01e798 200 __attribute__((section("__ksymtab_strings"), aligned(1))) \
1da177e4
LT
201 = MODULE_SYMBOL_PREFIX #sym; \
202 static const struct kernel_symbol __ksymtab_##sym \
3ff6eecc 203 __used \
1da177e4
LT
204 __attribute__((section("__ksymtab" sec), unused)) \
205 = { (unsigned long)&sym, __kstrtab_##sym }
206
207#define EXPORT_SYMBOL(sym) \
208 __EXPORT_SYMBOL(sym, "")
209
210#define EXPORT_SYMBOL_GPL(sym) \
211 __EXPORT_SYMBOL(sym, "_gpl")
212
9f28bb7e
GKH
213#define EXPORT_SYMBOL_GPL_FUTURE(sym) \
214 __EXPORT_SYMBOL(sym, "_gpl_future")
215
f71d20e9
AV
216
217#ifdef CONFIG_UNUSED_SYMBOLS
218#define EXPORT_UNUSED_SYMBOL(sym) __EXPORT_SYMBOL(sym, "_unused")
219#define EXPORT_UNUSED_SYMBOL_GPL(sym) __EXPORT_SYMBOL(sym, "_unused_gpl")
220#else
221#define EXPORT_UNUSED_SYMBOL(sym)
222#define EXPORT_UNUSED_SYMBOL_GPL(sym)
223#endif
224
1da177e4
LT
225#endif
226
1da177e4
LT
227enum module_state
228{
229 MODULE_STATE_LIVE,
230 MODULE_STATE_COMING,
231 MODULE_STATE_GOING,
232};
233
1da177e4
LT
234struct module
235{
236 enum module_state state;
237
238 /* Member of list of modules */
239 struct list_head list;
240
241 /* Unique handle for this module */
242 char name[MODULE_NAME_LEN];
243
244 /* Sysfs stuff. */
245 struct module_kobject mkobj;
03e88ae1 246 struct module_attribute *modinfo_attrs;
c988d2b2
MD
247 const char *version;
248 const char *srcversion;
270a6c4c 249 struct kobject *holders_dir;
1da177e4
LT
250
251 /* Exported symbols */
252 const struct kernel_symbol *syms;
1da177e4 253 const unsigned long *crcs;
af540689 254 unsigned int num_syms;
1da177e4 255
e180a6b7
RR
256 /* Kernel parameters. */
257 struct kernel_param *kp;
258 unsigned int num_kp;
259
1da177e4 260 /* GPL-only exported symbols. */
1da177e4 261 unsigned int num_gpl_syms;
af540689 262 const struct kernel_symbol *gpl_syms;
1da177e4
LT
263 const unsigned long *gpl_crcs;
264
f7f5b675 265#ifdef CONFIG_UNUSED_SYMBOLS
f71d20e9
AV
266 /* unused exported symbols. */
267 const struct kernel_symbol *unused_syms;
f71d20e9 268 const unsigned long *unused_crcs;
af540689
RK
269 unsigned int num_unused_syms;
270
f71d20e9 271 /* GPL-only, unused exported symbols. */
f71d20e9 272 unsigned int num_unused_gpl_syms;
af540689 273 const struct kernel_symbol *unused_gpl_syms;
f71d20e9 274 const unsigned long *unused_gpl_crcs;
f7f5b675 275#endif
f71d20e9 276
9f28bb7e
GKH
277 /* symbols that will be GPL-only in the near future. */
278 const struct kernel_symbol *gpl_future_syms;
9f28bb7e 279 const unsigned long *gpl_future_crcs;
af540689 280 unsigned int num_gpl_future_syms;
9f28bb7e 281
1da177e4
LT
282 /* Exception table */
283 unsigned int num_exentries;
5e458cc0 284 struct exception_table_entry *extable;
1da177e4
LT
285
286 /* Startup function. */
287 int (*init)(void);
288
289 /* If this is non-NULL, vfree after init() returns */
290 void *module_init;
291
292 /* Here is the actual code + data, vfree'd on unload. */
293 void *module_core;
294
295 /* Here are the sizes of the init and core sections */
2f0f2a33 296 unsigned int init_size, core_size;
1da177e4
LT
297
298 /* The size of the executable code in each section. */
2f0f2a33 299 unsigned int init_text_size, core_text_size;
1da177e4
LT
300
301 /* Arch-specific module values */
302 struct mod_arch_specific arch;
303
2bc2d61a
RD
304 unsigned int taints; /* same bits as kernel:tainted */
305
7664c5a1
JF
306#ifdef CONFIG_GENERIC_BUG
307 /* Support for BUG */
af540689 308 unsigned num_bugs;
7664c5a1
JF
309 struct list_head bug_list;
310 struct bug_entry *bug_table;
1da177e4
LT
311#endif
312
313#ifdef CONFIG_KALLSYMS
4a496226
JB
314 /*
315 * We keep the symbol and string tables for kallsyms.
316 * The core_* fields below are temporary, loader-only (they
317 * could really be discarded after module init).
318 */
319 Elf_Sym *symtab, *core_symtab;
320 unsigned int num_symtab, core_num_syms;
554bdfe5 321 char *strtab, *core_strtab;
1da177e4
LT
322
323 /* Section attributes */
324 struct module_sect_attrs *sect_attrs;
6d760133
RM
325
326 /* Notes attributes */
327 struct module_notes_attrs *notes_attrs;
1da177e4
LT
328#endif
329
330 /* Per-cpu data. */
331 void *percpu;
332
333 /* The command line arguments (may be mangled). People like
334 keeping pointers to this stuff */
335 char *args;
97e1c18e
MD
336#ifdef CONFIG_TRACEPOINTS
337 struct tracepoint *tracepoints;
338 unsigned int num_tracepoints;
339#endif
af540689 340
769b0441 341#ifdef CONFIG_TRACING
1ba28e02
LJ
342 const char **trace_bprintk_fmt_start;
343 unsigned int num_trace_bprintk_fmt;
344#endif
6d723736
SR
345#ifdef CONFIG_EVENT_TRACING
346 struct ftrace_event_call *trace_events;
347 unsigned int num_trace_events;
348#endif
93eb677d
SR
349#ifdef CONFIG_FTRACE_MCOUNT_RECORD
350 unsigned long *ftrace_callsites;
351 unsigned int num_ftrace_callsites;
352#endif
1ba28e02 353
af540689
RK
354#ifdef CONFIG_MODULE_UNLOAD
355 /* What modules depend on me? */
356 struct list_head modules_which_use_me;
357
358 /* Who is waiting for us to be unloaded */
359 struct task_struct *waiter;
360
361 /* Destruction function. */
362 void (*exit)(void);
363
720eba31
ED
364#ifdef CONFIG_SMP
365 char *refptr;
366#else
367 local_t ref;
368#endif
af540689 369#endif
b99b87f7
PO
370
371#ifdef CONFIG_CONSTRUCTORS
372 /* Constructor functions. */
373 ctor_fn_t *ctors;
374 unsigned int num_ctors;
375#endif
1da177e4 376};
e61a1c1c
RZ
377#ifndef MODULE_ARCH_INIT
378#define MODULE_ARCH_INIT {}
379#endif
1da177e4 380
c6b37801
TA
381extern struct mutex module_mutex;
382
1da177e4
LT
383/* FIXME: It'd be nice to isolate modules during init, too, so they
384 aren't used before they (may) fail. But presently too much code
385 (IDE & SCSI) require entry into the module during init.*/
386static inline int module_is_live(struct module *mod)
387{
388 return mod->state != MODULE_STATE_GOING;
389}
390
1da177e4 391struct module *__module_text_address(unsigned long addr);
e610499e
RR
392struct module *__module_address(unsigned long addr);
393bool is_module_address(unsigned long addr);
394bool is_module_text_address(unsigned long addr);
1da177e4 395
a06f6211
MH
396static inline int within_module_core(unsigned long addr, struct module *mod)
397{
398 return (unsigned long)mod->module_core <= addr &&
399 addr < (unsigned long)mod->module_core + mod->core_size;
400}
401
402static inline int within_module_init(unsigned long addr, struct module *mod)
403{
404 return (unsigned long)mod->module_init <= addr &&
405 addr < (unsigned long)mod->module_init + mod->init_size;
406}
407
c6b37801
TA
408/* Search for module by name: must hold module_mutex. */
409struct module *find_module(const char *name);
410
411struct symsearch {
412 const struct kernel_symbol *start, *stop;
413 const unsigned long *crcs;
414 enum {
415 NOT_GPL_ONLY,
416 GPL_ONLY,
417 WILL_BE_GPL_ONLY,
418 } licence;
419 bool unused;
420};
421
422/* Search for an exported symbol by name. */
423const struct kernel_symbol *find_symbol(const char *name,
424 struct module **owner,
425 const unsigned long **crc,
426 bool gplok,
427 bool warn);
428
429/* Walk the exported symbol table */
430bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
431 unsigned int symnum, void *data), void *data);
432
ea07890a 433/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
1da177e4 434 symnum out of range. */
ea07890a
AD
435int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
436 char *name, char *module_name, int *exported);
1da177e4
LT
437
438/* Look for this name: can be of form module:name. */
439unsigned long module_kallsyms_lookup_name(const char *name);
440
75a66614
AK
441int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
442 struct module *, unsigned long),
443 void *data);
444
1da177e4
LT
445extern void __module_put_and_exit(struct module *mod, long code)
446 __attribute__((noreturn));
447#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code);
448
449#ifdef CONFIG_MODULE_UNLOAD
450unsigned int module_refcount(struct module *mod);
451void __symbol_put(const char *symbol);
452#define symbol_put(x) __symbol_put(MODULE_SYMBOL_PREFIX #x)
453void symbol_put_addr(void *addr);
454
720eba31
ED
455static inline local_t *__module_ref_addr(struct module *mod, int cpu)
456{
457#ifdef CONFIG_SMP
458 return (local_t *) (mod->refptr + per_cpu_offset(cpu));
459#else
460 return &mod->ref;
461#endif
462}
463
1da177e4
LT
464/* Sometimes we know we already have a refcount, and it's easier not
465 to handle the error case (which only happens with rmmod --wait). */
466static inline void __module_get(struct module *module)
467{
468 if (module) {
7ead8b83
LZ
469 unsigned int cpu = get_cpu();
470 local_inc(__module_ref_addr(module, cpu));
471 trace_module_get(module, _THIS_IP_,
472 local_read(__module_ref_addr(module, cpu)));
1da177e4
LT
473 put_cpu();
474 }
475}
476
477static inline int try_module_get(struct module *module)
478{
479 int ret = 1;
480
481 if (module) {
482 unsigned int cpu = get_cpu();
7ead8b83 483 if (likely(module_is_live(module))) {
720eba31 484 local_inc(__module_ref_addr(module, cpu));
7ead8b83
LZ
485 trace_module_get(module, _THIS_IP_,
486 local_read(__module_ref_addr(module, cpu)));
487 }
1da177e4
LT
488 else
489 ret = 0;
490 put_cpu();
491 }
492 return ret;
493}
494
f6a57033 495extern void module_put(struct module *module);
1da177e4
LT
496
497#else /*!CONFIG_MODULE_UNLOAD*/
498static inline int try_module_get(struct module *module)
499{
500 return !module || module_is_live(module);
501}
502static inline void module_put(struct module *module)
503{
504}
505static inline void __module_get(struct module *module)
506{
507}
508#define symbol_put(x) do { } while(0)
509#define symbol_put_addr(p) do { } while(0)
510
511#endif /* CONFIG_MODULE_UNLOAD */
c6b37801 512int use_module(struct module *a, struct module *b);
1da177e4
LT
513
514/* This is a #define so the string doesn't get put in every .o file */
515#define module_name(mod) \
516({ \
517 struct module *__mod = (mod); \
518 __mod ? __mod->name : "kernel"; \
519})
520
6dd06c9f
RR
521/* For kallsyms to ask for address resolution. namebuf should be at
522 * least KSYM_NAME_LEN long: a pointer to namebuf is returned if
523 * found, otherwise NULL. */
92dfc9dc 524const char *module_address_lookup(unsigned long addr,
6dd06c9f
RR
525 unsigned long *symbolsize,
526 unsigned long *offset,
527 char **modname,
528 char *namebuf);
9d65cb4a 529int lookup_module_symbol_name(unsigned long addr, char *symname);
a5c43dae 530int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
1da177e4
LT
531
532/* For extable.c to search modules' exception tables. */
533const struct exception_table_entry *search_module_extables(unsigned long addr);
534
535int register_module_notifier(struct notifier_block * nb);
536int unregister_module_notifier(struct notifier_block * nb);
537
538extern void print_modules(void);
539
97e1c18e
MD
540extern void module_update_tracepoints(void);
541extern int module_get_iter_tracepoints(struct tracepoint_iter *iter);
542
1da177e4
LT
543#else /* !CONFIG_MODULES... */
544#define EXPORT_SYMBOL(sym)
545#define EXPORT_SYMBOL_GPL(sym)
9f28bb7e 546#define EXPORT_SYMBOL_GPL_FUTURE(sym)
f71d20e9
AV
547#define EXPORT_UNUSED_SYMBOL(sym)
548#define EXPORT_UNUSED_SYMBOL_GPL(sym)
1da177e4
LT
549
550/* Given an address, look for it in the exception tables. */
551static inline const struct exception_table_entry *
552search_module_extables(unsigned long addr)
553{
554 return NULL;
555}
556
e610499e
RR
557static inline struct module *__module_address(unsigned long addr)
558{
559 return NULL;
560}
561
1da177e4
LT
562static inline struct module *__module_text_address(unsigned long addr)
563{
564 return NULL;
565}
566
e610499e
RR
567static inline bool is_module_address(unsigned long addr)
568{
569 return false;
570}
571
572static inline bool is_module_text_address(unsigned long addr)
4d435f9d 573{
e610499e 574 return false;
4d435f9d
IM
575}
576
1da177e4
LT
577/* Get/put a kernel symbol (calls should be symmetric) */
578#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
579#define symbol_put(x) do { } while(0)
580#define symbol_put_addr(x) do { } while(0)
581
582static inline void __module_get(struct module *module)
583{
584}
585
586static inline int try_module_get(struct module *module)
587{
588 return 1;
589}
590
591static inline void module_put(struct module *module)
592{
593}
594
595#define module_name(mod) "kernel"
596
1da177e4 597/* For kallsyms to ask for address resolution. NULL means not found. */
92dfc9dc 598static inline const char *module_address_lookup(unsigned long addr,
6dd06c9f
RR
599 unsigned long *symbolsize,
600 unsigned long *offset,
601 char **modname,
602 char *namebuf)
1da177e4
LT
603{
604 return NULL;
605}
606
9d65cb4a
AD
607static inline int lookup_module_symbol_name(unsigned long addr, char *symname)
608{
609 return -ERANGE;
610}
611
a5c43dae
AD
612static inline int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
613{
614 return -ERANGE;
615}
616
ea07890a
AD
617static inline int module_get_kallsym(unsigned int symnum, unsigned long *value,
618 char *type, char *name,
619 char *module_name, int *exported)
1da177e4 620{
ea07890a 621 return -ERANGE;
1da177e4
LT
622}
623
624static inline unsigned long module_kallsyms_lookup_name(const char *name)
625{
626 return 0;
627}
628
75a66614
AK
629static inline int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
630 struct module *,
631 unsigned long),
632 void *data)
633{
634 return 0;
635}
636
1da177e4
LT
637static inline int register_module_notifier(struct notifier_block * nb)
638{
639 /* no events will happen anyway, so this can always succeed */
640 return 0;
641}
642
643static inline int unregister_module_notifier(struct notifier_block * nb)
644{
645 return 0;
646}
647
648#define module_put_and_exit(code) do_exit(code)
649
650static inline void print_modules(void)
651{
652}
653
97e1c18e
MD
654static inline void module_update_tracepoints(void)
655{
656}
657
658static inline int module_get_iter_tracepoints(struct tracepoint_iter *iter)
659{
660 return 0;
661}
662
ef665c1a
RD
663#endif /* CONFIG_MODULES */
664
1da177e4 665struct device_driver;
ef665c1a 666#ifdef CONFIG_SYSFS
1da177e4
LT
667struct module;
668
7405c1e1
GKH
669extern struct kset *module_kset;
670extern struct kobj_type module_ktype;
671extern int module_sysfs_initialized;
ef665c1a
RD
672
673int mod_sysfs_init(struct module *mod);
674int mod_sysfs_setup(struct module *mod,
675 struct kernel_param *kparam,
676 unsigned int num_params);
677int module_add_modinfo_attrs(struct module *mod);
678void module_remove_modinfo_attrs(struct module *mod);
679
680#else /* !CONFIG_SYSFS */
681
682static inline int mod_sysfs_init(struct module *mod)
1da177e4 683{
ef665c1a 684 return 0;
1da177e4
LT
685}
686
ef665c1a
RD
687static inline int mod_sysfs_setup(struct module *mod,
688 struct kernel_param *kparam,
689 unsigned int num_params)
1da177e4 690{
ef665c1a 691 return 0;
1da177e4
LT
692}
693
ef665c1a
RD
694static inline int module_add_modinfo_attrs(struct module *mod)
695{
696 return 0;
697}
698
699static inline void module_remove_modinfo_attrs(struct module *mod)
700{ }
701
702#endif /* CONFIG_SYSFS */
703
1da177e4
LT
704#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)
705
706/* BELOW HERE ALL THESE ARE OBSOLETE AND WILL VANISH */
707
1da177e4
LT
708#define __MODULE_STRING(x) __stringify(x)
709
0d9c25dd
AM
710
711#ifdef CONFIG_GENERIC_BUG
712int module_bug_finalize(const Elf_Ehdr *, const Elf_Shdr *,
713 struct module *);
714void module_bug_cleanup(struct module *);
715
716#else /* !CONFIG_GENERIC_BUG */
717
718static inline int module_bug_finalize(const Elf_Ehdr *hdr,
719 const Elf_Shdr *sechdrs,
720 struct module *mod)
721{
722 return 0;
723}
724static inline void module_bug_cleanup(struct module *mod) {}
725#endif /* CONFIG_GENERIC_BUG */
726
1da177e4 727#endif /* _LINUX_MODULE_H */
This page took 0.922768 seconds and 5 git commands to generate.