Home
last modified time | relevance | path

Searched refs:mod (Results 1 – 25 of 30) sorted by relevance

12

/include/linux/
A Dcodetag.h39 int (*module_load)(struct module *mod,
41 void (*module_unload)(struct module *mod,
44 void (*module_replaced)(struct module *mod, struct module *new_mod);
45 bool (*needs_section_mem)(struct module *mod, unsigned long size);
46 void *(*alloc_section_mem)(struct module *mod, unsigned long size,
48 void (*free_section_mem)(struct module *mod, bool used);
91 void codetag_free_module_sections(struct module *mod);
93 int codetag_load_module(struct module *mod);
94 void codetag_unload_module(struct module *mod);
99 codetag_needs_module_section(struct module *mod, const char *name, in codetag_needs_module_section() argument
[all …]
A Dkmod.h22 #define request_module(mod...) __request_module(true, mod) argument
23 #define request_module_nowait(mod...) __request_module(false, mod) argument
24 #define try_then_request_module(x, mod...) \ argument
25 ((x) ?: (__request_module(true, mod), (x)))
29 #define try_then_request_module(x, mod...) (x) argument
A Dmoduleloader.h23 struct module *mod);
26 unsigned int arch_mod_section_prepend(struct module *mod, unsigned int section);
52 struct module *mod);
75 struct module *mod);
109 struct module *mod);
120 void module_arch_cleanup(struct module *mod);
123 void module_arch_freeing_init(struct module *mod);
A Dmodule.h48 struct module *mod; member
311 struct module *mod; member
625 const struct module *mod, in within_module_mem_type() argument
631 size = mod->mem[type].size; in within_module_mem_type()
636 const struct module *mod) in within_module_core() argument
657 return within_module_init(addr, mod) || within_module_core(addr, mod); in within_module()
736 #define module_name(mod) \ argument
738 struct module *__mod = (mod); \
758 return mod->klp; in is_livepatch_module()
835 #define module_name(mod) "kernel" argument
[all …]
A Dlivepatch.h127 struct module *mod; member
160 struct module *mod; member
198 int klp_module_coming(struct module *mod);
199 void klp_module_going(struct module *mod);
240 static inline int klp_module_coming(struct module *mod) { return 0; } in klp_module_coming() argument
241 static inline void klp_module_going(struct module *mod) {} in klp_module_going() argument
A Dkallsyms.h52 struct module *mod; in dereference_symbol_descriptor() local
59 mod = __module_address((unsigned long)ptr); in dereference_symbol_descriptor()
61 if (mod) in dereference_symbol_descriptor()
62 ptr = dereference_module_function_descriptor(mod, ptr); in dereference_symbol_descriptor()
A Dcfi.h74 struct module *mod);
78 struct module *mod) {} in module_cfi_finalize() argument
A Donce.h13 unsigned long *flags, struct module *mod);
18 struct module *mod);
A Dnotifier.h126 #define _SRCU_NOTIFIER_HEAD(name, mod) \ argument
128 mod struct srcu_notifier_head name = \
132 #define _SRCU_NOTIFIER_HEAD(name, mod) \ argument
133 mod struct srcu_notifier_head name = \
A Dmoduleparam.h76 struct module *mod; member
312 extern void kernel_param_lock(struct module *mod);
313 extern void kernel_param_unlock(struct module *mod);
315 static inline void kernel_param_lock(struct module *mod) in kernel_param_lock() argument
318 static inline void kernel_param_unlock(struct module *mod) in kernel_param_unlock() argument
606 extern int module_param_sysfs_setup(struct module *mod,
610 extern void module_param_sysfs_remove(struct module *mod);
612 static inline int module_param_sysfs_setup(struct module *mod, in module_param_sysfs_setup() argument
619 static inline void module_param_sysfs_remove(struct module *mod) in module_param_sysfs_remove() argument
A Dftrace.h408 void ftrace_free_mem(struct module *mod, void *start, void *end);
414 static inline void ftrace_free_mem(struct module *mod, void *start, void *end) { } in ftrace_free_mem() argument
870 extern int ftrace_make_nop(struct module *mod,
912 static inline int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec) in ftrace_init_nop() argument
914 return ftrace_make_nop(mod, rec, MCOUNT_ADDR); in ftrace_init_nop()
979 extern void ftrace_module_init(struct module *mod);
980 extern void ftrace_module_enable(struct module *mod);
981 extern void ftrace_release_mod(struct module *mod);
984 static inline void ftrace_module_init(struct module *mod) { } in ftrace_module_init() argument
985 static inline void ftrace_module_enable(struct module *mod) { } in ftrace_module_enable() argument
[all …]
A Dmost.h234 struct module *mod; member
266 struct module *mod; member
A Dstatic_call.h171 struct module *mod; /* for vmlinux, mod == NULL */ member
182 extern int static_call_mod_init(struct module *mod);
A Dccp.h378 struct scatterlist *mod; member
579 struct scatterlist *mod; member
A Dtracepoint.h60 struct module *mod; member
63 bool trace_module_has_bad_taint(struct module *mod);
74 static inline bool trace_module_has_bad_taint(struct module *mod) in trace_module_has_bad_taint() argument
95 void for_each_tracepoint_in_module(struct module *mod, in for_each_tracepoint_in_module() argument
A Ddynamic_debug.h87 struct module *mod; member
106 .mod = THIS_MODULE, \
A Dmpi.h65 int mpi_powm(MPI res, MPI base, MPI exp, MPI mod);
/include/trace/events/
A Dmodule.h33 TP_PROTO(struct module *mod),
35 TP_ARGS(mod),
39 __string( name, mod->name )
43 __entry->taints = mod->taints;
52 TP_PROTO(struct module *mod),
54 TP_ARGS(mod),
57 __string( name, mod->name )
74 TP_ARGS(mod, ip),
79 __string( name, mod->name )
96 TP_ARGS(mod, ip)
[all …]
/include/linux/iio/imu/
A Dadis.h475 #define ADIS_MOD_CHAN(_type, mod, addr, si, info_sep, info_all, bits) { \ argument
478 .channel2 = IIO_MOD_ ## mod, \
493 #define ADIS_ACCEL_CHAN(mod, addr, si, info_sep, info_all, bits) \ argument
494 ADIS_MOD_CHAN(IIO_ACCEL, mod, addr, si, info_sep, info_all, bits)
496 #define ADIS_GYRO_CHAN(mod, addr, si, info_sep, info_all, bits) \ argument
497 ADIS_MOD_CHAN(IIO_ANGL_VEL, mod, addr, si, info_sep, info_all, bits)
499 #define ADIS_INCLI_CHAN(mod, addr, si, info_sep, info_all, bits) \ argument
500 ADIS_MOD_CHAN(IIO_INCLI, mod, addr, si, info_sep, info_all, bits)
502 #define ADIS_ROT_CHAN(mod, addr, si, info_sep, info_all, bits) \ argument
503 ADIS_MOD_CHAN(IIO_ROT, mod, addr, si, info_sep, info_all, bits)
/include/linux/iio/common/
A Dst_sensors.h53 #define ST_SENSORS_LSM_CHANNELS_EXT(device_type, mask, index, mod, \ argument
57 .modified = mod, \
73 #define ST_SENSORS_LSM_CHANNELS(device_type, mask, index, mod, \ argument
75 ST_SENSORS_LSM_CHANNELS_EXT(device_type, mask, index, mod, \
/include/crypto/internal/
A Decc.h238 void vli_mod_inv(u64 *result, const u64 *input, const u64 *mod,
253 const u64 *mod, unsigned int ndigits);
/include/linux/mtd/
A Dmtd.h602 u32 mod; in mtd_align_erase_req() local
607 mod = mtd_mod_by_eb(req->addr, mtd); in mtd_align_erase_req()
608 if (mod) { in mtd_align_erase_req()
609 req->addr -= mod; in mtd_align_erase_req()
610 req->len += mod; in mtd_align_erase_req()
613 mod = mtd_mod_by_eb(req->addr + req->len, mtd); in mtd_align_erase_req()
614 if (mod) in mtd_align_erase_req()
615 req->len += mtd->erasesize - mod; in mtd_align_erase_req()
/include/sound/
A Dseq_device.h68 struct module *mod);
/include/net/
A Dipv6.h220 #define _DEVINC(net, statname, mod, idev, field) \ argument
224 mod##SNMP_INC_STATS64((_idev)->stats.statname, (field));\
225 mod##SNMP_INC_STATS64((net)->mib.statname##_statistics, (field));\
229 #define _DEVINCATOMIC(net, statname, mod, idev, field) \ argument
234 mod##SNMP_INC_STATS((net)->mib.statname##_statistics, (field));\
246 #define _DEVADD(net, statname, mod, idev, field, val) \ argument
252 mod##SNMP_ADD_STATS((_idev)->stats.statname, _field, _val); \
253 mod##SNMP_ADD_STATS((net)->mib.statname##_statistics, _field, _val);\
256 #define _DEVUPD(net, statname, mod, idev, field, val) \ argument
261 mod##SNMP_UPD_PO_STATS((_idev)->stats.statname, field, _val); \
[all …]
/include/linux/usb/
A Dcomposite.h214 struct module *mod; member
573 struct module *mod; member
604 .mod = THIS_MODULE, \

Completed in 48 milliseconds

12