VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h@ 136

Last change on this file since 136 was 136, checked in by vboxsync, 18 years ago

Fixed the-linux-kernel.h for kernels 2.4.28 to 2.4.34

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.9 KB
Line 
1/* $Id: the-linux-kernel.h 136 2007-01-18 14:42:26Z vboxsync $ */
2/** @file
3 * InnoTek Portable Runtime - Include all necessary headers for the Linux kernel.
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#ifndef __the_linux_kernel_h__
23#define __the_linux_kernel_h__
24
25#ifndef bool /* Linux 2.6.19 C++ nightmare */
26#define bool bool_type
27#define true true_type
28#define false false_type
29#define _Bool int
30#define bool_type_r0drv_the_linux_kernel_h__
31#endif
32
33#include <linux/autoconf.h>
34#include <linux/version.h>
35#if defined(CONFIG_MODVERSIONS) && !defined(MODVERSIONS)
36# define MODVERSIONS
37# if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 71)
38# include <linux/modversions.h>
39# endif
40#endif
41#ifndef KBUILD_STR
42# if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 16)
43# define KBUILD_STR(s) s
44# else
45# define KBUILD_STR(s) #s
46# endif
47#endif
48#include <iprt/cdefs.h>
49#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
50# undef ALIGN
51#endif
52#include <linux/string.h>
53#include <linux/spinlock.h>
54#include <linux/slab.h>
55#include <asm/semaphore.h>
56#include <linux/module.h>
57#include <linux/kernel.h>
58#include <linux/init.h>
59#include <linux/fs.h>
60#include <linux/mm.h>
61#include <linux/pagemap.h>
62#include <linux/slab.h>
63#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 7)
64# include <linux/time.h>
65# include <linux/jiffies.h>
66#endif
67#include <linux/wait.h>
68/* For the basic additions module */
69#include <linux/pci.h>
70#include <linux/delay.h>
71#include <linux/interrupt.h>
72#include <linux/completion.h>
73/* For the shared folders module */
74#include <linux/vmalloc.h>
75#define wchar_t linux_wchar_t
76#include <linux/nls.h>
77#undef wchar_t
78#include <asm/mman.h>
79#include <asm/io.h>
80#include <asm/uaccess.h>
81#include <asm/div64.h>
82
83#ifdef bool_type_r0drv_the_linux_kernel_h__
84#undef bool
85#undef true
86#undef false
87#undef _Bool
88#undef bool_type_r0drv_the_linux_kernel_h__
89#endif
90
91#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
92# ifndef page_to_pfn
93# define page_to_pfn(page) ((page) - mem_map)
94# endif
95#endif
96
97#ifndef DEFINE_WAIT
98# define DEFINE_WAIT(name) DECLARE_WAITQUEUE(name, current)
99#endif
100
101/*
102 * 2.4 compatibility wrappers
103 */
104#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 7)
105
106# ifndef MAX_JIFFY_OFFSET
107# define MAX_JIFFY_OFFSET ((~0UL >> 1)-1)
108# endif
109
110#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 4, 29) || LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
111
112DECLINLINE(unsigned int) jiffies_to_msecs(unsigned long cJiffies)
113{
114# if HZ <= 1000 && !(1000 % HZ)
115 return (1000 / HZ) * cJiffies;
116# elif HZ > 1000 && !(HZ % 1000)
117 return (cJiffies + (HZ / 1000) - 1) / (HZ / 1000);
118# else
119 return (j * 1000) / HZ;
120# endif
121}
122
123DECLINLINE(unsigned long) msecs_to_jiffies(unsigned int cMillies)
124{
125# if HZ > 1000
126 if (cMillies > jiffies_to_msecs(MAX_JIFFY_OFFSET))
127 return MAX_JIFFY_OFFSET;
128# endif
129# if HZ <= 1000 && !(1000 % HZ)
130 return (cMillies + (1000 / HZ) - 1) / (1000 / HZ);
131# elif HZ > 1000 && !(HZ % 1000)
132 return cMillies * (HZ / 1000);
133# else
134 return (cMillies * HZ + 999) / 1000;
135# endif
136}
137
138# endif /* < 2.4.29 || >= 2.6.0 */
139
140# define prepare_to_wait(q, wait, state) \
141 do { \
142 set_current_state(state); \
143 add_wait_queue(q, wait); \
144 } while (0)
145
146# define finish_wait(q, wait) \
147 do { \
148 remove_wait_queue(q, wait); \
149 set_current_state(TASK_RUNNING); \
150 } while (0)
151
152#endif /* < 2.6.7 */
153
154
155/*
156 * This sucks soooo badly! Why don't they export __PAGE_KERNEL_EXEC so PAGE_KERNEL_EXEC would be usable?
157 */
158#if defined(PAGE_KERNEL_EXEC) && defined(CONFIG_X86_PAE)
159# define MY_PAGE_KERNEL_EXEC __pgprot(cpu_has_pge ? _PAGE_KERNEL_EXEC | _PAGE_GLOBAL : _PAGE_KERNEL_EXEC)
160#else
161# define MY_PAGE_KERNEL_EXEC PAGE_KERNEL
162#endif
163
164
165/*
166 * The redhat hack section.
167 * - The current hacks are for 2.4.21-15.EL only.
168 */
169#ifndef NO_REDHAT_HACKS
170/* accounting. */
171# if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
172# ifdef VM_ACCOUNT
173# define MY_DO_MUNMAP(a,b,c) do_munmap(a, b, c, 0) /* should it be 1 or 0? */
174# endif
175# endif
176
177/* backported remap_page_range. */
178# if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
179# include <asm/tlb.h>
180# ifdef tlb_vma /* probably not good enough... */
181# define HAVE_26_STYLE_REMAP_PAGE_RANGE 1
182# endif
183# endif
184
185# ifndef __AMD64__
186/* In 2.6.9-22.ELsmp we have to call change_page_attr() twice when changing
187 * the page attributes from PAGE_KERNEL to something else, because there appears
188 * to be a bug in one of the many patches that redhat applied.
189 * It should be safe to do this on less buggy linux kernels too. ;-)
190 */
191# define MY_CHANGE_PAGE_ATTR(pPages, cPages, prot) \
192 do { \
193 if (pgprot_val(prot) != pgprot_val(PAGE_KERNEL)) \
194 change_page_attr(pPages, cPages, prot); \
195 change_page_attr(pPages, cPages, prot); \
196 } while (0)
197# endif /* !__AMD64__ */
198#endif /* !NO_REDHAT_HACKS */
199
200
201#ifndef MY_DO_MUNMAP
202# define MY_DO_MUNMAP(a,b,c) do_munmap(a, b, c)
203#endif
204
205#ifndef MY_CHANGE_PAGE_ATTR
206# ifdef __AMD64__ /** @todo This is a cheap hack, but it'll get around that 'else BUG();' in __change_page_attr(). */
207# define MY_CHANGE_PAGE_ATTR(pPages, cPages, prot) \
208 do { \
209 change_page_attr(pPages, cPages, PAGE_KERNEL_NOCACHE); \
210 change_page_attr(pPages, cPages, prot); \
211 } while (0)
212# else
213# define MY_CHANGE_PAGE_ATTR(pPages, cPages, prot) change_page_attr(pPages, cPages, prot)
214# endif
215#endif
216
217#ifndef PAGE_OFFSET_MASK
218# define PAGE_OFFSET_MASK (PAGE_SIZE - 1)
219#endif
220
221#endif
222
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette