VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c@ 11519

Last change on this file since 11519 was 11519, checked in by vboxsync, 16 years ago

Linux additions: properly install and compile the kernel modules

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.3 KB
Line 
1/* $Id: spinlock-r0drv-linux.c 11519 2008-08-20 14:25:02Z vboxsync $ */
2/** @file
3 * IPRT - Spinlocks, Ring-0 Driver, Linux.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include "the-linux-kernel.h"
36
37#include <iprt/spinlock.h>
38#include <iprt/err.h>
39#include <iprt/alloc.h>
40#include <iprt/assert.h>
41#include <iprt/asm.h>
42#include "internal/magics.h"
43
44#include <linux/spinlock.h> /** @todo why is this here and not in the-linux-kernel.h? */
45
46#if defined(IN_GUEST_R0)
47EXPORT_SYMBOL(RTSpinlockCreate);
48EXPORT_SYMBOL(RTSpinlockDestroy);
49EXPORT_SYMBOL(RTSpinlockAcquireNoInts);
50EXPORT_SYMBOL(RTSpinlockReleaseNoInts);
51#endif
52
53/*******************************************************************************
54* Structures and Typedefs *
55*******************************************************************************/
56/**
57 * Wrapper for the spinlock_t structure.
58 */
59typedef struct RTSPINLOCKINTERNAL
60{
61 /** Spinlock magic value (RTSPINLOCK_MAGIC). */
62 uint32_t volatile u32Magic;
63 /** The linux spinlock structure. */
64 spinlock_t Spinlock;
65#if !defined(CONFIG_SMP) || defined(RT_ARCH_AMD64)
66 /** A placeholder on Uni systems so we won't piss off RTMemAlloc(). */
67 void *pvUniDummy;
68#endif
69} RTSPINLOCKINTERNAL, *PRTSPINLOCKINTERNAL;
70
71
72
73RTDECL(int) RTSpinlockCreate(PRTSPINLOCK pSpinlock)
74{
75 /*
76 * Allocate.
77 */
78 PRTSPINLOCKINTERNAL pSpinlockInt;
79 Assert(sizeof(RTSPINLOCKINTERNAL) > sizeof(void *));
80 pSpinlockInt = (PRTSPINLOCKINTERNAL)RTMemAlloc(sizeof(*pSpinlockInt));
81 if (!pSpinlockInt)
82 return VERR_NO_MEMORY;
83 /*
84 * Initialize and return.
85 */
86 pSpinlockInt->u32Magic = RTSPINLOCK_MAGIC;
87 spin_lock_init(&pSpinlockInt->Spinlock);
88
89 *pSpinlock = pSpinlockInt;
90 return VINF_SUCCESS;
91}
92
93
94RTDECL(int) RTSpinlockDestroy(RTSPINLOCK Spinlock)
95{
96 /*
97 * Validate input.
98 */
99 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
100 if (!pSpinlockInt)
101 return VERR_INVALID_PARAMETER;
102 if (pSpinlockInt->u32Magic != RTSPINLOCK_MAGIC)
103 {
104 AssertMsgFailed(("Invalid spinlock %p magic=%#x\n", pSpinlockInt, pSpinlockInt->u32Magic));
105 return VERR_INVALID_PARAMETER;
106 }
107
108 ASMAtomicIncU32(&pSpinlockInt->u32Magic);
109 RTMemFree(pSpinlockInt);
110 return VINF_SUCCESS;
111}
112
113
114RTDECL(void) RTSpinlockAcquireNoInts(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp)
115{
116 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
117 AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC,
118 ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0));
119 NOREF(pSpinlockInt);
120
121 spin_lock_irqsave(&pSpinlockInt->Spinlock, pTmp->flFlags);
122}
123
124
125RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp)
126{
127 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
128 AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC,
129 ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0));
130 NOREF(pSpinlockInt);
131
132 spin_unlock_irqrestore(&pSpinlockInt->Spinlock, pTmp->flFlags);
133}
134
135
136RTDECL(void) RTSpinlockAcquire(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp)
137{
138 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
139 AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC,
140 ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0));
141 NOREF(pSpinlockInt); NOREF(pTmp);
142
143 spin_lock(&pSpinlockInt->Spinlock);
144}
145
146
147RTDECL(void) RTSpinlockRelease(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp)
148{
149 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
150 AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC,
151 ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0));
152 NOREF(pSpinlockInt); NOREF(pTmp);
153
154 spin_unlock(&pSpinlockInt->Spinlock);
155}
156
Note: See TracBrowser for help on using the repository browser.

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