4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #include <sys/hold_page.h>
30 #include <sys/hypervisor.h>
34 plat_hold_page(pfn_t pfn
, int lock
, page_t
**pp_ret
)
36 page_t
*pp
= page_numtopp_nolock(pfn
);
39 return (PLAT_HOLD_FAIL
);
43 * Pages are locked SE_SHARED because some hypervisors
44 * like xVM ESX reclaim Guest OS memory by locking
45 * it SE_EXCL so we want to leave these pages alone.
47 if (lock
== PLAT_HOLD_LOCK
) {
48 ASSERT(pp_ret
!= NULL
);
49 if (page_trylock(pp
, SE_SHARED
) == 0)
50 return (PLAT_HOLD_FAIL
);
53 if (lock
== PLAT_HOLD_LOCK
) {
54 ASSERT(pp_ret
!= NULL
);
55 if (page_trylock(pp
, SE_EXCL
) == 0)
56 return (PLAT_HOLD_FAIL
);
59 if (mfn_list
[pfn
] == MFN_INVALID
) {
60 /* We failed - release the lock if we grabbed it earlier */
61 if (lock
== PLAT_HOLD_LOCK
) {
64 return (PLAT_HOLD_FAIL
);
68 if (lock
== PLAT_HOLD_LOCK
)
71 return (PLAT_HOLD_OK
);
75 plat_release_page(page_t
*pp
)
77 ASSERT((pp
!= NULL
) && PAGE_LOCKED(pp
));