1 | /* $Id: SUPDrv-linux.mod.c 44528 2013-02-04 14:27:54Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxDrv - The VirtualBox Support Driver - Autogenerated Linux code.
|
---|
4 | *
|
---|
5 | * This is checked in to assist syntax checking the module.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | *
|
---|
19 | * The contents of this file may alternatively be used under the terms
|
---|
20 | * of the Common Development and Distribution License Version 1.0
|
---|
21 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
22 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
23 | * CDDL are applicable instead of those of the GPL.
|
---|
24 | *
|
---|
25 | * You may elect to license modified versions of this file under the
|
---|
26 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
27 | */
|
---|
28 |
|
---|
29 | #include "SUPDrvInternal.h" /* for KBUILD_STR */
|
---|
30 | #include "the-linux-kernel.h"
|
---|
31 | #include <linux/vermagic.h>
|
---|
32 |
|
---|
33 | MODULE_INFO(vermagic, VERMAGIC_STRING);
|
---|
34 |
|
---|
35 | #undef unix
|
---|
36 | struct module __this_module
|
---|
37 | __attribute__((section(".gnu.linkonce.this_module"))) = {
|
---|
38 | .name = __stringify(KBUILD_MODNAME),
|
---|
39 | .init = init_module,
|
---|
40 | #ifdef CONFIG_MODULE_UNLOAD
|
---|
41 | .exit = cleanup_module,
|
---|
42 | #endif
|
---|
43 | };
|
---|
44 |
|
---|
45 | static const struct modversion_info ____versions[]
|
---|
46 | __attribute_used__
|
---|
47 | __attribute__((section("__versions"))) = {
|
---|
48 | { 0, "cleanup_module" },
|
---|
49 | { 0, "init_module" },
|
---|
50 | { 0, "struct_module" },
|
---|
51 | { 0, "devfs_remove" },
|
---|
52 | { 0, "strpbrk" },
|
---|
53 | { 0, "__kmalloc" },
|
---|
54 | { 0, "mem_map" },
|
---|
55 | { 0, "vmalloc" },
|
---|
56 | { 0, "malloc_sizes" },
|
---|
57 | { 0, "vfree" },
|
---|
58 | { 0, "change_page_attr" },
|
---|
59 | { 0, "__might_sleep" },
|
---|
60 | { 0, "remap_page_range" },
|
---|
61 | { 0, "__alloc_pages" },
|
---|
62 | { 0, "printk" },
|
---|
63 | { 0, "__PAGE_KERNEL" },
|
---|
64 | { 0, "rwsem_wake" },
|
---|
65 | { 0, "copy_to_user" },
|
---|
66 | { 0, "devfs_mk_cdev" },
|
---|
67 | { 0, "preempt_schedule" },
|
---|
68 | { 0, "contig_page_data" },
|
---|
69 | { 0, "do_mmap_pgoff" },
|
---|
70 | { 0, "find_vma" },
|
---|
71 | { 0, "kmem_cache_alloc" },
|
---|
72 | { 0, "__free_pages" },
|
---|
73 | { 0, "do_munmap" },
|
---|
74 | { 0, "get_user_pages" },
|
---|
75 | { 0, "register_chrdev" },
|
---|
76 | { 0, "vsnprintf" },
|
---|
77 | { 0, "kfree" },
|
---|
78 | { 0, "memcpy" },
|
---|
79 | { 0, "unregister_chrdev" },
|
---|
80 | { 0, "put_page" },
|
---|
81 | { 0, "__up_wakeup" },
|
---|
82 | { 0, "__down_failed" },
|
---|
83 | { 0, "copy_from_user" },
|
---|
84 | { 0, "rwsem_down_read_failed" },
|
---|
85 | };
|
---|
86 |
|
---|
87 | static const char __module_depends[]
|
---|
88 | __attribute_used__
|
---|
89 | __attribute__((section(".modinfo"))) =
|
---|
90 | "depends=";
|
---|
91 |
|
---|