aboutsummaryrefslogtreecommitdiff
path: root/kernel/module.c
AgeCommit message (Expand)AuthorFilesLines
2019-09-28Merge branch 'next-lockdown' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-7/+30
2019-09-27Merge branch 'next-integrity' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-0/+1
2019-09-11module: remove unneeded casts in cmp_name()Gravatar Masahiro Yamada 1-5/+2
2019-09-11module: Fix link failure due to invalid relocation on namespace offsetGravatar Will Deacon 1-0/+2
2019-09-10module: add config option MODULE_ALLOW_MISSING_NAMESPACE_IMPORTSGravatar Matthias Maennich 1-2/+9
2019-09-10module: add support for symbol namespaces.Gravatar Matthias Maennich 1-0/+43
2019-09-10module: support reading multiple values per modinfo tagGravatar Matthias Maennich 1-2/+15
2019-08-21modules: page-align module section allocations only for arches supporting str...Gravatar He Zhe 1-1/+6
2019-08-19lockdown: Enforce module signatures if the kernel is locked downGravatar David Howells 1-7/+30
2019-08-05MODSIGN: Export module signature definitionsGravatar Thiago Jung Bauermann 1-0/+1
2019-07-30modules: always page-align module section allocationsGravatar Jessica Yu 1-6/+1
2019-07-18Merge tag 'modules-for-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-19/+41
2019-06-28Merge branch 'for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/pau...Gravatar Ingo Molnar 1-0/+5
2019-06-26modules: fix compile error if don't have strict module rwxGravatar Yang Yingliang 1-4/+9
2019-06-24module: allow arch overrides for .exit section namesGravatar Matthias Schiffer 1-1/+6
2019-06-24modules: fix BUG when load module with rodata=nGravatar Yang Yingliang 1-4/+7
2019-06-14kernel/module: Fix mem leak in module_add_modinfo_attrsGravatar YueHaibing 1-5/+17
2019-06-07kernel: module: Use struct_size() helperGravatar Gustavo A. R. Silva 1-2/+1
2019-06-05kernel/module.c: Only return -EEXIST for modules that have finished loadingGravatar Prarit Bhargava 1-4/+2
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156Gravatar Thomas Gleixner 1-13/+1
2019-05-28srcu: Allocate per-CPU data for DEFINE_SRCU() in modulesGravatar Paul E. McKenney 1-0/+5
2019-05-14Merge tag 'modules-for-v5.2' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-7/+14
2019-05-09Merge branch 'next-integrity' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-0/+5
2019-04-30modules: Use vmalloc special flagGravatar Rick Edgecombe 1-38/+39
2019-04-30x86/modules: Avoid breaking W^X while loading modulesGravatar Nadav Amit 1-0/+5
2019-03-28kallsyms: store type information in its own arrayGravatar Eugene Loh 1-7/+14
2019-03-27x86/ima: require signed kernel modulesGravatar Mimi Zohar 1-0/+5
2019-03-07dynamic_debug: add static inline stub for ddebug_add_moduleGravatar Rasmus Villemoes 1-2/+0
2019-03-07dynamic_debug: move pr_err from module.c to ddebug_add_moduleGravatar Rasmus Villemoes 1-3/+1
2019-01-06jump_label: move 'asm goto' support test to KconfigGravatar Masahiro Yamada 1-1/+1
2018-12-28Merge tag 'driver-core-4.21-rc1' of git://git.kernel.org/pub/scm/linux/kernel...Gravatar Linus Torvalds 1-2/+4
2018-12-27Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-nextGravatar Linus Torvalds 1-0/+5
2018-12-27Merge tag 'modules-for-v4.21' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-51/+72
2018-12-18bpf: support raw tracepoints in modulesGravatar Matt Mullins 1-0/+5
2018-12-14ARM: module: Fix function kallsyms on Thumb-2Gravatar Vincent Whitchurch 1-16/+27
2018-12-14module: Overwrite st_size instead of st_infoGravatar Vincent Whitchurch 1-2/+2
2018-12-06kobject: return error code if writing /sys/.../uevent failsGravatar Peter Rajnoha 1-2/+4
2018-11-29module: make it clearer when we're handling kallsyms symbols vs exported symbolsGravatar Jessica Yu 1-34/+44
2018-11-27modules: Replace synchronize_sched() and call_rcu_sched()Gravatar Paul E. McKenney 1-7/+7
2018-09-27jump_table: Move entries into ro_after_init regionGravatar Ard Biesheuvel 1-0/+9
2018-08-22module: use relative references for __ksymtab entriesGravatar Ard Biesheuvel 1-6/+26
2018-08-17Merge tag 'modules-for-v4.19' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-77/+66
2018-08-02kernel/module: Use kmemdup to replace kmalloc+memcpyGravatar zhong jiang 1-4/+2
2018-07-16module: replace the existing LSM hook in init_moduleGravatar Mimi Zohar 1-1/+1
2018-07-02modsign: log module name in the event of an errorGravatar Jessica Yu 1-21/+1
2018-06-25module: replace VMLINUX_SYMBOL_STR() with __stringify() or string literalGravatar Masahiro Yamada 1-4/+2
2018-06-25module: print sensible error codeGravatar Jason A. Donenfeld 1-2/+2
2018-06-22module: setup load info before module_sig_check()Gravatar Jessica Yu 1-34/+43
2018-06-22module: make it clear when we're handling the module copy in info->hdrGravatar Jessica Yu 1-21/+21
2018-06-18module: exclude SHN_UNDEF symbols from kallsyms apiGravatar Jessica Yu 1-1/+5