Commit aef2ea912e0ee39fbca74fed0ab8e612ac2c3ba2
Exists in
smarc-l5.0.0_1.0.0-ga
and in
5 other branches
Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux
Pull virtio/lguest fixes from Rusty Russell: "Missing license tag and some fallout from the lguest pagetable rework" * tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux: lguest: clear cached last cpu when guest_set_pgd() called. Add missing module license tag to vring helpers.
Showing 2 changed files Side-by-side Diff
drivers/lguest/page_tables.c
drivers/vhost/vringh.c
... | ... | @@ -3,6 +3,7 @@ |
3 | 3 | * |
4 | 4 | * Since these may be in userspace, we use (inline) accessors. |
5 | 5 | */ |
6 | +#include <linux/module.h> | |
6 | 7 | #include <linux/vringh.h> |
7 | 8 | #include <linux/virtio_ring.h> |
8 | 9 | #include <linux/kernel.h> |
... | ... | @@ -1005,4 +1006,6 @@ |
1005 | 1006 | return __vringh_need_notify(vrh, getu16_kern); |
1006 | 1007 | } |
1007 | 1008 | EXPORT_SYMBOL(vringh_need_notify_kern); |
1009 | + | |
1010 | +MODULE_LICENSE("GPL"); |