preprocessor cleanup: __xpv
[unleashed.git] / arch / x86 / kernel / platform / i86pc / os / hold_page.c
blobd9ac4541b410e6e7f4eb0bb7962d446dd4dddeaa
1 /*
2 * CDDL HEADER START
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]
19 * CDDL HEADER END
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #include <sys/hold_page.h>
30 int
31 plat_hold_page(pfn_t pfn, int lock, page_t **pp_ret)
33 page_t *pp = page_numtopp_nolock(pfn);
35 if (pp == NULL)
36 return (PLAT_HOLD_FAIL);
39 * Pages are locked SE_SHARED because some hypervisors
40 * like xVM ESX reclaim Guest OS memory by locking
41 * it SE_EXCL so we want to leave these pages alone.
43 if (lock == PLAT_HOLD_LOCK) {
44 ASSERT(pp_ret != NULL);
45 if (page_trylock(pp, SE_SHARED) == 0)
46 return (PLAT_HOLD_FAIL);
49 if (lock == PLAT_HOLD_LOCK)
50 *pp_ret = pp;
52 return (PLAT_HOLD_OK);
55 void
56 plat_release_page(page_t *pp)
58 ASSERT((pp != NULL) && PAGE_LOCKED(pp));
59 page_unlock(pp);