1CREATE_MODULE(2) Linux Programmer's Manual CREATE_MODULE(2)
2
3
4
6 create_module - create a loadable module entry
7
9 #include <linux/module.h>
10
11 caddr_t create_module(const char *name, size_t size);
12
14 create_module() attempts to create a loadable module entry and reserve
15 the kernel memory that will be needed to hold the module. This system
16 call requires privilege.
17
19 On success, returns the kernel address at which the module will reside.
20 On error -1 is returned and errno is set appropriately.
21
23 EEXIST A module by that name already exists.
24
25 EFAULT name is outside the program's accessible address space.
26
27 EINVAL The requested size is too small even for the module header
28 information.
29
30 ENOMEM The kernel could not allocate a contiguous block of memory large
31 enough for the module.
32
33 ENOSYS create_module() is not supported in this version of the kernel.
34
35 EPERM The caller was not privileged (did not have the CAP_SYS_MODULE
36 capability).
37
39 This system call is only present on Linux up until kernel 2.4; it was
40 removed in Linux 2.6.
41
43 create_module() is Linux-specific.
44
46 delete_module(2), init_module(2), query_module(2)
47
49 This page is part of release 3.25 of the Linux man-pages project. A
50 description of the project, and information about reporting bugs, can
51 be found at http://www.kernel.org/doc/man-pages/.
52
53
54
55Linux 2007-06-03 CREATE_MODULE(2)