10Sstevel@tonic-gate /* 20Sstevel@tonic-gate * CDDL HEADER START 30Sstevel@tonic-gate * 40Sstevel@tonic-gate * The contents of this file are subject to the terms of the 52759Selowe * Common Development and Distribution License (the "License"). 62759Selowe * You may not use this file except in compliance with the License. 70Sstevel@tonic-gate * 80Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate * See the License for the specific language governing permissions 110Sstevel@tonic-gate * and limitations under the License. 120Sstevel@tonic-gate * 130Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate * 190Sstevel@tonic-gate * CDDL HEADER END 200Sstevel@tonic-gate */ 210Sstevel@tonic-gate /* 222759Selowe * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 230Sstevel@tonic-gate * Use is subject to license terms. 240Sstevel@tonic-gate */ 250Sstevel@tonic-gate 260Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 270Sstevel@tonic-gate 280Sstevel@tonic-gate /* 290Sstevel@tonic-gate * VM - page locking primitives 300Sstevel@tonic-gate */ 310Sstevel@tonic-gate #include <sys/param.h> 320Sstevel@tonic-gate #include <sys/t_lock.h> 330Sstevel@tonic-gate #include <sys/vtrace.h> 340Sstevel@tonic-gate #include <sys/debug.h> 350Sstevel@tonic-gate #include <sys/cmn_err.h> 360Sstevel@tonic-gate #include <sys/vnode.h> 370Sstevel@tonic-gate #include <sys/bitmap.h> 380Sstevel@tonic-gate #include <sys/lockstat.h> 390Sstevel@tonic-gate #include <sys/condvar_impl.h> 400Sstevel@tonic-gate #include <vm/page.h> 410Sstevel@tonic-gate #include <vm/seg_enum.h> 420Sstevel@tonic-gate #include <vm/vm_dep.h> 430Sstevel@tonic-gate 440Sstevel@tonic-gate /* 450Sstevel@tonic-gate * This global mutex is for logical page locking. 460Sstevel@tonic-gate * The following fields in the page structure are protected 470Sstevel@tonic-gate * by this lock: 480Sstevel@tonic-gate * 490Sstevel@tonic-gate * p_lckcnt 500Sstevel@tonic-gate * p_cowcnt 510Sstevel@tonic-gate */ 520Sstevel@tonic-gate kmutex_t page_llock; 530Sstevel@tonic-gate 540Sstevel@tonic-gate /* 550Sstevel@tonic-gate * This is a global lock for the logical page free list. The 560Sstevel@tonic-gate * logical free list, in this implementation, is maintained as two 570Sstevel@tonic-gate * separate physical lists - the cache list and the free list. 580Sstevel@tonic-gate */ 590Sstevel@tonic-gate kmutex_t page_freelock; 600Sstevel@tonic-gate 610Sstevel@tonic-gate /* 620Sstevel@tonic-gate * The hash table, page_hash[], the p_selock fields, and the 630Sstevel@tonic-gate * list of pages associated with vnodes are protected by arrays of mutexes. 640Sstevel@tonic-gate * 650Sstevel@tonic-gate * Unless the hashes are changed radically, the table sizes must be 660Sstevel@tonic-gate * a power of two. Also, we typically need more mutexes for the 670Sstevel@tonic-gate * vnodes since these locks are occasionally held for long periods. 680Sstevel@tonic-gate * And since there seem to be two special vnodes (kvp and swapvp), 690Sstevel@tonic-gate * we make room for private mutexes for them. 700Sstevel@tonic-gate * 710Sstevel@tonic-gate * The pse_mutex[] array holds the mutexes to protect the p_selock 720Sstevel@tonic-gate * fields of all page_t structures. 730Sstevel@tonic-gate * 740Sstevel@tonic-gate * PAGE_SE_MUTEX(pp) returns the address of the appropriate mutex 750Sstevel@tonic-gate * when given a pointer to a page_t. 760Sstevel@tonic-gate * 770Sstevel@tonic-gate * PSE_TABLE_SIZE must be a power of two. One could argue that we 780Sstevel@tonic-gate * should go to the trouble of setting it up at run time and base it 790Sstevel@tonic-gate * on memory size rather than the number of compile time CPUs. 800Sstevel@tonic-gate * 810Sstevel@tonic-gate * XX64 We should be using physmem size to calculate PSE_TABLE_SIZE, 820Sstevel@tonic-gate * PSE_SHIFT, PIO_SHIFT. 830Sstevel@tonic-gate * 840Sstevel@tonic-gate * These might break in 64 bit world. 850Sstevel@tonic-gate */ 860Sstevel@tonic-gate #define PSE_SHIFT 7 /* log2(PSE_TABLE_SIZE) */ 870Sstevel@tonic-gate 880Sstevel@tonic-gate #define PSE_TABLE_SIZE 128 /* number of mutexes to have */ 890Sstevel@tonic-gate 900Sstevel@tonic-gate #define PIO_SHIFT PSE_SHIFT /* next power of 2 bigger than page_t */ 910Sstevel@tonic-gate #define PIO_TABLE_SIZE PSE_TABLE_SIZE /* number of io mutexes to have */ 920Sstevel@tonic-gate 930Sstevel@tonic-gate pad_mutex_t ph_mutex[PH_TABLE_SIZE]; 940Sstevel@tonic-gate pad_mutex_t pse_mutex[PSE_TABLE_SIZE]; 950Sstevel@tonic-gate kmutex_t pio_mutex[PIO_TABLE_SIZE]; 960Sstevel@tonic-gate 970Sstevel@tonic-gate #define PAGE_SE_MUTEX(pp) \ 980Sstevel@tonic-gate &pse_mutex[((((uintptr_t)(pp) >> PSE_SHIFT) ^ \ 990Sstevel@tonic-gate ((uintptr_t)(pp) >> (PSE_SHIFT << 1))) & \ 1000Sstevel@tonic-gate (PSE_TABLE_SIZE - 1))].pad_mutex 1010Sstevel@tonic-gate 1020Sstevel@tonic-gate #define PAGE_IO_MUTEX(pp) \ 1030Sstevel@tonic-gate &pio_mutex[(((uintptr_t)pp) >> PIO_SHIFT) & (PIO_TABLE_SIZE - 1)] 1040Sstevel@tonic-gate 1050Sstevel@tonic-gate #define PSZC_MTX_TABLE_SIZE 128 1060Sstevel@tonic-gate #define PSZC_MTX_TABLE_SHIFT 7 1070Sstevel@tonic-gate 1080Sstevel@tonic-gate static pad_mutex_t pszc_mutex[PSZC_MTX_TABLE_SIZE]; 1090Sstevel@tonic-gate 1100Sstevel@tonic-gate #define PAGE_SZC_MUTEX(_pp) \ 1110Sstevel@tonic-gate &pszc_mutex[((((uintptr_t)(_pp) >> PSZC_MTX_TABLE_SHIFT) ^ \ 1120Sstevel@tonic-gate ((uintptr_t)(_pp) >> (PSZC_MTX_TABLE_SHIFT << 1)) ^ \ 1130Sstevel@tonic-gate ((uintptr_t)(_pp) >> (3 * PSZC_MTX_TABLE_SHIFT))) & \ 1140Sstevel@tonic-gate (PSZC_MTX_TABLE_SIZE - 1))].pad_mutex 1150Sstevel@tonic-gate 1160Sstevel@tonic-gate /* 1170Sstevel@tonic-gate * The vph_mutex[] array holds the mutexes to protect the vnode chains, 1180Sstevel@tonic-gate * (i.e., the list of pages anchored by v_pages and connected via p_vpprev 1190Sstevel@tonic-gate * and p_vpnext). 1200Sstevel@tonic-gate * 1210Sstevel@tonic-gate * The page_vnode_mutex(vp) function returns the address of the appropriate 1220Sstevel@tonic-gate * mutex from this array given a pointer to a vnode. It is complicated 1230Sstevel@tonic-gate * by the fact that the kernel's vnode and the swapfs vnode are referenced 1240Sstevel@tonic-gate * frequently enough to warrent their own mutexes. 1250Sstevel@tonic-gate * 1260Sstevel@tonic-gate * The VP_HASH_FUNC returns the index into the vph_mutex array given 1270Sstevel@tonic-gate * an address of a vnode. 1280Sstevel@tonic-gate */ 1290Sstevel@tonic-gate 1300Sstevel@tonic-gate /* 1310Sstevel@tonic-gate * XX64 VPH_TABLE_SIZE and VP_HASH_FUNC might break in 64 bit world. 1320Sstevel@tonic-gate * Need to review again. 1330Sstevel@tonic-gate */ 1340Sstevel@tonic-gate #define VPH_TABLE_SIZE (2 << VP_SHIFT) 1350Sstevel@tonic-gate 1360Sstevel@tonic-gate #define VP_HASH_FUNC(vp) \ 1370Sstevel@tonic-gate ((((uintptr_t)(vp) >> 6) + \ 1380Sstevel@tonic-gate ((uintptr_t)(vp) >> 8) + \ 1390Sstevel@tonic-gate ((uintptr_t)(vp) >> 10) + \ 1400Sstevel@tonic-gate ((uintptr_t)(vp) >> 12)) \ 1410Sstevel@tonic-gate & (VPH_TABLE_SIZE - 1)) 1420Sstevel@tonic-gate 1430Sstevel@tonic-gate extern struct vnode kvp; 1440Sstevel@tonic-gate 1450Sstevel@tonic-gate kmutex_t vph_mutex[VPH_TABLE_SIZE + 2]; 1460Sstevel@tonic-gate 1470Sstevel@tonic-gate /* 1480Sstevel@tonic-gate * Initialize the locks used by the Virtual Memory Management system. 1490Sstevel@tonic-gate */ 1500Sstevel@tonic-gate void 1510Sstevel@tonic-gate page_lock_init() 1520Sstevel@tonic-gate { 1530Sstevel@tonic-gate } 1540Sstevel@tonic-gate 1550Sstevel@tonic-gate /* 1560Sstevel@tonic-gate * At present we only use page ownership to aid debugging, so it's 1570Sstevel@tonic-gate * OK if the owner field isn't exact. In the 32-bit world two thread ids 1580Sstevel@tonic-gate * can map to the same owner because we just 'or' in 0x80000000 and 1590Sstevel@tonic-gate * then clear the second highest bit, so that (for example) 0x2faced00 1600Sstevel@tonic-gate * and 0xafaced00 both map to 0xafaced00. 1610Sstevel@tonic-gate * In the 64-bit world, p_selock may not be large enough to hold a full 1620Sstevel@tonic-gate * thread pointer. If we ever need precise ownership (e.g. if we implement 1630Sstevel@tonic-gate * priority inheritance for page locks) then p_selock should become a 1640Sstevel@tonic-gate * uintptr_t and SE_WRITER should be -((uintptr_t)curthread >> 2). 1650Sstevel@tonic-gate */ 1660Sstevel@tonic-gate #define SE_WRITER (((selock_t)(ulong_t)curthread | INT_MIN) & ~SE_EWANTED) 1670Sstevel@tonic-gate #define SE_READER 1 1680Sstevel@tonic-gate 1690Sstevel@tonic-gate /* 1700Sstevel@tonic-gate * A page that is deleted must be marked as such using the 1710Sstevel@tonic-gate * page_lock_delete() function. The page must be exclusively locked. 1720Sstevel@tonic-gate * The SE_DELETED marker is put in p_selock when this function is called. 1730Sstevel@tonic-gate * SE_DELETED must be distinct from any SE_WRITER value. 1740Sstevel@tonic-gate */ 1750Sstevel@tonic-gate #define SE_DELETED (1 | INT_MIN) 1760Sstevel@tonic-gate 1770Sstevel@tonic-gate #ifdef VM_STATS 1780Sstevel@tonic-gate uint_t vph_kvp_count; 1790Sstevel@tonic-gate uint_t vph_swapfsvp_count; 1800Sstevel@tonic-gate uint_t vph_other; 1810Sstevel@tonic-gate #endif /* VM_STATS */ 1820Sstevel@tonic-gate 1830Sstevel@tonic-gate #ifdef VM_STATS 1840Sstevel@tonic-gate uint_t page_lock_count; 1850Sstevel@tonic-gate uint_t page_lock_miss; 1860Sstevel@tonic-gate uint_t page_lock_miss_lock; 1870Sstevel@tonic-gate uint_t page_lock_reclaim; 1880Sstevel@tonic-gate uint_t page_lock_bad_reclaim; 1890Sstevel@tonic-gate uint_t page_lock_same_page; 1900Sstevel@tonic-gate uint_t page_lock_upgrade; 191917Selowe uint_t page_lock_retired; 1920Sstevel@tonic-gate uint_t page_lock_upgrade_failed; 1930Sstevel@tonic-gate uint_t page_lock_deleted; 1940Sstevel@tonic-gate 1950Sstevel@tonic-gate uint_t page_trylock_locked; 196917Selowe uint_t page_trylock_failed; 1970Sstevel@tonic-gate uint_t page_trylock_missed; 1980Sstevel@tonic-gate 1990Sstevel@tonic-gate uint_t page_try_reclaim_upgrade; 2000Sstevel@tonic-gate #endif /* VM_STATS */ 2010Sstevel@tonic-gate 2020Sstevel@tonic-gate /* 2030Sstevel@tonic-gate * Acquire the "shared/exclusive" lock on a page. 2040Sstevel@tonic-gate * 2050Sstevel@tonic-gate * Returns 1 on success and locks the page appropriately. 2060Sstevel@tonic-gate * 0 on failure and does not lock the page. 2070Sstevel@tonic-gate * 2080Sstevel@tonic-gate * If `lock' is non-NULL, it will be dropped and reacquired in the 2090Sstevel@tonic-gate * failure case. This routine can block, and if it does 2100Sstevel@tonic-gate * it will always return a failure since the page identity [vp, off] 2110Sstevel@tonic-gate * or state may have changed. 2120Sstevel@tonic-gate */ 2130Sstevel@tonic-gate 2140Sstevel@tonic-gate int 2150Sstevel@tonic-gate page_lock(page_t *pp, se_t se, kmutex_t *lock, reclaim_t reclaim) 2160Sstevel@tonic-gate { 2170Sstevel@tonic-gate return (page_lock_es(pp, se, lock, reclaim, 0)); 2180Sstevel@tonic-gate } 2190Sstevel@tonic-gate 2200Sstevel@tonic-gate /* 2210Sstevel@tonic-gate * With the addition of reader-writer lock semantics to page_lock_es, 2220Sstevel@tonic-gate * callers wanting an exclusive (writer) lock may prevent shared-lock 2230Sstevel@tonic-gate * (reader) starvation by setting the es parameter to SE_EXCL_WANTED. 2240Sstevel@tonic-gate * In this case, when an exclusive lock cannot be acquired, p_selock's 225917Selowe * SE_EWANTED bit is set. Shared-lock (reader) requests are also denied 226917Selowe * if the page is slated for retirement. 227917Selowe * 228917Selowe * The se and es parameters determine if the lock should be granted 229917Selowe * based on the following decision table: 230917Selowe * 231917Selowe * Lock wanted es flags p_selock/SE_EWANTED Action 232917Selowe * ----------- -------------- ------------------- --------- 233917Selowe * SE_EXCL any [1][2] unlocked/any grant lock, clear SE_EWANTED 234917Selowe * SE_EXCL SE_EWANTED any lock/any deny, set SE_EWANTED 235917Selowe * SE_EXCL none any lock/any deny 2362759Selowe * SE_SHARED n/a [2] shared/0 grant 2372759Selowe * SE_SHARED n/a [2] unlocked/0 grant 238917Selowe * SE_SHARED n/a shared/1 deny 239917Selowe * SE_SHARED n/a unlocked/1 deny 240917Selowe * SE_SHARED n/a excl/any deny 2410Sstevel@tonic-gate * 242917Selowe * Notes: 243917Selowe * [1] The code grants an exclusive lock to the caller and clears the bit 244917Selowe * SE_EWANTED whenever p_selock is unlocked, regardless of the SE_EWANTED 245917Selowe * bit's value. This was deemed acceptable as we are not concerned about 246917Selowe * exclusive-lock starvation. If this ever becomes an issue, a priority or 247917Selowe * fifo mechanism should also be implemented. Meantime, the thread that 248917Selowe * set SE_EWANTED should be prepared to catch this condition and reset it 249917Selowe * 250917Selowe * [2] Retired pages may not be locked at any time, regardless of the 251917Selowe * dispostion of se, unless the es parameter has SE_RETIRED flag set. 2520Sstevel@tonic-gate * 253917Selowe * Notes on values of "es": 254917Selowe * 255917Selowe * es & 1: page_lookup_create will attempt page relocation 256917Selowe * es & SE_EXCL_WANTED: caller wants SE_EWANTED set (eg. delete 257917Selowe * memory thread); this prevents reader-starvation of waiting 258917Selowe * writer thread(s) by giving priority to writers over readers. 259917Selowe * es & SE_RETIRED: caller wants to lock pages even if they are 260917Selowe * retired. Default is to deny the lock if the page is retired. 261917Selowe * 262917Selowe * And yes, we know, the semantics of this function are too complicated. 263917Selowe * It's on the list to be cleaned up. 2640Sstevel@tonic-gate */ 2650Sstevel@tonic-gate int 2660Sstevel@tonic-gate page_lock_es(page_t *pp, se_t se, kmutex_t *lock, reclaim_t reclaim, int es) 2670Sstevel@tonic-gate { 2680Sstevel@tonic-gate int retval; 2690Sstevel@tonic-gate kmutex_t *pse = PAGE_SE_MUTEX(pp); 2700Sstevel@tonic-gate int upgraded; 2710Sstevel@tonic-gate int reclaim_it; 2720Sstevel@tonic-gate 2730Sstevel@tonic-gate ASSERT(lock != NULL ? MUTEX_HELD(lock) : 1); 2740Sstevel@tonic-gate 2750Sstevel@tonic-gate VM_STAT_ADD(page_lock_count); 2760Sstevel@tonic-gate 2770Sstevel@tonic-gate upgraded = 0; 2780Sstevel@tonic-gate reclaim_it = 0; 2790Sstevel@tonic-gate 2800Sstevel@tonic-gate mutex_enter(pse); 2810Sstevel@tonic-gate 282917Selowe ASSERT(((es & SE_EXCL_WANTED) == 0) || 283917Selowe ((es & SE_EXCL_WANTED) && (se == SE_EXCL))); 2840Sstevel@tonic-gate 285917Selowe if (PP_RETIRED(pp) && !(es & SE_RETIRED)) { 286917Selowe mutex_exit(pse); 287917Selowe VM_STAT_ADD(page_lock_retired); 288917Selowe return (0); 289917Selowe } 2900Sstevel@tonic-gate 2910Sstevel@tonic-gate if (se == SE_SHARED && es == 1 && pp->p_selock == 0) { 2920Sstevel@tonic-gate se = SE_EXCL; 2930Sstevel@tonic-gate } 2940Sstevel@tonic-gate 2950Sstevel@tonic-gate if ((reclaim == P_RECLAIM) && (PP_ISFREE(pp))) { 2960Sstevel@tonic-gate 2970Sstevel@tonic-gate reclaim_it = 1; 2980Sstevel@tonic-gate if (se == SE_SHARED) { 2990Sstevel@tonic-gate /* 3000Sstevel@tonic-gate * This is an interesting situation. 3010Sstevel@tonic-gate * 3020Sstevel@tonic-gate * Remember that p_free can only change if 3030Sstevel@tonic-gate * p_selock < 0. 3040Sstevel@tonic-gate * p_free does not depend on our holding `pse'. 3050Sstevel@tonic-gate * And, since we hold `pse', p_selock can not change. 3060Sstevel@tonic-gate * So, if p_free changes on us, the page is already 3070Sstevel@tonic-gate * exclusively held, and we would fail to get p_selock 3080Sstevel@tonic-gate * regardless. 3090Sstevel@tonic-gate * 3100Sstevel@tonic-gate * We want to avoid getting the share 3110Sstevel@tonic-gate * lock on a free page that needs to be reclaimed. 3120Sstevel@tonic-gate * It is possible that some other thread has the share 3130Sstevel@tonic-gate * lock and has left the free page on the cache list. 3140Sstevel@tonic-gate * pvn_vplist_dirty() does this for brief periods. 3150Sstevel@tonic-gate * If the se_share is currently SE_EXCL, we will fail 3160Sstevel@tonic-gate * to acquire p_selock anyway. Blocking is the 3170Sstevel@tonic-gate * right thing to do. 3180Sstevel@tonic-gate * If we need to reclaim this page, we must get 3190Sstevel@tonic-gate * exclusive access to it, force the upgrade now. 3200Sstevel@tonic-gate * Again, we will fail to acquire p_selock if the 3210Sstevel@tonic-gate * page is not free and block. 3220Sstevel@tonic-gate */ 3230Sstevel@tonic-gate upgraded = 1; 3240Sstevel@tonic-gate se = SE_EXCL; 3250Sstevel@tonic-gate VM_STAT_ADD(page_lock_upgrade); 3260Sstevel@tonic-gate } 3270Sstevel@tonic-gate } 3280Sstevel@tonic-gate 3290Sstevel@tonic-gate if (se == SE_EXCL) { 330917Selowe if (!(es & SE_EXCL_WANTED) && (pp->p_selock & SE_EWANTED)) { 3310Sstevel@tonic-gate /* 3320Sstevel@tonic-gate * if the caller wants a writer lock (but did not 3330Sstevel@tonic-gate * specify exclusive access), and there is a pending 3340Sstevel@tonic-gate * writer that wants exclusive access, return failure 3350Sstevel@tonic-gate */ 3360Sstevel@tonic-gate retval = 0; 3370Sstevel@tonic-gate } else if ((pp->p_selock & ~SE_EWANTED) == 0) { 3380Sstevel@tonic-gate /* no reader/writer lock held */ 3390Sstevel@tonic-gate THREAD_KPRI_REQUEST(); 3400Sstevel@tonic-gate /* this clears our setting of the SE_EWANTED bit */ 3410Sstevel@tonic-gate pp->p_selock = SE_WRITER; 3420Sstevel@tonic-gate retval = 1; 3430Sstevel@tonic-gate } else { 3440Sstevel@tonic-gate /* page is locked */ 345917Selowe if (es & SE_EXCL_WANTED) { 3460Sstevel@tonic-gate /* set the SE_EWANTED bit */ 3470Sstevel@tonic-gate pp->p_selock |= SE_EWANTED; 3480Sstevel@tonic-gate } 3490Sstevel@tonic-gate retval = 0; 3500Sstevel@tonic-gate } 3510Sstevel@tonic-gate } else { 3520Sstevel@tonic-gate retval = 0; 3530Sstevel@tonic-gate if (pp->p_selock >= 0) { 354917Selowe if ((pp->p_selock & SE_EWANTED) == 0) { 3552759Selowe pp->p_selock += SE_READER; 3562759Selowe retval = 1; 3570Sstevel@tonic-gate } 3580Sstevel@tonic-gate } 3590Sstevel@tonic-gate } 3600Sstevel@tonic-gate 3610Sstevel@tonic-gate if (retval == 0) { 3620Sstevel@tonic-gate if ((pp->p_selock & ~SE_EWANTED) == SE_DELETED) { 3630Sstevel@tonic-gate VM_STAT_ADD(page_lock_deleted); 3640Sstevel@tonic-gate mutex_exit(pse); 3650Sstevel@tonic-gate return (retval); 3660Sstevel@tonic-gate } 3670Sstevel@tonic-gate 3680Sstevel@tonic-gate #ifdef VM_STATS 3690Sstevel@tonic-gate VM_STAT_ADD(page_lock_miss); 3700Sstevel@tonic-gate if (upgraded) { 3710Sstevel@tonic-gate VM_STAT_ADD(page_lock_upgrade_failed); 3720Sstevel@tonic-gate } 3730Sstevel@tonic-gate #endif 3740Sstevel@tonic-gate if (lock) { 3750Sstevel@tonic-gate VM_STAT_ADD(page_lock_miss_lock); 3760Sstevel@tonic-gate mutex_exit(lock); 3770Sstevel@tonic-gate } 3780Sstevel@tonic-gate 3790Sstevel@tonic-gate /* 3800Sstevel@tonic-gate * Now, wait for the page to be unlocked and 3810Sstevel@tonic-gate * release the lock protecting p_cv and p_selock. 3820Sstevel@tonic-gate */ 3830Sstevel@tonic-gate cv_wait(&pp->p_cv, pse); 3840Sstevel@tonic-gate mutex_exit(pse); 3850Sstevel@tonic-gate 3860Sstevel@tonic-gate /* 3870Sstevel@tonic-gate * The page identity may have changed while we were 3880Sstevel@tonic-gate * blocked. If we are willing to depend on "pp" 3890Sstevel@tonic-gate * still pointing to a valid page structure (i.e., 3900Sstevel@tonic-gate * assuming page structures are not dynamically allocated 3910Sstevel@tonic-gate * or freed), we could try to lock the page if its 3920Sstevel@tonic-gate * identity hasn't changed. 3930Sstevel@tonic-gate * 3940Sstevel@tonic-gate * This needs to be measured, since we come back from 3950Sstevel@tonic-gate * cv_wait holding pse (the expensive part of this 3960Sstevel@tonic-gate * operation) we might as well try the cheap part. 3970Sstevel@tonic-gate * Though we would also have to confirm that dropping 3980Sstevel@tonic-gate * `lock' did not cause any grief to the callers. 3990Sstevel@tonic-gate */ 4000Sstevel@tonic-gate if (lock) { 4010Sstevel@tonic-gate mutex_enter(lock); 4020Sstevel@tonic-gate } 4030Sstevel@tonic-gate } else { 4040Sstevel@tonic-gate /* 4050Sstevel@tonic-gate * We have the page lock. 4060Sstevel@tonic-gate * If we needed to reclaim the page, and the page 4070Sstevel@tonic-gate * needed reclaiming (ie, it was free), then we 4080Sstevel@tonic-gate * have the page exclusively locked. We may need 4090Sstevel@tonic-gate * to downgrade the page. 4100Sstevel@tonic-gate */ 4110Sstevel@tonic-gate ASSERT((upgraded) ? 4120Sstevel@tonic-gate ((PP_ISFREE(pp)) && PAGE_EXCL(pp)) : 1); 4130Sstevel@tonic-gate mutex_exit(pse); 4140Sstevel@tonic-gate 4150Sstevel@tonic-gate /* 4160Sstevel@tonic-gate * We now hold this page's lock, either shared or 4170Sstevel@tonic-gate * exclusive. This will prevent its identity from changing. 4180Sstevel@tonic-gate * The page, however, may or may not be free. If the caller 4190Sstevel@tonic-gate * requested, and it is free, go reclaim it from the 4200Sstevel@tonic-gate * free list. If the page can't be reclaimed, return failure 4210Sstevel@tonic-gate * so that the caller can start all over again. 4220Sstevel@tonic-gate * 4230Sstevel@tonic-gate * NOTE:page_reclaim() releases the page lock (p_selock) 4240Sstevel@tonic-gate * if it can't be reclaimed. 4250Sstevel@tonic-gate */ 4260Sstevel@tonic-gate if (reclaim_it) { 4270Sstevel@tonic-gate if (!page_reclaim(pp, lock)) { 4280Sstevel@tonic-gate VM_STAT_ADD(page_lock_bad_reclaim); 4290Sstevel@tonic-gate retval = 0; 4300Sstevel@tonic-gate } else { 4310Sstevel@tonic-gate VM_STAT_ADD(page_lock_reclaim); 4320Sstevel@tonic-gate if (upgraded) { 4330Sstevel@tonic-gate page_downgrade(pp); 4340Sstevel@tonic-gate } 4350Sstevel@tonic-gate } 4360Sstevel@tonic-gate } 4370Sstevel@tonic-gate } 4380Sstevel@tonic-gate return (retval); 4390Sstevel@tonic-gate } 4400Sstevel@tonic-gate 4410Sstevel@tonic-gate /* 4420Sstevel@tonic-gate * Clear the SE_EWANTED bit from p_selock. This function allows 4430Sstevel@tonic-gate * callers of page_lock_es and page_try_reclaim_lock to clear 4440Sstevel@tonic-gate * their setting of this bit if they decide they no longer wish 4450Sstevel@tonic-gate * to gain exclusive access to the page. Currently only 4460Sstevel@tonic-gate * delete_memory_thread uses this when the delete memory 4470Sstevel@tonic-gate * operation is cancelled. 4480Sstevel@tonic-gate */ 4490Sstevel@tonic-gate void 4500Sstevel@tonic-gate page_lock_clr_exclwanted(page_t *pp) 4510Sstevel@tonic-gate { 4520Sstevel@tonic-gate kmutex_t *pse = PAGE_SE_MUTEX(pp); 4530Sstevel@tonic-gate 4540Sstevel@tonic-gate mutex_enter(pse); 4550Sstevel@tonic-gate pp->p_selock &= ~SE_EWANTED; 4560Sstevel@tonic-gate if (CV_HAS_WAITERS(&pp->p_cv)) 4570Sstevel@tonic-gate cv_broadcast(&pp->p_cv); 4580Sstevel@tonic-gate mutex_exit(pse); 4590Sstevel@tonic-gate } 4600Sstevel@tonic-gate 4610Sstevel@tonic-gate /* 4620Sstevel@tonic-gate * Read the comments inside of page_lock_es() carefully. 4630Sstevel@tonic-gate * 4640Sstevel@tonic-gate * SE_EXCL callers specifying es == SE_EXCL_WANTED will cause the 4650Sstevel@tonic-gate * SE_EWANTED bit of p_selock to be set when the lock cannot be obtained. 4660Sstevel@tonic-gate * This is used by threads subject to reader-starvation (eg. memory delete). 4670Sstevel@tonic-gate * 4680Sstevel@tonic-gate * When a thread using SE_EXCL_WANTED does not obtain the SE_EXCL lock, 4690Sstevel@tonic-gate * it is expected that it will retry at a later time. Threads that will 4700Sstevel@tonic-gate * not retry the lock *must* call page_lock_clr_exclwanted to clear the 4710Sstevel@tonic-gate * SE_EWANTED bit. (When a thread using SE_EXCL_WANTED obtains the lock, 4720Sstevel@tonic-gate * the bit is cleared.) 4730Sstevel@tonic-gate */ 4740Sstevel@tonic-gate int 4750Sstevel@tonic-gate page_try_reclaim_lock(page_t *pp, se_t se, int es) 4760Sstevel@tonic-gate { 4770Sstevel@tonic-gate kmutex_t *pse = PAGE_SE_MUTEX(pp); 4780Sstevel@tonic-gate selock_t old; 4790Sstevel@tonic-gate 4800Sstevel@tonic-gate mutex_enter(pse); 4810Sstevel@tonic-gate 4820Sstevel@tonic-gate old = pp->p_selock; 4830Sstevel@tonic-gate 4840Sstevel@tonic-gate ASSERT(((es & SE_EXCL_WANTED) == 0) || 485917Selowe ((es & SE_EXCL_WANTED) && (se == SE_EXCL))); 486917Selowe 487917Selowe if (PP_RETIRED(pp) && !(es & SE_RETIRED)) { 488917Selowe mutex_exit(pse); 489917Selowe VM_STAT_ADD(page_trylock_failed); 490917Selowe return (0); 491917Selowe } 4920Sstevel@tonic-gate 4930Sstevel@tonic-gate if (se == SE_SHARED && es == 1 && old == 0) { 4940Sstevel@tonic-gate se = SE_EXCL; 4950Sstevel@tonic-gate } 4960Sstevel@tonic-gate 4970Sstevel@tonic-gate if (se == SE_SHARED) { 4980Sstevel@tonic-gate if (!PP_ISFREE(pp)) { 4990Sstevel@tonic-gate if (old >= 0) { 500917Selowe /* 501917Selowe * Readers are not allowed when excl wanted 502917Selowe */ 503917Selowe if ((old & SE_EWANTED) == 0) { 5042759Selowe pp->p_selock = old + SE_READER; 5052759Selowe mutex_exit(pse); 5062759Selowe return (1); 5070Sstevel@tonic-gate } 5080Sstevel@tonic-gate } 5090Sstevel@tonic-gate mutex_exit(pse); 5100Sstevel@tonic-gate return (0); 5110Sstevel@tonic-gate } 5120Sstevel@tonic-gate /* 5130Sstevel@tonic-gate * The page is free, so we really want SE_EXCL (below) 5140Sstevel@tonic-gate */ 5150Sstevel@tonic-gate VM_STAT_ADD(page_try_reclaim_upgrade); 5160Sstevel@tonic-gate } 5170Sstevel@tonic-gate 5180Sstevel@tonic-gate /* 5190Sstevel@tonic-gate * The caller wants a writer lock. We try for it only if 5200Sstevel@tonic-gate * SE_EWANTED is not set, or if the caller specified 5210Sstevel@tonic-gate * SE_EXCL_WANTED. 5220Sstevel@tonic-gate */ 523917Selowe if (!(old & SE_EWANTED) || (es & SE_EXCL_WANTED)) { 5240Sstevel@tonic-gate if ((old & ~SE_EWANTED) == 0) { 5250Sstevel@tonic-gate /* no reader/writer lock held */ 5260Sstevel@tonic-gate THREAD_KPRI_REQUEST(); 5270Sstevel@tonic-gate /* this clears out our setting of the SE_EWANTED bit */ 5280Sstevel@tonic-gate pp->p_selock = SE_WRITER; 5290Sstevel@tonic-gate mutex_exit(pse); 5300Sstevel@tonic-gate return (1); 5310Sstevel@tonic-gate } 5320Sstevel@tonic-gate } 533917Selowe if (es & SE_EXCL_WANTED) { 5340Sstevel@tonic-gate /* page is locked, set the SE_EWANTED bit */ 5350Sstevel@tonic-gate pp->p_selock |= SE_EWANTED; 5360Sstevel@tonic-gate } 5370Sstevel@tonic-gate mutex_exit(pse); 5380Sstevel@tonic-gate return (0); 5390Sstevel@tonic-gate } 5400Sstevel@tonic-gate 5410Sstevel@tonic-gate /* 5420Sstevel@tonic-gate * Acquire a page's "shared/exclusive" lock, but never block. 5430Sstevel@tonic-gate * Returns 1 on success, 0 on failure. 5440Sstevel@tonic-gate */ 5450Sstevel@tonic-gate int 5460Sstevel@tonic-gate page_trylock(page_t *pp, se_t se) 5470Sstevel@tonic-gate { 5480Sstevel@tonic-gate kmutex_t *pse = PAGE_SE_MUTEX(pp); 5490Sstevel@tonic-gate 5500Sstevel@tonic-gate mutex_enter(pse); 551917Selowe if (pp->p_selock & SE_EWANTED || PP_RETIRED(pp) || 552973Selowe (se == SE_SHARED && PP_PR_NOSHARE(pp))) { 553917Selowe /* 554917Selowe * Fail if a thread wants exclusive access and page is 555917Selowe * retired, if the page is slated for retirement, or a 556917Selowe * share lock is requested. 557917Selowe */ 5580Sstevel@tonic-gate mutex_exit(pse); 559917Selowe VM_STAT_ADD(page_trylock_failed); 5600Sstevel@tonic-gate return (0); 5610Sstevel@tonic-gate } 5620Sstevel@tonic-gate 5630Sstevel@tonic-gate if (se == SE_EXCL) { 5640Sstevel@tonic-gate if (pp->p_selock == 0) { 5650Sstevel@tonic-gate THREAD_KPRI_REQUEST(); 5660Sstevel@tonic-gate pp->p_selock = SE_WRITER; 5670Sstevel@tonic-gate mutex_exit(pse); 5680Sstevel@tonic-gate return (1); 5690Sstevel@tonic-gate } 5700Sstevel@tonic-gate } else { 5710Sstevel@tonic-gate if (pp->p_selock >= 0) { 5720Sstevel@tonic-gate pp->p_selock += SE_READER; 5730Sstevel@tonic-gate mutex_exit(pse); 5740Sstevel@tonic-gate return (1); 5750Sstevel@tonic-gate } 5760Sstevel@tonic-gate } 5770Sstevel@tonic-gate mutex_exit(pse); 5780Sstevel@tonic-gate return (0); 5790Sstevel@tonic-gate } 5800Sstevel@tonic-gate 5810Sstevel@tonic-gate /* 582917Selowe * Variant of page_unlock() specifically for the page freelist 583917Selowe * code. The mere existence of this code is a vile hack that 584917Selowe * has resulted due to the backwards locking order of the page 585917Selowe * freelist manager; please don't call it. 586917Selowe */ 587917Selowe void 588917Selowe page_unlock_noretire(page_t *pp) 589917Selowe { 590917Selowe kmutex_t *pse = PAGE_SE_MUTEX(pp); 591917Selowe selock_t old; 592917Selowe 593917Selowe mutex_enter(pse); 594917Selowe 595917Selowe old = pp->p_selock; 596917Selowe if ((old & ~SE_EWANTED) == SE_READER) { 597917Selowe pp->p_selock = old & ~SE_READER; 598917Selowe if (CV_HAS_WAITERS(&pp->p_cv)) 599917Selowe cv_broadcast(&pp->p_cv); 600917Selowe } else if ((old & ~SE_EWANTED) == SE_DELETED) { 601917Selowe panic("page_unlock_noretire: page %p is deleted", pp); 602917Selowe } else if (old < 0) { 603917Selowe THREAD_KPRI_RELEASE(); 604917Selowe pp->p_selock &= SE_EWANTED; 605917Selowe if (CV_HAS_WAITERS(&pp->p_cv)) 606917Selowe cv_broadcast(&pp->p_cv); 607917Selowe } else if ((old & ~SE_EWANTED) > SE_READER) { 608917Selowe pp->p_selock = old - SE_READER; 609917Selowe } else { 610917Selowe panic("page_unlock_noretire: page %p is not locked", pp); 611917Selowe } 612917Selowe 613917Selowe mutex_exit(pse); 614917Selowe } 615917Selowe 616917Selowe /* 6170Sstevel@tonic-gate * Release the page's "shared/exclusive" lock and wake up anyone 6180Sstevel@tonic-gate * who might be waiting for it. 6190Sstevel@tonic-gate */ 6200Sstevel@tonic-gate void 6210Sstevel@tonic-gate page_unlock(page_t *pp) 6220Sstevel@tonic-gate { 6230Sstevel@tonic-gate kmutex_t *pse = PAGE_SE_MUTEX(pp); 6240Sstevel@tonic-gate selock_t old; 6250Sstevel@tonic-gate 6260Sstevel@tonic-gate mutex_enter(pse); 627917Selowe 6280Sstevel@tonic-gate old = pp->p_selock; 6290Sstevel@tonic-gate if ((old & ~SE_EWANTED) == SE_READER) { 6300Sstevel@tonic-gate pp->p_selock = old & ~SE_READER; 6310Sstevel@tonic-gate if (CV_HAS_WAITERS(&pp->p_cv)) 6320Sstevel@tonic-gate cv_broadcast(&pp->p_cv); 6330Sstevel@tonic-gate } else if ((old & ~SE_EWANTED) == SE_DELETED) { 6340Sstevel@tonic-gate panic("page_unlock: page %p is deleted", pp); 6350Sstevel@tonic-gate } else if (old < 0) { 6360Sstevel@tonic-gate THREAD_KPRI_RELEASE(); 6370Sstevel@tonic-gate pp->p_selock &= SE_EWANTED; 6380Sstevel@tonic-gate if (CV_HAS_WAITERS(&pp->p_cv)) 6390Sstevel@tonic-gate cv_broadcast(&pp->p_cv); 6400Sstevel@tonic-gate } else if ((old & ~SE_EWANTED) > SE_READER) { 6410Sstevel@tonic-gate pp->p_selock = old - SE_READER; 6420Sstevel@tonic-gate } else { 6430Sstevel@tonic-gate panic("page_unlock: page %p is not locked", pp); 6440Sstevel@tonic-gate } 645917Selowe 646917Selowe if (pp->p_selock == 0 && PP_PR_REQ(pp)) { 647917Selowe /* 648917Selowe * Try to retire the page. If it retires, great. 649917Selowe * If not, oh well, we'll get it in the next unlock 650917Selowe * request, and repeat the cycle. Regardless, 651917Selowe * page_tryretire() will drop the page lock. 652917Selowe */ 653917Selowe if ((pp->p_toxic & PR_BUSY) == 0) { 654917Selowe THREAD_KPRI_REQUEST(); 655917Selowe pp->p_selock = SE_WRITER; 656917Selowe page_settoxic(pp, PR_BUSY); 657917Selowe mutex_exit(pse); 658917Selowe page_tryretire(pp); 659917Selowe } else { 660917Selowe pp->p_selock = SE_WRITER; 661917Selowe page_clrtoxic(pp, PR_BUSY); 662917Selowe pp->p_selock = 0; 663917Selowe mutex_exit(pse); 664917Selowe } 665917Selowe } else { 666917Selowe mutex_exit(pse); 667917Selowe } 6680Sstevel@tonic-gate } 6690Sstevel@tonic-gate 6700Sstevel@tonic-gate /* 6710Sstevel@tonic-gate * Try to upgrade the lock on the page from a "shared" to an 6720Sstevel@tonic-gate * "exclusive" lock. Since this upgrade operation is done while 6730Sstevel@tonic-gate * holding the mutex protecting this page, no one else can acquire this page's 6740Sstevel@tonic-gate * lock and change the page. Thus, it is safe to drop the "shared" 6750Sstevel@tonic-gate * lock and attempt to acquire the "exclusive" lock. 6760Sstevel@tonic-gate * 6770Sstevel@tonic-gate * Returns 1 on success, 0 on failure. 6780Sstevel@tonic-gate */ 6790Sstevel@tonic-gate int 6800Sstevel@tonic-gate page_tryupgrade(page_t *pp) 6810Sstevel@tonic-gate { 6820Sstevel@tonic-gate kmutex_t *pse = PAGE_SE_MUTEX(pp); 6830Sstevel@tonic-gate 6840Sstevel@tonic-gate mutex_enter(pse); 6850Sstevel@tonic-gate if (!(pp->p_selock & SE_EWANTED)) { 6860Sstevel@tonic-gate /* no threads want exclusive access, try upgrade */ 6870Sstevel@tonic-gate if (pp->p_selock == SE_READER) { 6880Sstevel@tonic-gate THREAD_KPRI_REQUEST(); 6890Sstevel@tonic-gate /* convert to exclusive lock */ 6900Sstevel@tonic-gate pp->p_selock = SE_WRITER; 6910Sstevel@tonic-gate mutex_exit(pse); 6920Sstevel@tonic-gate return (1); 6930Sstevel@tonic-gate } 6940Sstevel@tonic-gate } 6950Sstevel@tonic-gate mutex_exit(pse); 6960Sstevel@tonic-gate return (0); 6970Sstevel@tonic-gate } 6980Sstevel@tonic-gate 6990Sstevel@tonic-gate /* 7000Sstevel@tonic-gate * Downgrade the "exclusive" lock on the page to a "shared" lock 7010Sstevel@tonic-gate * while holding the mutex protecting this page's p_selock field. 7020Sstevel@tonic-gate */ 7030Sstevel@tonic-gate void 7040Sstevel@tonic-gate page_downgrade(page_t *pp) 7050Sstevel@tonic-gate { 7060Sstevel@tonic-gate kmutex_t *pse = PAGE_SE_MUTEX(pp); 7070Sstevel@tonic-gate int excl_waiting; 7080Sstevel@tonic-gate 7090Sstevel@tonic-gate ASSERT((pp->p_selock & ~SE_EWANTED) != SE_DELETED); 7100Sstevel@tonic-gate ASSERT(PAGE_EXCL(pp)); 7110Sstevel@tonic-gate 7120Sstevel@tonic-gate mutex_enter(pse); 7130Sstevel@tonic-gate excl_waiting = pp->p_selock & SE_EWANTED; 7140Sstevel@tonic-gate THREAD_KPRI_RELEASE(); 7150Sstevel@tonic-gate pp->p_selock = SE_READER | excl_waiting; 7160Sstevel@tonic-gate if (CV_HAS_WAITERS(&pp->p_cv)) 7170Sstevel@tonic-gate cv_broadcast(&pp->p_cv); 7180Sstevel@tonic-gate mutex_exit(pse); 7190Sstevel@tonic-gate } 7200Sstevel@tonic-gate 7210Sstevel@tonic-gate void 7220Sstevel@tonic-gate page_lock_delete(page_t *pp) 7230Sstevel@tonic-gate { 7240Sstevel@tonic-gate kmutex_t *pse = PAGE_SE_MUTEX(pp); 7250Sstevel@tonic-gate 7260Sstevel@tonic-gate ASSERT(PAGE_EXCL(pp)); 7270Sstevel@tonic-gate ASSERT(pp->p_vnode == NULL); 7280Sstevel@tonic-gate ASSERT(pp->p_offset == (u_offset_t)-1); 7290Sstevel@tonic-gate ASSERT(!PP_ISFREE(pp)); 7300Sstevel@tonic-gate 7310Sstevel@tonic-gate mutex_enter(pse); 7320Sstevel@tonic-gate THREAD_KPRI_RELEASE(); 7330Sstevel@tonic-gate pp->p_selock = SE_DELETED; 7340Sstevel@tonic-gate if (CV_HAS_WAITERS(&pp->p_cv)) 7350Sstevel@tonic-gate cv_broadcast(&pp->p_cv); 7360Sstevel@tonic-gate mutex_exit(pse); 7370Sstevel@tonic-gate } 7380Sstevel@tonic-gate 7390Sstevel@tonic-gate /* 7400Sstevel@tonic-gate * Implement the io lock for pages 7410Sstevel@tonic-gate */ 7420Sstevel@tonic-gate void 7430Sstevel@tonic-gate page_iolock_init(page_t *pp) 7440Sstevel@tonic-gate { 7450Sstevel@tonic-gate pp->p_iolock_state = 0; 7460Sstevel@tonic-gate cv_init(&pp->p_io_cv, NULL, CV_DEFAULT, NULL); 7470Sstevel@tonic-gate } 7480Sstevel@tonic-gate 7490Sstevel@tonic-gate /* 7500Sstevel@tonic-gate * Acquire the i/o lock on a page. 7510Sstevel@tonic-gate */ 7520Sstevel@tonic-gate void 7530Sstevel@tonic-gate page_io_lock(page_t *pp) 7540Sstevel@tonic-gate { 7550Sstevel@tonic-gate kmutex_t *pio; 7560Sstevel@tonic-gate 7570Sstevel@tonic-gate pio = PAGE_IO_MUTEX(pp); 7580Sstevel@tonic-gate mutex_enter(pio); 7590Sstevel@tonic-gate while (pp->p_iolock_state & PAGE_IO_INUSE) { 7600Sstevel@tonic-gate cv_wait(&(pp->p_io_cv), pio); 7610Sstevel@tonic-gate } 7620Sstevel@tonic-gate pp->p_iolock_state |= PAGE_IO_INUSE; 7630Sstevel@tonic-gate mutex_exit(pio); 7640Sstevel@tonic-gate } 7650Sstevel@tonic-gate 7660Sstevel@tonic-gate /* 7670Sstevel@tonic-gate * Release the i/o lock on a page. 7680Sstevel@tonic-gate */ 7690Sstevel@tonic-gate void 7700Sstevel@tonic-gate page_io_unlock(page_t *pp) 7710Sstevel@tonic-gate { 7720Sstevel@tonic-gate kmutex_t *pio; 7730Sstevel@tonic-gate 7740Sstevel@tonic-gate pio = PAGE_IO_MUTEX(pp); 7750Sstevel@tonic-gate mutex_enter(pio); 776*2999Sstans cv_broadcast(&pp->p_io_cv); 7770Sstevel@tonic-gate pp->p_iolock_state &= ~PAGE_IO_INUSE; 7780Sstevel@tonic-gate mutex_exit(pio); 7790Sstevel@tonic-gate } 7800Sstevel@tonic-gate 7810Sstevel@tonic-gate /* 7820Sstevel@tonic-gate * Try to acquire the i/o lock on a page without blocking. 7830Sstevel@tonic-gate * Returns 1 on success, 0 on failure. 7840Sstevel@tonic-gate */ 7850Sstevel@tonic-gate int 7860Sstevel@tonic-gate page_io_trylock(page_t *pp) 7870Sstevel@tonic-gate { 7880Sstevel@tonic-gate kmutex_t *pio; 7890Sstevel@tonic-gate 7900Sstevel@tonic-gate if (pp->p_iolock_state & PAGE_IO_INUSE) 7910Sstevel@tonic-gate return (0); 7920Sstevel@tonic-gate 7930Sstevel@tonic-gate pio = PAGE_IO_MUTEX(pp); 7940Sstevel@tonic-gate mutex_enter(pio); 7950Sstevel@tonic-gate 7960Sstevel@tonic-gate if (pp->p_iolock_state & PAGE_IO_INUSE) { 7970Sstevel@tonic-gate mutex_exit(pio); 7980Sstevel@tonic-gate return (0); 7990Sstevel@tonic-gate } 8000Sstevel@tonic-gate pp->p_iolock_state |= PAGE_IO_INUSE; 8010Sstevel@tonic-gate mutex_exit(pio); 8020Sstevel@tonic-gate 8030Sstevel@tonic-gate return (1); 8040Sstevel@tonic-gate } 8050Sstevel@tonic-gate 8060Sstevel@tonic-gate /* 807*2999Sstans * Wait until the i/o lock is not held. 808*2999Sstans */ 809*2999Sstans void 810*2999Sstans page_io_wait(page_t *pp) 811*2999Sstans { 812*2999Sstans kmutex_t *pio; 813*2999Sstans 814*2999Sstans pio = PAGE_IO_MUTEX(pp); 815*2999Sstans mutex_enter(pio); 816*2999Sstans while (pp->p_iolock_state & PAGE_IO_INUSE) { 817*2999Sstans cv_wait(&(pp->p_io_cv), pio); 818*2999Sstans } 819*2999Sstans mutex_exit(pio); 820*2999Sstans } 821*2999Sstans 822*2999Sstans /* 823*2999Sstans * Returns 1 on success, 0 on failure. 824*2999Sstans */ 825*2999Sstans int 826*2999Sstans page_io_locked(page_t *pp) 827*2999Sstans { 828*2999Sstans return (pp->p_iolock_state & PAGE_IO_INUSE); 829*2999Sstans } 830*2999Sstans 831*2999Sstans /* 8320Sstevel@tonic-gate * Assert that the i/o lock on a page is held. 8330Sstevel@tonic-gate * Returns 1 on success, 0 on failure. 8340Sstevel@tonic-gate */ 8350Sstevel@tonic-gate int 8360Sstevel@tonic-gate page_iolock_assert(page_t *pp) 8370Sstevel@tonic-gate { 838*2999Sstans return (page_io_locked(pp)); 8390Sstevel@tonic-gate } 8400Sstevel@tonic-gate 8410Sstevel@tonic-gate /* 8420Sstevel@tonic-gate * Wrapper exported to kernel routines that are built 8430Sstevel@tonic-gate * platform-independent (the macro is platform-dependent; 8440Sstevel@tonic-gate * the size of vph_mutex[] is based on NCPU). 8450Sstevel@tonic-gate * 8460Sstevel@tonic-gate * Note that you can do stress testing on this by setting the 8470Sstevel@tonic-gate * variable page_vnode_mutex_stress to something other than 8480Sstevel@tonic-gate * zero in a DEBUG kernel in a debugger after loading the kernel. 8490Sstevel@tonic-gate * Setting it after the kernel is running may not work correctly. 8500Sstevel@tonic-gate */ 8510Sstevel@tonic-gate #ifdef DEBUG 8520Sstevel@tonic-gate static int page_vnode_mutex_stress = 0; 8530Sstevel@tonic-gate #endif 8540Sstevel@tonic-gate 8550Sstevel@tonic-gate kmutex_t * 8560Sstevel@tonic-gate page_vnode_mutex(vnode_t *vp) 8570Sstevel@tonic-gate { 8580Sstevel@tonic-gate if (vp == &kvp) 8590Sstevel@tonic-gate return (&vph_mutex[VPH_TABLE_SIZE + 0]); 8600Sstevel@tonic-gate #ifdef DEBUG 8610Sstevel@tonic-gate if (page_vnode_mutex_stress != 0) 8620Sstevel@tonic-gate return (&vph_mutex[0]); 8630Sstevel@tonic-gate #endif 8640Sstevel@tonic-gate 8650Sstevel@tonic-gate return (&vph_mutex[VP_HASH_FUNC(vp)]); 8660Sstevel@tonic-gate } 8670Sstevel@tonic-gate 8680Sstevel@tonic-gate kmutex_t * 8690Sstevel@tonic-gate page_se_mutex(page_t *pp) 8700Sstevel@tonic-gate { 8710Sstevel@tonic-gate return (PAGE_SE_MUTEX(pp)); 8720Sstevel@tonic-gate } 8730Sstevel@tonic-gate 8740Sstevel@tonic-gate #ifdef VM_STATS 8750Sstevel@tonic-gate uint_t pszclck_stat[4]; 8760Sstevel@tonic-gate #endif 8770Sstevel@tonic-gate /* 8780Sstevel@tonic-gate * Find, take and return a mutex held by hat_page_demote(). 8790Sstevel@tonic-gate * Called by page_demote_vp_pages() before hat_page_demote() call and by 8800Sstevel@tonic-gate * routines that want to block hat_page_demote() but can't do it 8810Sstevel@tonic-gate * via locking all constituent pages. 8820Sstevel@tonic-gate * 8830Sstevel@tonic-gate * Return NULL if p_szc is 0. 8840Sstevel@tonic-gate * 8850Sstevel@tonic-gate * It should only be used for pages that can be demoted by hat_page_demote() 8860Sstevel@tonic-gate * i.e. non swapfs file system pages. The logic here is lifted from 8870Sstevel@tonic-gate * sfmmu_mlspl_enter() except there's no need to worry about p_szc increase 8880Sstevel@tonic-gate * since the page is locked and not free. 8890Sstevel@tonic-gate * 8900Sstevel@tonic-gate * Hash of the root page is used to find the lock. 8910Sstevel@tonic-gate * To find the root in the presense of hat_page_demote() chageing the location 8920Sstevel@tonic-gate * of the root this routine relies on the fact that hat_page_demote() changes 8930Sstevel@tonic-gate * root last. 8940Sstevel@tonic-gate * 8950Sstevel@tonic-gate * If NULL is returned pp's p_szc is guaranteed to be 0. If non NULL is 8960Sstevel@tonic-gate * returned pp's p_szc may be any value. 8970Sstevel@tonic-gate */ 8980Sstevel@tonic-gate kmutex_t * 8990Sstevel@tonic-gate page_szc_lock(page_t *pp) 9000Sstevel@tonic-gate { 9010Sstevel@tonic-gate kmutex_t *mtx; 9020Sstevel@tonic-gate page_t *rootpp; 9030Sstevel@tonic-gate uint_t szc; 9040Sstevel@tonic-gate uint_t rszc; 9050Sstevel@tonic-gate uint_t pszc = pp->p_szc; 9060Sstevel@tonic-gate 9070Sstevel@tonic-gate ASSERT(pp != NULL); 9080Sstevel@tonic-gate ASSERT(PAGE_LOCKED(pp)); 9090Sstevel@tonic-gate ASSERT(!PP_ISFREE(pp)); 9100Sstevel@tonic-gate ASSERT(pp->p_vnode != NULL); 9110Sstevel@tonic-gate ASSERT(!IS_SWAPFSVP(pp->p_vnode)); 9120Sstevel@tonic-gate ASSERT(pp->p_vnode != &kvp); 9130Sstevel@tonic-gate 9140Sstevel@tonic-gate again: 9150Sstevel@tonic-gate if (pszc == 0) { 9160Sstevel@tonic-gate VM_STAT_ADD(pszclck_stat[0]); 9170Sstevel@tonic-gate return (NULL); 9180Sstevel@tonic-gate } 9190Sstevel@tonic-gate 9200Sstevel@tonic-gate /* The lock lives in the root page */ 9210Sstevel@tonic-gate 9220Sstevel@tonic-gate rootpp = PP_GROUPLEADER(pp, pszc); 9230Sstevel@tonic-gate mtx = PAGE_SZC_MUTEX(rootpp); 9240Sstevel@tonic-gate mutex_enter(mtx); 9250Sstevel@tonic-gate 9260Sstevel@tonic-gate /* 9270Sstevel@tonic-gate * since p_szc can only decrease if pp == rootpp 9280Sstevel@tonic-gate * rootpp will be always the same i.e we have the right root 9290Sstevel@tonic-gate * regardless of rootpp->p_szc. 9300Sstevel@tonic-gate * If location of pp's root didn't change after we took 9310Sstevel@tonic-gate * the lock we have the right root. return mutex hashed off it. 9320Sstevel@tonic-gate */ 9330Sstevel@tonic-gate if (pp == rootpp || (rszc = rootpp->p_szc) == pszc) { 9340Sstevel@tonic-gate VM_STAT_ADD(pszclck_stat[1]); 9350Sstevel@tonic-gate return (mtx); 9360Sstevel@tonic-gate } 9370Sstevel@tonic-gate 9380Sstevel@tonic-gate /* 9390Sstevel@tonic-gate * root location changed because page got demoted. 9400Sstevel@tonic-gate * locate the new root. 9410Sstevel@tonic-gate */ 9420Sstevel@tonic-gate if (rszc < pszc) { 9430Sstevel@tonic-gate szc = pp->p_szc; 9440Sstevel@tonic-gate ASSERT(szc < pszc); 9450Sstevel@tonic-gate mutex_exit(mtx); 9460Sstevel@tonic-gate pszc = szc; 9470Sstevel@tonic-gate VM_STAT_ADD(pszclck_stat[2]); 9480Sstevel@tonic-gate goto again; 9490Sstevel@tonic-gate } 9500Sstevel@tonic-gate 9510Sstevel@tonic-gate VM_STAT_ADD(pszclck_stat[3]); 9520Sstevel@tonic-gate /* 9530Sstevel@tonic-gate * current hat_page_demote not done yet. 9540Sstevel@tonic-gate * wait for it to finish. 9550Sstevel@tonic-gate */ 9560Sstevel@tonic-gate mutex_exit(mtx); 9570Sstevel@tonic-gate rootpp = PP_GROUPLEADER(rootpp, rszc); 9580Sstevel@tonic-gate mtx = PAGE_SZC_MUTEX(rootpp); 9590Sstevel@tonic-gate mutex_enter(mtx); 9600Sstevel@tonic-gate mutex_exit(mtx); 9610Sstevel@tonic-gate ASSERT(rootpp->p_szc < rszc); 9620Sstevel@tonic-gate goto again; 9630Sstevel@tonic-gate } 9640Sstevel@tonic-gate 9650Sstevel@tonic-gate int 9660Sstevel@tonic-gate page_szc_lock_assert(page_t *pp) 9670Sstevel@tonic-gate { 9680Sstevel@tonic-gate page_t *rootpp = PP_PAGEROOT(pp); 9690Sstevel@tonic-gate kmutex_t *mtx = PAGE_SZC_MUTEX(rootpp); 9700Sstevel@tonic-gate 9710Sstevel@tonic-gate return (MUTEX_HELD(mtx)); 9720Sstevel@tonic-gate } 973