VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/netbsd/spinlock-r0drv-netbsd.c@ 78381

Last change on this file since 78381 was 77120, checked in by vboxsync, 6 years ago

IPRT: Some license header cleanups.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.9 KB
Line 
1/* $Id: spinlock-r0drv-netbsd.c 77120 2019-02-01 15:08:46Z vboxsync $ */
2/** @file
3 * IPRT - Spinlocks, Ring-0 Driver, NetBSD.
4 */
5
6/*
7 * Contributed by knut st. osmundsen.
8 *
9 * Copyright (C) 2007-2019 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 *
30 * Copyright (c) 2007 knut st. osmundsen <[email protected]>
31 *
32 * Permission is hereby granted, free of charge, to any person
33 * obtaining a copy of this software and associated documentation
34 * files (the "Software"), to deal in the Software without
35 * restriction, including without limitation the rights to use,
36 * copy, modify, merge, publish, distribute, sublicense, and/or sell
37 * copies of the Software, and to permit persons to whom the
38 * Software is furnished to do so, subject to the following
39 * conditions:
40 *
41 * The above copyright notice and this permission notice shall be
42 * included in all copies or substantial portions of the Software.
43 *
44 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
45 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
46 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
47 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
48 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
49 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
50 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
51 * OTHER DEALINGS IN THE SOFTWARE.
52 */
53
54
55/*********************************************************************************************************************************
56* Header Files *
57*********************************************************************************************************************************/
58#include "the-netbsd-kernel.h"
59#include "internal/iprt.h"
60
61#include <iprt/spinlock.h>
62#include <iprt/errcore.h>
63#include <iprt/alloc.h>
64#include <iprt/assert.h>
65#include <iprt/asm.h>
66#include <iprt/asm-amd64-x86.h>
67#include <iprt/thread.h>
68#include <iprt/mp.h>
69
70#include "internal/magics.h"
71
72
73/*********************************************************************************************************************************
74* Structures and Typedefs *
75*********************************************************************************************************************************/
76/**
77 * Wrapper for the struct mtx type.
78 */
79typedef struct RTSPINLOCKINTERNAL
80{
81 /** Spinlock magic value (RTSPINLOCK_MAGIC). */
82 uint32_t volatile u32Magic;
83 /** The spinlock. */
84 kmutex_t pSpinLock;
85 /** Saved interrupt flag. */
86 uint32_t volatile fIntSaved;
87 /** The spinlock creation flags. */
88 uint32_t fFlags;
89} RTSPINLOCKINTERNAL, *PRTSPINLOCKINTERNAL;
90
91
92RTDECL(int) RTSpinlockCreate(PRTSPINLOCK pSpinlock, uint32_t fFlags, const char *pszName)
93{
94 RT_ASSERT_PREEMPTIBLE();
95 AssertReturn(fFlags == RTSPINLOCK_FLAGS_INTERRUPT_SAFE || fFlags == RTSPINLOCK_FLAGS_INTERRUPT_UNSAFE, VERR_INVALID_PARAMETER);
96
97 /*
98 * Allocate.
99 */
100 AssertCompile(sizeof(RTSPINLOCKINTERNAL) > sizeof(void *));
101 PRTSPINLOCKINTERNAL pThis = (PRTSPINLOCKINTERNAL)RTMemAllocZ(sizeof(*pThis));
102 if (!pThis)
103 return VERR_NO_MEMORY;
104
105 /*
106 * Initialize & return.
107 */
108 pThis->u32Magic = RTSPINLOCK_MAGIC;
109 pThis->fFlags = fFlags;
110 pThis->fIntSaved = 0;
111 if (fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE) {
112 mutex_init(&pThis->pSpinLock, MUTEX_DEFAULT, IPL_BIO);
113 } else {
114 mutex_init(&pThis->pSpinLock, MUTEX_DEFAULT, IPL_NONE);
115 }
116
117 *pSpinlock = pThis;
118 return VINF_SUCCESS;
119}
120
121
122RTDECL(int) RTSpinlockDestroy(RTSPINLOCK Spinlock)
123{
124 /*
125 * Validate input.
126 */
127 RT_ASSERT_INTS_ON();
128 PRTSPINLOCKINTERNAL pThis = (PRTSPINLOCKINTERNAL)Spinlock;
129 if (!pThis)
130 return VERR_INVALID_PARAMETER;
131 AssertMsgReturn(pThis->u32Magic == RTSPINLOCK_MAGIC,
132 ("Invalid spinlock %p magic=%#x\n", pThis, pThis->u32Magic),
133 VERR_INVALID_PARAMETER);
134
135 /*
136 * Make the lock invalid and release the memory.
137 */
138 ASMAtomicIncU32(&pThis->u32Magic);
139 mutex_destroy(&pThis->pSpinLock);
140 RTMemFree(pThis);
141 return VINF_SUCCESS;
142}
143
144
145RTDECL(void) RTSpinlockAcquire(RTSPINLOCK Spinlock)
146{
147 PRTSPINLOCKINTERNAL pThis = (PRTSPINLOCKINTERNAL)Spinlock;
148 RT_ASSERT_PREEMPT_CPUID_VAR();
149 AssertPtr(pThis);
150 Assert(pThis->u32Magic == RTSPINLOCK_MAGIC);
151
152 if (pThis->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE) {
153 mutex_spin_enter(&pThis->pSpinLock);
154 } else {
155 mutex_enter(&pThis->pSpinLock);
156 }
157}
158
159
160RTDECL(void) RTSpinlockRelease(RTSPINLOCK Spinlock)
161{
162 PRTSPINLOCKINTERNAL pThis = (PRTSPINLOCKINTERNAL)Spinlock;
163 AssertPtr(pThis);
164 Assert(pThis->u32Magic == RTSPINLOCK_MAGIC);
165
166 if (pThis->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE) {
167 mutex_spin_exit(&pThis->pSpinLock);
168 } else {
169 mutex_exit(&pThis->pSpinLock);
170 }
171}
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