VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/solaris/vbi/mpnotification-r0drv-solaris.c@ 24386

最後變更 在這個檔案從24386是 24386,由 vboxsync 提交於 15 年 前

Solaris/r0drv: Merge VBI into IPRT.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 3.2 KB
 
1/* $Id: mpnotification-r0drv-solaris.c 24386 2009-11-05 14:17:10Z vboxsync $ */
2/** @file
3 * IPRT - Multiprocessor Event Notifications, Ring-0 Driver, Solaris.
4 */
5
6/*
7 * Copyright (C) 2008 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.alldomusa.eu.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* Header Files *
33*******************************************************************************/
34#include "../the-solaris-kernel.h"
35#include "internal/iprt.h"
36
37#include <iprt/err.h>
38#include <iprt/mp.h>
39#include <iprt/cpuset.h>
40#include "r0drv/mp-r0drv.h"
41
42
43/*******************************************************************************
44* Global Variables *
45*******************************************************************************/
46/** CPU watch callback handle. */
47static vbi_cpu_watch_t *g_hVbiCpuWatch = NULL;
48/** Set of online cpus that is maintained by the MP callback.
49 * This avoids locking issues quering the set from the kernel as well as
50 * eliminating any uncertainty regarding the online status during the
51 * callback. */
52RTCPUSET g_rtMpSolarisCpuSet;
53
54
55static void rtMpNotificationSolarisCallback(void *pvUser, int iCpu, int online)
56{
57 NOREF(pvUser);
58
59 /* ASSUMES iCpu == RTCPUID */
60 if (online)
61 {
62 RTCpuSetAdd(&g_rtMpSolarisCpuSet, iCpu);
63 rtMpNotificationDoCallbacks(RTMPEVENT_ONLINE, iCpu);
64 }
65 else
66 {
67 RTCpuSetDel(&g_rtMpSolarisCpuSet, iCpu);
68 rtMpNotificationDoCallbacks(RTMPEVENT_OFFLINE, iCpu);
69 }
70}
71
72
73int rtR0MpNotificationNativeInit(void)
74{
75 if (vbi_revision_level < 2)
76 return VERR_NOT_SUPPORTED;
77 if (g_hVbiCpuWatch != NULL)
78 return VERR_WRONG_ORDER;
79
80 /*
81 * Register the callback building the online cpu set as we
82 * do so (current_too = 1).
83 */
84 RTCpuSetEmpty(&g_rtMpSolarisCpuSet);
85 g_hVbiCpuWatch = vbi_watch_cpus(rtMpNotificationSolarisCallback, NULL, 1 /*current_too*/);
86
87 return VINF_SUCCESS;
88}
89
90
91void rtR0MpNotificationNativeTerm(void)
92{
93 if (vbi_revision_level >= 2 && g_hVbiCpuWatch != NULL)
94 vbi_ignore_cpus(g_hVbiCpuWatch);
95 g_hVbiCpuWatch = NULL;
96}
97
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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