/* * This module emits "Hello, world" on printk when loaded. * * It is designed to be used for basic evaluation of the module loading * subsystem (for example when validating module signing/verification). It * lacks any extra dependencies, and will not normally be loaded by the * system unless explicitly requested by name. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include #include #include static int __init test_module_init(void) { pr_warn("Hello, world\n"); return 0; } module_init(test_module_init); static void __exit test_module_exit(void) { pr_warn("Goodbye\n"); } module_exit(test_module_exit); MODULE_AUTHOR("Kees Cook "); MODULE_LICENSE("GPL"); >index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
or
AgeCommit message (Expand)AuthorFilesLines
Jérôme Glisse <jglisse@redhat.com>2016-04-19 09:07:50 -0400
committerAlex Deucher <alexander.deucher@amd.com>2016-04-21 20:03:46 -0400
commitb5dcec693f87cb8475f2291c0075b2422addd3d6 (patch)
tree25fbbd4667f947c03abb66632dc961d06523e54b
parent83c5cda2ccf40a7a7e4bb674321509b346e23d5a (diff)
drm/radeon: forbid mapping of userptr bo through radeon device file
Allowing userptr bo which are basicly a list of page from some vma (so either anonymous page or file backed page) would lead to serious corruption of kernel structures and counters (because we overwrite the page->mapping field when mapping buffer). This will already block if the buffer was populated before anyone does try to mmap it because then TTM_PAGE_FLAG_SG would be set in in the ttm_tt flags. But that flag is check before ttm_tt_populate in the ttm vm fault handler. So to be safe just add a check to verify_access() callback. Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Jérôme Glisse <jglisse@redhat.com> Cc: <stable@vger.kernel.org> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>