VirtualBox

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

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

IPRT,HostDrv,AddDrv: Export public IPRT symbols for the linux kernel (pain).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.2 KB
Line 
1/* $Id: spinlock-r0drv-linux.c 21337 2009-07-07 14:58:27Z 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.215389.xyz. 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
45/*******************************************************************************
46* Structures and Typedefs *
47*******************************************************************************/
48/**
49 * Wrapper for the spinlock_t structure.
50 */
51typedef struct RTSPINLOCKINTERNAL
52{
53 /** Spinlock magic value (RTSPINLOCK_MAGIC). */
54 uint32_t volatile u32Magic;
55 /** The linux spinlock structure. */
56 spinlock_t Spinlock;
57#if !defined(CONFIG_SMP) || defined(RT_ARCH_AMD64)
58 /** A placeholder on Uni systems so we won't piss off RTMemAlloc(). */
59 void *pvUniDummy;
60#endif
61} RTSPINLOCKINTERNAL, *PRTSPINLOCKINTERNAL;
62
63
64
65RTDECL(int) RTSpinlockCreate(PRTSPINLOCK pSpinlock)
66{
67 /*
68 * Allocate.
69 */
70 PRTSPINLOCKINTERNAL pSpinlockInt;
71 Assert(sizeof(RTSPINLOCKINTERNAL) > sizeof(void *));
72 pSpinlockInt = (PRTSPINLOCKINTERNAL)RTMemAlloc(sizeof(*pSpinlockInt));
73 if (!pSpinlockInt)
74 return VERR_NO_MEMORY;
75 /*
76 * Initialize and return.
77 */
78 pSpinlockInt->u32Magic = RTSPINLOCK_MAGIC;
79 spin_lock_init(&pSpinlockInt->Spinlock);
80
81 *pSpinlock = pSpinlockInt;
82 return VINF_SUCCESS;
83}
84RT_EXPORT_SYMBOL(RTSpinlockCreate);
85
86
87RTDECL(int) RTSpinlockDestroy(RTSPINLOCK Spinlock)
88{
89 /*
90 * Validate input.
91 */
92 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
93 if (!pSpinlockInt)
94 return VERR_INVALID_PARAMETER;
95 if (pSpinlockInt->u32Magic != RTSPINLOCK_MAGIC)
96 {
97 AssertMsgFailed(("Invalid spinlock %p magic=%#x\n", pSpinlockInt, pSpinlockInt->u32Magic));
98 return VERR_INVALID_PARAMETER;
99 }
100
101 ASMAtomicIncU32(&pSpinlockInt->u32Magic);
102 RTMemFree(pSpinlockInt);
103 return VINF_SUCCESS;
104}
105RT_EXPORT_SYMBOL(RTSpinlockDestroy);
106
107
108RTDECL(void) RTSpinlockAcquireNoInts(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp)
109{
110 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
111 AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC,
112 ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0));
113 NOREF(pSpinlockInt);
114
115 spin_lock_irqsave(&pSpinlockInt->Spinlock, pTmp->flFlags);
116}
117RT_EXPORT_SYMBOL(RTSpinlockAcquireNoInts);
118
119
120RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp)
121{
122 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
123 AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC,
124 ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0));
125 NOREF(pSpinlockInt);
126
127 spin_unlock_irqrestore(&pSpinlockInt->Spinlock, pTmp->flFlags);
128}
129RT_EXPORT_SYMBOL(RTSpinlockReleaseNoInts);
130
131
132RTDECL(void) RTSpinlockAcquire(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp)
133{
134 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
135 AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC,
136 ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0));
137 NOREF(pSpinlockInt); NOREF(pTmp);
138
139 spin_lock(&pSpinlockInt->Spinlock);
140}
141RT_EXPORT_SYMBOL(RTSpinlockAcquire);
142
143
144RTDECL(void) RTSpinlockRelease(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp)
145{
146 PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock;
147 AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC,
148 ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0));
149 NOREF(pSpinlockInt); NOREF(pTmp);
150
151 spin_unlock(&pSpinlockInt->Spinlock);
152}
153RT_EXPORT_SYMBOL(RTSpinlockRelease);
154
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