VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/testcase/tstContiguous.cpp@ 57

Last change on this file since 57 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1/** @file
2 *
3 * VBox host drivers - Ring-0 support drivers - Testcases:
4 * Test contiguous memory
5 */
6
7/*
8 * Copyright (C) 2006 InnoTek Systemberatung GmbH
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * If you received this file as part of a commercial VirtualBox
19 * distribution, then only the terms of your commercial VirtualBox
20 * license agreement apply instead of the previous paragraph.
21 */
22
23
24/*******************************************************************************
25* Header Files *
26*******************************************************************************/
27#include <VBox/sup.h>
28#include <VBox/param.h>
29#include <iprt/runtime.h>
30#include <iprt/stream.h>
31#include <stdlib.h>
32#include <string.h>
33
34
35
36int main(int argc, char **argv)
37{
38 int rc;
39 int rcRet = 0;
40
41 RTR3Init(false);
42 rc = SUPInit();
43 RTPrintf("tstContiguous: SUPInit -> rc=%Vrc\n", rc);
44 rcRet += rc != 0;
45 if (!rc)
46 {
47 /*
48 * Allocate a bit of contiguous memory.
49 */
50 RTHCPHYS HCPhys;
51 void *pv = SUPContAlloc(PAGE_SIZE * 8 + 1, &HCPhys);
52 rcRet += pv == NULL || HCPhys == 0;
53 if (pv && HCPhys)
54 {
55 memset(pv, 0xff, PAGE_SIZE * 8 + 1);
56 pv = SUPContAlloc(PAGE_SIZE * 5 + 2, &HCPhys);
57 rcRet += pv == NULL || HCPhys == 0;
58 if (pv && HCPhys)
59 {
60 memset(pv, 0x7f, PAGE_SIZE * 5 + 2);
61 rc = SUPContFree(pv);
62 rcRet += rc != 0;
63 if (rc)
64 RTPrintf("tstContiguous: SUPContFree failed! rc=%Vrc\n", rc);
65 }
66 else
67 RTPrintf("tstContiguous: SUPContAlloc (2nd) failed!\n");
68 }
69 else
70 RTPrintf("tstContiguous: SUPContAlloc failed!\n");
71
72 rc = SUPTerm();
73 RTPrintf("tstContiguous: SUPTerm -> rc=%Vrc\n", rc);
74 rcRet += rc != 0;
75 }
76
77 /*
78 * 2nd part
79 */
80 if (!rcRet)
81 {
82 rc = SUPInit();
83 RTPrintf("tstContiguous: SUPInit -> rc=%Vrc\n", rc);
84 rcRet += rc != 0;
85 if (!rc)
86 {
87 for (int i = 0; i < 256; i++)
88 {
89 RTHCPHYS HCPhys = 0;
90 void *pv = SUPContAlloc(PAGE_SIZE + 512 + i, &HCPhys);
91 rcRet += pv == NULL || HCPhys == 0;
92 if (pv && HCPhys)
93 {
94 memset(pv, 0x7f, PAGE_SIZE + 512 + i);
95 rc = SUPContFree(pv);
96 rcRet += rc != 0;
97 if (rc)
98 RTPrintf("tstContiguous: %d: SUPContFree failed! rc=%Vrc\n", i, rc);
99 }
100 else
101 RTPrintf("tstContiguous: %d: SUPContAlloc failed!\n", i);
102 }
103
104 rc = SUPTerm();
105 RTPrintf("tstContiguous: SUPTerm -> rc=%Vrc\n", rc);
106 rcRet += rc != 0;
107 }
108 }
109
110 return rcRet;
111}
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