5255 uts shouldn't open-code ISP2
[illumos-gate.git] / usr / src / uts / common / vm / seg_map.c
bloba57d202a6afcececf05fb968c6154d2a0468df00
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
22 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
27 /* All Rights Reserved */
30 * Portions of this source code were derived from Berkeley 4.3 BSD
31 * under license from the Regents of the University of California.
35 * VM - generic vnode mapping segment.
37 * The segmap driver is used only by the kernel to get faster (than seg_vn)
38 * mappings [lower routine overhead; more persistent cache] to random
39 * vnode/offsets. Note than the kernel may (and does) use seg_vn as well.
42 #include <sys/types.h>
43 #include <sys/t_lock.h>
44 #include <sys/param.h>
45 #include <sys/sysmacros.h>
46 #include <sys/buf.h>
47 #include <sys/systm.h>
48 #include <sys/vnode.h>
49 #include <sys/mman.h>
50 #include <sys/errno.h>
51 #include <sys/cred.h>
52 #include <sys/kmem.h>
53 #include <sys/vtrace.h>
54 #include <sys/cmn_err.h>
55 #include <sys/debug.h>
56 #include <sys/thread.h>
57 #include <sys/dumphdr.h>
58 #include <sys/bitmap.h>
59 #include <sys/lgrp.h>
61 #include <vm/seg_kmem.h>
62 #include <vm/hat.h>
63 #include <vm/as.h>
64 #include <vm/seg.h>
65 #include <vm/seg_kpm.h>
66 #include <vm/seg_map.h>
67 #include <vm/page.h>
68 #include <vm/pvn.h>
69 #include <vm/rm.h>
72 * Private seg op routines.
74 static void segmap_free(struct seg *seg);
75 faultcode_t segmap_fault(struct hat *hat, struct seg *seg, caddr_t addr,
76 size_t len, enum fault_type type, enum seg_rw rw);
77 static faultcode_t segmap_faulta(struct seg *seg, caddr_t addr);
78 static int segmap_checkprot(struct seg *seg, caddr_t addr, size_t len,
79 uint_t prot);
80 static int segmap_kluster(struct seg *seg, caddr_t addr, ssize_t);
81 static int segmap_getprot(struct seg *seg, caddr_t addr, size_t len,
82 uint_t *protv);
83 static u_offset_t segmap_getoffset(struct seg *seg, caddr_t addr);
84 static int segmap_gettype(struct seg *seg, caddr_t addr);
85 static int segmap_getvp(struct seg *seg, caddr_t addr, struct vnode **vpp);
86 static void segmap_dump(struct seg *seg);
87 static int segmap_pagelock(struct seg *seg, caddr_t addr, size_t len,
88 struct page ***ppp, enum lock_type type,
89 enum seg_rw rw);
90 static void segmap_badop(void);
91 static int segmap_getmemid(struct seg *seg, caddr_t addr, memid_t *memidp);
92 static lgrp_mem_policy_info_t *segmap_getpolicy(struct seg *seg,
93 caddr_t addr);
94 static int segmap_capable(struct seg *seg, segcapability_t capability);
96 /* segkpm support */
97 static caddr_t segmap_pagecreate_kpm(struct seg *, vnode_t *, u_offset_t,
98 struct smap *, enum seg_rw);
99 struct smap *get_smap_kpm(caddr_t, page_t **);
101 #define SEGMAP_BADOP(t) (t(*)())segmap_badop
103 static struct seg_ops segmap_ops = {
104 SEGMAP_BADOP(int), /* dup */
105 SEGMAP_BADOP(int), /* unmap */
106 segmap_free,
107 segmap_fault,
108 segmap_faulta,
109 SEGMAP_BADOP(int), /* setprot */
110 segmap_checkprot,
111 segmap_kluster,
112 SEGMAP_BADOP(size_t), /* swapout */
113 SEGMAP_BADOP(int), /* sync */
114 SEGMAP_BADOP(size_t), /* incore */
115 SEGMAP_BADOP(int), /* lockop */
116 segmap_getprot,
117 segmap_getoffset,
118 segmap_gettype,
119 segmap_getvp,
120 SEGMAP_BADOP(int), /* advise */
121 segmap_dump,
122 segmap_pagelock, /* pagelock */
123 SEGMAP_BADOP(int), /* setpgsz */
124 segmap_getmemid, /* getmemid */
125 segmap_getpolicy, /* getpolicy */
126 segmap_capable, /* capable */
130 * Private segmap routines.
132 static void segmap_unlock(struct hat *hat, struct seg *seg, caddr_t addr,
133 size_t len, enum seg_rw rw, struct smap *smp);
134 static void segmap_smapadd(struct smap *smp);
135 static struct smap *segmap_hashin(struct smap *smp, struct vnode *vp,
136 u_offset_t off, int hashid);
137 static void segmap_hashout(struct smap *smp);
141 * Statistics for segmap operations.
143 * No explicit locking to protect these stats.
145 struct segmapcnt segmapcnt = {
146 { "fault", KSTAT_DATA_ULONG },
147 { "faulta", KSTAT_DATA_ULONG },
148 { "getmap", KSTAT_DATA_ULONG },
149 { "get_use", KSTAT_DATA_ULONG },
150 { "get_reclaim", KSTAT_DATA_ULONG },
151 { "get_reuse", KSTAT_DATA_ULONG },
152 { "get_unused", KSTAT_DATA_ULONG },
153 { "get_nofree", KSTAT_DATA_ULONG },
154 { "rel_async", KSTAT_DATA_ULONG },
155 { "rel_write", KSTAT_DATA_ULONG },
156 { "rel_free", KSTAT_DATA_ULONG },
157 { "rel_abort", KSTAT_DATA_ULONG },
158 { "rel_dontneed", KSTAT_DATA_ULONG },
159 { "release", KSTAT_DATA_ULONG },
160 { "pagecreate", KSTAT_DATA_ULONG },
161 { "free_notfree", KSTAT_DATA_ULONG },
162 { "free_dirty", KSTAT_DATA_ULONG },
163 { "free", KSTAT_DATA_ULONG },
164 { "stolen", KSTAT_DATA_ULONG },
165 { "get_nomtx", KSTAT_DATA_ULONG }
168 kstat_named_t *segmapcnt_ptr = (kstat_named_t *)&segmapcnt;
169 uint_t segmapcnt_ndata = sizeof (segmapcnt) / sizeof (kstat_named_t);
172 * Return number of map pages in segment.
174 #define MAP_PAGES(seg) ((seg)->s_size >> MAXBSHIFT)
177 * Translate addr into smap number within segment.
179 #define MAP_PAGE(seg, addr) (((addr) - (seg)->s_base) >> MAXBSHIFT)
182 * Translate addr in seg into struct smap pointer.
184 #define GET_SMAP(seg, addr) \
185 &(((struct segmap_data *)((seg)->s_data))->smd_sm[MAP_PAGE(seg, addr)])
188 * Bit in map (16 bit bitmap).
190 #define SMAP_BIT_MASK(bitindex) (1 << ((bitindex) & 0xf))
192 static int smd_colormsk = 0;
193 static int smd_ncolor = 0;
194 static int smd_nfree = 0;
195 static int smd_freemsk = 0;
196 #ifdef DEBUG
197 static int *colors_used;
198 #endif
199 static struct smap *smd_smap;
200 static struct smaphash *smd_hash;
201 #ifdef SEGMAP_HASHSTATS
202 static unsigned int *smd_hash_len;
203 #endif
204 static struct smfree *smd_free;
205 static ulong_t smd_hashmsk = 0;
207 #define SEGMAP_MAXCOLOR 2
208 #define SEGMAP_CACHE_PAD 64
210 union segmap_cpu {
211 struct {
212 uint32_t scpu_free_ndx[SEGMAP_MAXCOLOR];
213 struct smap *scpu_last_smap;
214 ulong_t scpu_getmap;
215 ulong_t scpu_release;
216 ulong_t scpu_get_reclaim;
217 ulong_t scpu_fault;
218 ulong_t scpu_pagecreate;
219 ulong_t scpu_get_reuse;
220 } scpu;
221 char scpu_pad[SEGMAP_CACHE_PAD];
223 static union segmap_cpu *smd_cpu;
226 * There are three locks in seg_map:
227 * - per freelist mutexes
228 * - per hashchain mutexes
229 * - per smap mutexes
231 * The lock ordering is to get the smap mutex to lock down the slot
232 * first then the hash lock (for hash in/out (vp, off) list) or the
233 * freelist lock to put the slot back on the free list.
235 * The hash search is done by only holding the hashchain lock, when a wanted
236 * slot is found, we drop the hashchain lock then lock the slot so there
237 * is no overlapping of hashchain and smap locks. After the slot is
238 * locked, we verify again if the slot is still what we are looking
239 * for.
241 * Allocation of a free slot is done by holding the freelist lock,
242 * then locking the smap slot at the head of the freelist. This is
243 * in reversed lock order so mutex_tryenter() is used.
245 * The smap lock protects all fields in smap structure except for
246 * the link fields for hash/free lists which are protected by
247 * hashchain and freelist locks.
250 #define SHASHMTX(hashid) (&smd_hash[hashid].sh_mtx)
252 #define SMP2SMF(smp) (&smd_free[(smp - smd_smap) & smd_freemsk])
253 #define SMP2SMF_NDX(smp) (ushort_t)((smp - smd_smap) & smd_freemsk)
255 #define SMAPMTX(smp) (&smp->sm_mtx)
257 #define SMAP_HASHFUNC(vp, off, hashid) \
259 hashid = ((((uintptr_t)(vp) >> 6) + ((uintptr_t)(vp) >> 3) + \
260 ((off) >> MAXBSHIFT)) & smd_hashmsk); \
264 * The most frequently updated kstat counters are kept in the
265 * per cpu array to avoid hot cache blocks. The update function
266 * sums the cpu local counters to update the global counters.
269 /* ARGSUSED */
271 segmap_kstat_update(kstat_t *ksp, int rw)
273 int i;
274 ulong_t getmap, release, get_reclaim;
275 ulong_t fault, pagecreate, get_reuse;
277 if (rw == KSTAT_WRITE)
278 return (EACCES);
279 getmap = release = get_reclaim = (ulong_t)0;
280 fault = pagecreate = get_reuse = (ulong_t)0;
281 for (i = 0; i < max_ncpus; i++) {
282 getmap += smd_cpu[i].scpu.scpu_getmap;
283 release += smd_cpu[i].scpu.scpu_release;
284 get_reclaim += smd_cpu[i].scpu.scpu_get_reclaim;
285 fault += smd_cpu[i].scpu.scpu_fault;
286 pagecreate += smd_cpu[i].scpu.scpu_pagecreate;
287 get_reuse += smd_cpu[i].scpu.scpu_get_reuse;
289 segmapcnt.smp_getmap.value.ul = getmap;
290 segmapcnt.smp_release.value.ul = release;
291 segmapcnt.smp_get_reclaim.value.ul = get_reclaim;
292 segmapcnt.smp_fault.value.ul = fault;
293 segmapcnt.smp_pagecreate.value.ul = pagecreate;
294 segmapcnt.smp_get_reuse.value.ul = get_reuse;
295 return (0);
299 segmap_create(struct seg *seg, void *argsp)
301 struct segmap_data *smd;
302 struct smap *smp;
303 struct smfree *sm;
304 struct segmap_crargs *a = (struct segmap_crargs *)argsp;
305 struct smaphash *shashp;
306 union segmap_cpu *scpu;
307 long i, npages;
308 size_t hashsz;
309 uint_t nfreelist;
310 extern void prefetch_smap_w(void *);
311 extern int max_ncpus;
313 ASSERT(seg->s_as && RW_WRITE_HELD(&seg->s_as->a_lock));
315 if (((uintptr_t)seg->s_base | seg->s_size) & MAXBOFFSET) {
316 panic("segkmap not MAXBSIZE aligned");
317 /*NOTREACHED*/
320 smd = kmem_zalloc(sizeof (struct segmap_data), KM_SLEEP);
322 seg->s_data = (void *)smd;
323 seg->s_ops = &segmap_ops;
324 smd->smd_prot = a->prot;
327 * Scale the number of smap freelists to be
328 * proportional to max_ncpus * number of virtual colors.
329 * The caller can over-ride this scaling by providing
330 * a non-zero a->nfreelist argument.
332 nfreelist = a->nfreelist;
333 if (nfreelist == 0)
334 nfreelist = max_ncpus;
335 else if (nfreelist < 0 || nfreelist > 4 * max_ncpus) {
336 cmn_err(CE_WARN, "segmap_create: nfreelist out of range "
337 "%d, using %d", nfreelist, max_ncpus);
338 nfreelist = max_ncpus;
340 if (!ISP2(nfreelist)) {
341 /* round up nfreelist to the next power of two. */
342 nfreelist = 1 << (highbit(nfreelist));
346 * Get the number of virtual colors - must be a power of 2.
348 if (a->shmsize)
349 smd_ncolor = a->shmsize >> MAXBSHIFT;
350 else
351 smd_ncolor = 1;
352 ASSERT((smd_ncolor & (smd_ncolor - 1)) == 0);
353 ASSERT(smd_ncolor <= SEGMAP_MAXCOLOR);
354 smd_colormsk = smd_ncolor - 1;
355 smd->smd_nfree = smd_nfree = smd_ncolor * nfreelist;
356 smd_freemsk = smd_nfree - 1;
359 * Allocate and initialize the freelist headers.
360 * Note that sm_freeq[1] starts out as the release queue. This
361 * is known when the smap structures are initialized below.
363 smd_free = smd->smd_free =
364 kmem_zalloc(smd_nfree * sizeof (struct smfree), KM_SLEEP);
365 for (i = 0; i < smd_nfree; i++) {
366 sm = &smd->smd_free[i];
367 mutex_init(&sm->sm_freeq[0].smq_mtx, NULL, MUTEX_DEFAULT, NULL);
368 mutex_init(&sm->sm_freeq[1].smq_mtx, NULL, MUTEX_DEFAULT, NULL);
369 sm->sm_allocq = &sm->sm_freeq[0];
370 sm->sm_releq = &sm->sm_freeq[1];
374 * Allocate and initialize the smap hash chain headers.
375 * Compute hash size rounding down to the next power of two.
377 npages = MAP_PAGES(seg);
378 smd->smd_npages = npages;
379 hashsz = npages / SMAP_HASHAVELEN;
380 hashsz = 1 << (highbit(hashsz)-1);
381 smd_hashmsk = hashsz - 1;
382 smd_hash = smd->smd_hash =
383 kmem_alloc(hashsz * sizeof (struct smaphash), KM_SLEEP);
384 #ifdef SEGMAP_HASHSTATS
385 smd_hash_len =
386 kmem_zalloc(hashsz * sizeof (unsigned int), KM_SLEEP);
387 #endif
388 for (i = 0, shashp = smd_hash; i < hashsz; i++, shashp++) {
389 shashp->sh_hash_list = NULL;
390 mutex_init(&shashp->sh_mtx, NULL, MUTEX_DEFAULT, NULL);
394 * Allocate and initialize the smap structures.
395 * Link all slots onto the appropriate freelist.
396 * The smap array is large enough to affect boot time
397 * on large systems, so use memory prefetching and only
398 * go through the array 1 time. Inline a optimized version
399 * of segmap_smapadd to add structures to freelists with
400 * knowledge that no locks are needed here.
402 smd_smap = smd->smd_sm =
403 kmem_alloc(sizeof (struct smap) * npages, KM_SLEEP);
405 for (smp = &smd->smd_sm[MAP_PAGES(seg) - 1];
406 smp >= smd->smd_sm; smp--) {
407 struct smap *smpfreelist;
408 struct sm_freeq *releq;
410 prefetch_smap_w((char *)smp);
412 smp->sm_vp = NULL;
413 smp->sm_hash = NULL;
414 smp->sm_off = 0;
415 smp->sm_bitmap = 0;
416 smp->sm_refcnt = 0;
417 mutex_init(&smp->sm_mtx, NULL, MUTEX_DEFAULT, NULL);
418 smp->sm_free_ndx = SMP2SMF_NDX(smp);
420 sm = SMP2SMF(smp);
421 releq = sm->sm_releq;
423 smpfreelist = releq->smq_free;
424 if (smpfreelist == 0) {
425 releq->smq_free = smp->sm_next = smp->sm_prev = smp;
426 } else {
427 smp->sm_next = smpfreelist;
428 smp->sm_prev = smpfreelist->sm_prev;
429 smpfreelist->sm_prev = smp;
430 smp->sm_prev->sm_next = smp;
431 releq->smq_free = smp->sm_next;
435 * sm_flag = 0 (no SM_QNDX_ZERO) implies smap on sm_freeq[1]
437 smp->sm_flags = 0;
439 #ifdef SEGKPM_SUPPORT
441 * Due to the fragile prefetch loop no
442 * separate function is used here.
444 smp->sm_kpme_next = NULL;
445 smp->sm_kpme_prev = NULL;
446 smp->sm_kpme_page = NULL;
447 #endif
451 * Allocate the per color indices that distribute allocation
452 * requests over the free lists. Each cpu will have a private
453 * rotor index to spread the allocations even across the available
454 * smap freelists. Init the scpu_last_smap field to the first
455 * smap element so there is no need to check for NULL.
457 smd_cpu =
458 kmem_zalloc(sizeof (union segmap_cpu) * max_ncpus, KM_SLEEP);
459 for (i = 0, scpu = smd_cpu; i < max_ncpus; i++, scpu++) {
460 int j;
461 for (j = 0; j < smd_ncolor; j++)
462 scpu->scpu.scpu_free_ndx[j] = j;
463 scpu->scpu.scpu_last_smap = smd_smap;
466 vpm_init();
468 #ifdef DEBUG
470 * Keep track of which colors are used more often.
472 colors_used = kmem_zalloc(smd_nfree * sizeof (int), KM_SLEEP);
473 #endif /* DEBUG */
475 return (0);
478 static void
479 segmap_free(seg)
480 struct seg *seg;
482 ASSERT(seg->s_as && RW_WRITE_HELD(&seg->s_as->a_lock));
486 * Do a F_SOFTUNLOCK call over the range requested.
487 * The range must have already been F_SOFTLOCK'ed.
489 static void
490 segmap_unlock(
491 struct hat *hat,
492 struct seg *seg,
493 caddr_t addr,
494 size_t len,
495 enum seg_rw rw,
496 struct smap *smp)
498 page_t *pp;
499 caddr_t adr;
500 u_offset_t off;
501 struct vnode *vp;
502 kmutex_t *smtx;
504 ASSERT(smp->sm_refcnt > 0);
506 #ifdef lint
507 seg = seg;
508 #endif
510 if (segmap_kpm && IS_KPM_ADDR(addr)) {
513 * We're called only from segmap_fault and this was a
514 * NOP in case of a kpm based smap, so dangerous things
515 * must have happened in the meantime. Pages are prefaulted
516 * and locked in segmap_getmapflt and they will not be
517 * unlocked until segmap_release.
519 panic("segmap_unlock: called with kpm addr %p", (void *)addr);
520 /*NOTREACHED*/
523 vp = smp->sm_vp;
524 off = smp->sm_off + (u_offset_t)((uintptr_t)addr & MAXBOFFSET);
526 hat_unlock(hat, addr, P2ROUNDUP(len, PAGESIZE));
527 for (adr = addr; adr < addr + len; adr += PAGESIZE, off += PAGESIZE) {
528 ushort_t bitmask;
531 * Use page_find() instead of page_lookup() to
532 * find the page since we know that it has
533 * "shared" lock.
535 pp = page_find(vp, off);
536 if (pp == NULL) {
537 panic("segmap_unlock: page not found");
538 /*NOTREACHED*/
541 if (rw == S_WRITE) {
542 hat_setrefmod(pp);
543 } else if (rw != S_OTHER) {
544 TRACE_3(TR_FAC_VM, TR_SEGMAP_FAULT,
545 "segmap_fault:pp %p vp %p offset %llx", pp, vp, off);
546 hat_setref(pp);
550 * Clear bitmap, if the bit corresponding to "off" is set,
551 * since the page and translation are being unlocked.
553 bitmask = SMAP_BIT_MASK((off - smp->sm_off) >> PAGESHIFT);
556 * Large Files: Following assertion is to verify
557 * the correctness of the cast to (int) above.
559 ASSERT((u_offset_t)(off - smp->sm_off) <= INT_MAX);
560 smtx = SMAPMTX(smp);
561 mutex_enter(smtx);
562 if (smp->sm_bitmap & bitmask) {
563 smp->sm_bitmap &= ~bitmask;
565 mutex_exit(smtx);
567 page_unlock(pp);
571 #define MAXPPB (MAXBSIZE/4096) /* assumes minimum page size of 4k */
574 * This routine is called via a machine specific fault handling
575 * routine. It is also called by software routines wishing to
576 * lock or unlock a range of addresses.
578 * Note that this routine expects a page-aligned "addr".
580 faultcode_t
581 segmap_fault(
582 struct hat *hat,
583 struct seg *seg,
584 caddr_t addr,
585 size_t len,
586 enum fault_type type,
587 enum seg_rw rw)
589 struct segmap_data *smd = (struct segmap_data *)seg->s_data;
590 struct smap *smp;
591 page_t *pp, **ppp;
592 struct vnode *vp;
593 u_offset_t off;
594 page_t *pl[MAXPPB + 1];
595 uint_t prot;
596 u_offset_t addroff;
597 caddr_t adr;
598 int err;
599 u_offset_t sm_off;
600 int hat_flag;
602 if (segmap_kpm && IS_KPM_ADDR(addr)) {
603 int newpage;
604 kmutex_t *smtx;
607 * Pages are successfully prefaulted and locked in
608 * segmap_getmapflt and can't be unlocked until
609 * segmap_release. No hat mappings have to be locked
610 * and they also can't be unlocked as long as the
611 * caller owns an active kpm addr.
613 #ifndef DEBUG
614 if (type != F_SOFTUNLOCK)
615 return (0);
616 #endif
618 if ((smp = get_smap_kpm(addr, NULL)) == NULL) {
619 panic("segmap_fault: smap not found "
620 "for addr %p", (void *)addr);
621 /*NOTREACHED*/
624 smtx = SMAPMTX(smp);
625 #ifdef DEBUG
626 newpage = smp->sm_flags & SM_KPM_NEWPAGE;
627 if (newpage) {
628 cmn_err(CE_WARN, "segmap_fault: newpage? smp %p",
629 (void *)smp);
632 if (type != F_SOFTUNLOCK) {
633 mutex_exit(smtx);
634 return (0);
636 #endif
637 mutex_exit(smtx);
638 vp = smp->sm_vp;
639 sm_off = smp->sm_off;
641 if (vp == NULL)
642 return (FC_MAKE_ERR(EIO));
644 ASSERT(smp->sm_refcnt > 0);
646 addroff = (u_offset_t)((uintptr_t)addr & MAXBOFFSET);
647 if (addroff + len > MAXBSIZE)
648 panic("segmap_fault: endaddr %p exceeds MAXBSIZE chunk",
649 (void *)(addr + len));
651 off = sm_off + addroff;
653 pp = page_find(vp, off);
655 if (pp == NULL)
656 panic("segmap_fault: softunlock page not found");
659 * Set ref bit also here in case of S_OTHER to avoid the
660 * overhead of supporting other cases than F_SOFTUNLOCK
661 * with segkpm. We can do this because the underlying
662 * pages are locked anyway.
664 if (rw == S_WRITE) {
665 hat_setrefmod(pp);
666 } else {
667 TRACE_3(TR_FAC_VM, TR_SEGMAP_FAULT,
668 "segmap_fault:pp %p vp %p offset %llx",
669 pp, vp, off);
670 hat_setref(pp);
673 return (0);
676 smd_cpu[CPU->cpu_seqid].scpu.scpu_fault++;
677 smp = GET_SMAP(seg, addr);
678 vp = smp->sm_vp;
679 sm_off = smp->sm_off;
681 if (vp == NULL)
682 return (FC_MAKE_ERR(EIO));
684 ASSERT(smp->sm_refcnt > 0);
686 addroff = (u_offset_t)((uintptr_t)addr & MAXBOFFSET);
687 if (addroff + len > MAXBSIZE) {
688 panic("segmap_fault: endaddr %p "
689 "exceeds MAXBSIZE chunk", (void *)(addr + len));
690 /*NOTREACHED*/
692 off = sm_off + addroff;
695 * First handle the easy stuff
697 if (type == F_SOFTUNLOCK) {
698 segmap_unlock(hat, seg, addr, len, rw, smp);
699 return (0);
702 TRACE_3(TR_FAC_VM, TR_SEGMAP_GETPAGE,
703 "segmap_getpage:seg %p addr %p vp %p", seg, addr, vp);
704 err = VOP_GETPAGE(vp, (offset_t)off, len, &prot, pl, MAXBSIZE,
705 seg, addr, rw, CRED(), NULL);
707 if (err)
708 return (FC_MAKE_ERR(err));
710 prot &= smd->smd_prot;
713 * Handle all pages returned in the pl[] array.
714 * This loop is coded on the assumption that if
715 * there was no error from the VOP_GETPAGE routine,
716 * that the page list returned will contain all the
717 * needed pages for the vp from [off..off + len].
719 ppp = pl;
720 while ((pp = *ppp++) != NULL) {
721 u_offset_t poff;
722 ASSERT(pp->p_vnode == vp);
723 hat_flag = HAT_LOAD;
726 * Verify that the pages returned are within the range
727 * of this segmap region. Note that it is theoretically
728 * possible for pages outside this range to be returned,
729 * but it is not very likely. If we cannot use the
730 * page here, just release it and go on to the next one.
732 if (pp->p_offset < sm_off ||
733 pp->p_offset >= sm_off + MAXBSIZE) {
734 (void) page_release(pp, 1);
735 continue;
738 ASSERT(hat == kas.a_hat);
739 poff = pp->p_offset;
740 adr = addr + (poff - off);
741 if (adr >= addr && adr < addr + len) {
742 hat_setref(pp);
743 TRACE_3(TR_FAC_VM, TR_SEGMAP_FAULT,
744 "segmap_fault:pp %p vp %p offset %llx",
745 pp, vp, poff);
746 if (type == F_SOFTLOCK)
747 hat_flag = HAT_LOAD_LOCK;
751 * Deal with VMODSORT pages here. If we know this is a write
752 * do the setmod now and allow write protection.
753 * As long as it's modified or not S_OTHER, remove write
754 * protection. With S_OTHER it's up to the FS to deal with this.
756 if (IS_VMODSORT(vp)) {
757 if (rw == S_WRITE)
758 hat_setmod(pp);
759 else if (rw != S_OTHER && !hat_ismod(pp))
760 prot &= ~PROT_WRITE;
763 hat_memload(hat, adr, pp, prot, hat_flag);
764 if (hat_flag != HAT_LOAD_LOCK)
765 page_unlock(pp);
767 return (0);
771 * This routine is used to start I/O on pages asynchronously.
773 static faultcode_t
774 segmap_faulta(struct seg *seg, caddr_t addr)
776 struct smap *smp;
777 struct vnode *vp;
778 u_offset_t off;
779 int err;
781 if (segmap_kpm && IS_KPM_ADDR(addr)) {
782 int newpage;
783 kmutex_t *smtx;
786 * Pages are successfully prefaulted and locked in
787 * segmap_getmapflt and can't be unlocked until
788 * segmap_release. No hat mappings have to be locked
789 * and they also can't be unlocked as long as the
790 * caller owns an active kpm addr.
792 #ifdef DEBUG
793 if ((smp = get_smap_kpm(addr, NULL)) == NULL) {
794 panic("segmap_faulta: smap not found "
795 "for addr %p", (void *)addr);
796 /*NOTREACHED*/
799 smtx = SMAPMTX(smp);
800 newpage = smp->sm_flags & SM_KPM_NEWPAGE;
801 mutex_exit(smtx);
802 if (newpage)
803 cmn_err(CE_WARN, "segmap_faulta: newpage? smp %p",
804 (void *)smp);
805 #endif
806 return (0);
809 segmapcnt.smp_faulta.value.ul++;
810 smp = GET_SMAP(seg, addr);
812 ASSERT(smp->sm_refcnt > 0);
814 vp = smp->sm_vp;
815 off = smp->sm_off;
817 if (vp == NULL) {
818 cmn_err(CE_WARN, "segmap_faulta - no vp");
819 return (FC_MAKE_ERR(EIO));
822 TRACE_3(TR_FAC_VM, TR_SEGMAP_GETPAGE,
823 "segmap_getpage:seg %p addr %p vp %p", seg, addr, vp);
825 err = VOP_GETPAGE(vp, (offset_t)(off + ((offset_t)((uintptr_t)addr
826 & MAXBOFFSET))), PAGESIZE, (uint_t *)NULL, (page_t **)NULL, 0,
827 seg, addr, S_READ, CRED(), NULL);
829 if (err)
830 return (FC_MAKE_ERR(err));
831 return (0);
834 /*ARGSUSED*/
835 static int
836 segmap_checkprot(struct seg *seg, caddr_t addr, size_t len, uint_t prot)
838 struct segmap_data *smd = (struct segmap_data *)seg->s_data;
840 ASSERT(seg->s_as && RW_LOCK_HELD(&seg->s_as->a_lock));
843 * Need not acquire the segment lock since
844 * "smd_prot" is a read-only field.
846 return (((smd->smd_prot & prot) != prot) ? EACCES : 0);
849 static int
850 segmap_getprot(struct seg *seg, caddr_t addr, size_t len, uint_t *protv)
852 struct segmap_data *smd = (struct segmap_data *)seg->s_data;
853 size_t pgno = seg_page(seg, addr + len) - seg_page(seg, addr) + 1;
855 ASSERT(seg->s_as && AS_LOCK_HELD(seg->s_as, &seg->s_as->a_lock));
857 if (pgno != 0) {
858 do {
859 protv[--pgno] = smd->smd_prot;
860 } while (pgno != 0);
862 return (0);
865 static u_offset_t
866 segmap_getoffset(struct seg *seg, caddr_t addr)
868 struct segmap_data *smd = (struct segmap_data *)seg->s_data;
870 ASSERT(seg->s_as && RW_READ_HELD(&seg->s_as->a_lock));
872 return ((u_offset_t)smd->smd_sm->sm_off + (addr - seg->s_base));
875 /*ARGSUSED*/
876 static int
877 segmap_gettype(struct seg *seg, caddr_t addr)
879 ASSERT(seg->s_as && RW_READ_HELD(&seg->s_as->a_lock));
881 return (MAP_SHARED);
884 /*ARGSUSED*/
885 static int
886 segmap_getvp(struct seg *seg, caddr_t addr, struct vnode **vpp)
888 struct segmap_data *smd = (struct segmap_data *)seg->s_data;
890 ASSERT(seg->s_as && RW_READ_HELD(&seg->s_as->a_lock));
892 /* XXX - This doesn't make any sense */
893 *vpp = smd->smd_sm->sm_vp;
894 return (0);
898 * Check to see if it makes sense to do kluster/read ahead to
899 * addr + delta relative to the mapping at addr. We assume here
900 * that delta is a signed PAGESIZE'd multiple (which can be negative).
902 * For segmap we always "approve" of this action from our standpoint.
904 /*ARGSUSED*/
905 static int
906 segmap_kluster(struct seg *seg, caddr_t addr, ssize_t delta)
908 return (0);
911 static void
912 segmap_badop()
914 panic("segmap_badop");
915 /*NOTREACHED*/
919 * Special private segmap operations
923 * Add smap to the appropriate free list.
925 static void
926 segmap_smapadd(struct smap *smp)
928 struct smfree *sm;
929 struct smap *smpfreelist;
930 struct sm_freeq *releq;
932 ASSERT(MUTEX_HELD(SMAPMTX(smp)));
934 if (smp->sm_refcnt != 0) {
935 panic("segmap_smapadd");
936 /*NOTREACHED*/
939 sm = &smd_free[smp->sm_free_ndx];
941 * Add to the tail of the release queue
942 * Note that sm_releq and sm_allocq could toggle
943 * before we get the lock. This does not affect
944 * correctness as the 2 queues are only maintained
945 * to reduce lock pressure.
947 releq = sm->sm_releq;
948 if (releq == &sm->sm_freeq[0])
949 smp->sm_flags |= SM_QNDX_ZERO;
950 else
951 smp->sm_flags &= ~SM_QNDX_ZERO;
952 mutex_enter(&releq->smq_mtx);
953 smpfreelist = releq->smq_free;
954 if (smpfreelist == 0) {
955 int want;
957 releq->smq_free = smp->sm_next = smp->sm_prev = smp;
959 * Both queue mutexes held to set sm_want;
960 * snapshot the value before dropping releq mutex.
961 * If sm_want appears after the releq mutex is dropped,
962 * then the smap just freed is already gone.
964 want = sm->sm_want;
965 mutex_exit(&releq->smq_mtx);
967 * See if there was a waiter before dropping the releq mutex
968 * then recheck after obtaining sm_freeq[0] mutex as
969 * the another thread may have already signaled.
971 if (want) {
972 mutex_enter(&sm->sm_freeq[0].smq_mtx);
973 if (sm->sm_want)
974 cv_signal(&sm->sm_free_cv);
975 mutex_exit(&sm->sm_freeq[0].smq_mtx);
977 } else {
978 smp->sm_next = smpfreelist;
979 smp->sm_prev = smpfreelist->sm_prev;
980 smpfreelist->sm_prev = smp;
981 smp->sm_prev->sm_next = smp;
982 mutex_exit(&releq->smq_mtx);
987 static struct smap *
988 segmap_hashin(struct smap *smp, struct vnode *vp, u_offset_t off, int hashid)
990 struct smap **hpp;
991 struct smap *tmp;
992 kmutex_t *hmtx;
994 ASSERT(MUTEX_HELD(SMAPMTX(smp)));
995 ASSERT(smp->sm_vp == NULL);
996 ASSERT(smp->sm_hash == NULL);
997 ASSERT(smp->sm_prev == NULL);
998 ASSERT(smp->sm_next == NULL);
999 ASSERT(hashid >= 0 && hashid <= smd_hashmsk);
1001 hmtx = SHASHMTX(hashid);
1003 mutex_enter(hmtx);
1005 * First we need to verify that no one has created a smp
1006 * with (vp,off) as its tag before we us.
1008 for (tmp = smd_hash[hashid].sh_hash_list;
1009 tmp != NULL; tmp = tmp->sm_hash)
1010 if (tmp->sm_vp == vp && tmp->sm_off == off)
1011 break;
1013 if (tmp == NULL) {
1015 * No one created one yet.
1017 * Funniness here - we don't increment the ref count on the
1018 * vnode * even though we have another pointer to it here.
1019 * The reason for this is that we don't want the fact that
1020 * a seg_map entry somewhere refers to a vnode to prevent the
1021 * vnode * itself from going away. This is because this
1022 * reference to the vnode is a "soft one". In the case where
1023 * a mapping is being used by a rdwr [or directory routine?]
1024 * there already has to be a non-zero ref count on the vnode.
1025 * In the case where the vp has been freed and the the smap
1026 * structure is on the free list, there are no pages in memory
1027 * that can refer to the vnode. Thus even if we reuse the same
1028 * vnode/smap structure for a vnode which has the same
1029 * address but represents a different object, we are ok.
1031 smp->sm_vp = vp;
1032 smp->sm_off = off;
1034 hpp = &smd_hash[hashid].sh_hash_list;
1035 smp->sm_hash = *hpp;
1036 *hpp = smp;
1037 #ifdef SEGMAP_HASHSTATS
1038 smd_hash_len[hashid]++;
1039 #endif
1041 mutex_exit(hmtx);
1043 return (tmp);
1046 static void
1047 segmap_hashout(struct smap *smp)
1049 struct smap **hpp, *hp;
1050 struct vnode *vp;
1051 kmutex_t *mtx;
1052 int hashid;
1053 u_offset_t off;
1055 ASSERT(MUTEX_HELD(SMAPMTX(smp)));
1057 vp = smp->sm_vp;
1058 off = smp->sm_off;
1060 SMAP_HASHFUNC(vp, off, hashid); /* macro assigns hashid */
1061 mtx = SHASHMTX(hashid);
1062 mutex_enter(mtx);
1064 hpp = &smd_hash[hashid].sh_hash_list;
1065 for (;;) {
1066 hp = *hpp;
1067 if (hp == NULL) {
1068 panic("segmap_hashout");
1069 /*NOTREACHED*/
1071 if (hp == smp)
1072 break;
1073 hpp = &hp->sm_hash;
1076 *hpp = smp->sm_hash;
1077 smp->sm_hash = NULL;
1078 #ifdef SEGMAP_HASHSTATS
1079 smd_hash_len[hashid]--;
1080 #endif
1081 mutex_exit(mtx);
1083 smp->sm_vp = NULL;
1084 smp->sm_off = (u_offset_t)0;
1089 * Attempt to free unmodified, unmapped, and non locked segmap
1090 * pages.
1092 void
1093 segmap_pagefree(struct vnode *vp, u_offset_t off)
1095 u_offset_t pgoff;
1096 page_t *pp;
1098 for (pgoff = off; pgoff < off + MAXBSIZE; pgoff += PAGESIZE) {
1100 if ((pp = page_lookup_nowait(vp, pgoff, SE_EXCL)) == NULL)
1101 continue;
1103 switch (page_release(pp, 1)) {
1104 case PGREL_NOTREL:
1105 segmapcnt.smp_free_notfree.value.ul++;
1106 break;
1107 case PGREL_MOD:
1108 segmapcnt.smp_free_dirty.value.ul++;
1109 break;
1110 case PGREL_CLEAN:
1111 segmapcnt.smp_free.value.ul++;
1112 break;
1118 * Locks held on entry: smap lock
1119 * Locks held on exit : smap lock.
1122 static void
1123 grab_smp(struct smap *smp, page_t *pp)
1125 ASSERT(MUTEX_HELD(SMAPMTX(smp)));
1126 ASSERT(smp->sm_refcnt == 0);
1128 if (smp->sm_vp != (struct vnode *)NULL) {
1129 struct vnode *vp = smp->sm_vp;
1130 u_offset_t off = smp->sm_off;
1132 * Destroy old vnode association and
1133 * unload any hardware translations to
1134 * the old object.
1136 smd_cpu[CPU->cpu_seqid].scpu.scpu_get_reuse++;
1137 segmap_hashout(smp);
1140 * This node is off freelist and hashlist,
1141 * so there is no reason to drop/reacquire sm_mtx
1142 * across calls to hat_unload.
1144 if (segmap_kpm) {
1145 caddr_t vaddr;
1146 int hat_unload_needed = 0;
1149 * unload kpm mapping
1151 if (pp != NULL) {
1152 vaddr = hat_kpm_page2va(pp, 1);
1153 hat_kpm_mapout(pp, GET_KPME(smp), vaddr);
1154 page_unlock(pp);
1158 * Check if we have (also) the rare case of a
1159 * non kpm mapping.
1161 if (smp->sm_flags & SM_NOTKPM_RELEASED) {
1162 hat_unload_needed = 1;
1163 smp->sm_flags &= ~SM_NOTKPM_RELEASED;
1166 if (hat_unload_needed) {
1167 hat_unload(kas.a_hat, segkmap->s_base +
1168 ((smp - smd_smap) * MAXBSIZE),
1169 MAXBSIZE, HAT_UNLOAD);
1172 } else {
1173 ASSERT(smp->sm_flags & SM_NOTKPM_RELEASED);
1174 smp->sm_flags &= ~SM_NOTKPM_RELEASED;
1175 hat_unload(kas.a_hat, segkmap->s_base +
1176 ((smp - smd_smap) * MAXBSIZE),
1177 MAXBSIZE, HAT_UNLOAD);
1179 segmap_pagefree(vp, off);
1183 static struct smap *
1184 get_free_smp(int free_ndx)
1186 struct smfree *sm;
1187 kmutex_t *smtx;
1188 struct smap *smp, *first;
1189 struct sm_freeq *allocq, *releq;
1190 struct kpme *kpme;
1191 page_t *pp = NULL;
1192 int end_ndx, page_locked = 0;
1194 end_ndx = free_ndx;
1195 sm = &smd_free[free_ndx];
1197 retry_queue:
1198 allocq = sm->sm_allocq;
1199 mutex_enter(&allocq->smq_mtx);
1201 if ((smp = allocq->smq_free) == NULL) {
1203 skip_queue:
1205 * The alloc list is empty or this queue is being skipped;
1206 * first see if the allocq toggled.
1208 if (sm->sm_allocq != allocq) {
1209 /* queue changed */
1210 mutex_exit(&allocq->smq_mtx);
1211 goto retry_queue;
1213 releq = sm->sm_releq;
1214 if (!mutex_tryenter(&releq->smq_mtx)) {
1215 /* cannot get releq; a free smp may be there now */
1216 mutex_exit(&allocq->smq_mtx);
1219 * This loop could spin forever if this thread has
1220 * higher priority than the thread that is holding
1221 * releq->smq_mtx. In order to force the other thread
1222 * to run, we'll lock/unlock the mutex which is safe
1223 * since we just unlocked the allocq mutex.
1225 mutex_enter(&releq->smq_mtx);
1226 mutex_exit(&releq->smq_mtx);
1227 goto retry_queue;
1229 if (releq->smq_free == NULL) {
1231 * This freelist is empty.
1232 * This should not happen unless clients
1233 * are failing to release the segmap
1234 * window after accessing the data.
1235 * Before resorting to sleeping, try
1236 * the next list of the same color.
1238 free_ndx = (free_ndx + smd_ncolor) & smd_freemsk;
1239 if (free_ndx != end_ndx) {
1240 mutex_exit(&releq->smq_mtx);
1241 mutex_exit(&allocq->smq_mtx);
1242 sm = &smd_free[free_ndx];
1243 goto retry_queue;
1246 * Tried all freelists of the same color once,
1247 * wait on this list and hope something gets freed.
1249 segmapcnt.smp_get_nofree.value.ul++;
1250 sm->sm_want++;
1251 mutex_exit(&sm->sm_freeq[1].smq_mtx);
1252 cv_wait(&sm->sm_free_cv,
1253 &sm->sm_freeq[0].smq_mtx);
1254 sm->sm_want--;
1255 mutex_exit(&sm->sm_freeq[0].smq_mtx);
1256 sm = &smd_free[free_ndx];
1257 goto retry_queue;
1258 } else {
1260 * Something on the rele queue; flip the alloc
1261 * and rele queues and retry.
1263 sm->sm_allocq = releq;
1264 sm->sm_releq = allocq;
1265 mutex_exit(&allocq->smq_mtx);
1266 mutex_exit(&releq->smq_mtx);
1267 if (page_locked) {
1268 delay(hz >> 2);
1269 page_locked = 0;
1271 goto retry_queue;
1273 } else {
1275 * Fastpath the case we get the smap mutex
1276 * on the first try.
1278 first = smp;
1279 next_smap:
1280 smtx = SMAPMTX(smp);
1281 if (!mutex_tryenter(smtx)) {
1283 * Another thread is trying to reclaim this slot.
1284 * Skip to the next queue or smap.
1286 if ((smp = smp->sm_next) == first) {
1287 goto skip_queue;
1288 } else {
1289 goto next_smap;
1291 } else {
1293 * if kpme exists, get shared lock on the page
1295 if (segmap_kpm && smp->sm_vp != NULL) {
1297 kpme = GET_KPME(smp);
1298 pp = kpme->kpe_page;
1300 if (pp != NULL) {
1301 if (!page_trylock(pp, SE_SHARED)) {
1302 smp = smp->sm_next;
1303 mutex_exit(smtx);
1304 page_locked = 1;
1306 pp = NULL;
1308 if (smp == first) {
1309 goto skip_queue;
1310 } else {
1311 goto next_smap;
1313 } else {
1314 if (kpme->kpe_page == NULL) {
1315 page_unlock(pp);
1316 pp = NULL;
1323 * At this point, we've selected smp. Remove smp
1324 * from its freelist. If smp is the first one in
1325 * the freelist, update the head of the freelist.
1327 if (first == smp) {
1328 ASSERT(first == allocq->smq_free);
1329 allocq->smq_free = smp->sm_next;
1333 * if the head of the freelist still points to smp,
1334 * then there are no more free smaps in that list.
1336 if (allocq->smq_free == smp)
1338 * Took the last one
1340 allocq->smq_free = NULL;
1341 else {
1342 smp->sm_prev->sm_next = smp->sm_next;
1343 smp->sm_next->sm_prev = smp->sm_prev;
1345 mutex_exit(&allocq->smq_mtx);
1346 smp->sm_prev = smp->sm_next = NULL;
1349 * if pp != NULL, pp must have been locked;
1350 * grab_smp() unlocks pp.
1352 ASSERT((pp == NULL) || PAGE_LOCKED(pp));
1353 grab_smp(smp, pp);
1354 /* return smp locked. */
1355 ASSERT(SMAPMTX(smp) == smtx);
1356 ASSERT(MUTEX_HELD(smtx));
1357 return (smp);
1363 * Special public segmap operations
1367 * Create pages (without using VOP_GETPAGE) and load up translations to them.
1368 * If softlock is TRUE, then set things up so that it looks like a call
1369 * to segmap_fault with F_SOFTLOCK.
1371 * Returns 1, if a page is created by calling page_create_va(), or 0 otherwise.
1373 * All fields in the generic segment (struct seg) are considered to be
1374 * read-only for "segmap" even though the kernel address space (kas) may
1375 * not be locked, hence no lock is needed to access them.
1378 segmap_pagecreate(struct seg *seg, caddr_t addr, size_t len, int softlock)
1380 struct segmap_data *smd = (struct segmap_data *)seg->s_data;
1381 page_t *pp;
1382 u_offset_t off;
1383 struct smap *smp;
1384 struct vnode *vp;
1385 caddr_t eaddr;
1386 int newpage = 0;
1387 uint_t prot;
1388 kmutex_t *smtx;
1389 int hat_flag;
1391 ASSERT(seg->s_as == &kas);
1393 if (segmap_kpm && IS_KPM_ADDR(addr)) {
1395 * Pages are successfully prefaulted and locked in
1396 * segmap_getmapflt and can't be unlocked until
1397 * segmap_release. The SM_KPM_NEWPAGE flag is set
1398 * in segmap_pagecreate_kpm when new pages are created.
1399 * and it is returned as "newpage" indication here.
1401 if ((smp = get_smap_kpm(addr, NULL)) == NULL) {
1402 panic("segmap_pagecreate: smap not found "
1403 "for addr %p", (void *)addr);
1404 /*NOTREACHED*/
1407 smtx = SMAPMTX(smp);
1408 newpage = smp->sm_flags & SM_KPM_NEWPAGE;
1409 smp->sm_flags &= ~SM_KPM_NEWPAGE;
1410 mutex_exit(smtx);
1412 return (newpage);
1415 smd_cpu[CPU->cpu_seqid].scpu.scpu_pagecreate++;
1417 eaddr = addr + len;
1418 addr = (caddr_t)((uintptr_t)addr & (uintptr_t)PAGEMASK);
1420 smp = GET_SMAP(seg, addr);
1423 * We don't grab smp mutex here since we assume the smp
1424 * has a refcnt set already which prevents the slot from
1425 * changing its id.
1427 ASSERT(smp->sm_refcnt > 0);
1429 vp = smp->sm_vp;
1430 off = smp->sm_off + ((u_offset_t)((uintptr_t)addr & MAXBOFFSET));
1431 prot = smd->smd_prot;
1433 for (; addr < eaddr; addr += PAGESIZE, off += PAGESIZE) {
1434 hat_flag = HAT_LOAD;
1435 pp = page_lookup(vp, off, SE_SHARED);
1436 if (pp == NULL) {
1437 ushort_t bitindex;
1439 if ((pp = page_create_va(vp, off,
1440 PAGESIZE, PG_WAIT, seg, addr)) == NULL) {
1441 panic("segmap_pagecreate: page_create failed");
1442 /*NOTREACHED*/
1444 newpage = 1;
1445 page_io_unlock(pp);
1448 * Since pages created here do not contain valid
1449 * data until the caller writes into them, the
1450 * "exclusive" lock will not be dropped to prevent
1451 * other users from accessing the page. We also
1452 * have to lock the translation to prevent a fault
1453 * from occurring when the virtual address mapped by
1454 * this page is written into. This is necessary to
1455 * avoid a deadlock since we haven't dropped the
1456 * "exclusive" lock.
1458 bitindex = (ushort_t)((off - smp->sm_off) >> PAGESHIFT);
1461 * Large Files: The following assertion is to
1462 * verify the cast above.
1464 ASSERT((u_offset_t)(off - smp->sm_off) <= INT_MAX);
1465 smtx = SMAPMTX(smp);
1466 mutex_enter(smtx);
1467 smp->sm_bitmap |= SMAP_BIT_MASK(bitindex);
1468 mutex_exit(smtx);
1470 hat_flag = HAT_LOAD_LOCK;
1471 } else if (softlock) {
1472 hat_flag = HAT_LOAD_LOCK;
1475 if (IS_VMODSORT(pp->p_vnode) && (prot & PROT_WRITE))
1476 hat_setmod(pp);
1478 hat_memload(kas.a_hat, addr, pp, prot, hat_flag);
1480 if (hat_flag != HAT_LOAD_LOCK)
1481 page_unlock(pp);
1483 TRACE_5(TR_FAC_VM, TR_SEGMAP_PAGECREATE,
1484 "segmap_pagecreate:seg %p addr %p pp %p vp %p offset %llx",
1485 seg, addr, pp, vp, off);
1488 return (newpage);
1491 void
1492 segmap_pageunlock(struct seg *seg, caddr_t addr, size_t len, enum seg_rw rw)
1494 struct smap *smp;
1495 ushort_t bitmask;
1496 page_t *pp;
1497 struct vnode *vp;
1498 u_offset_t off;
1499 caddr_t eaddr;
1500 kmutex_t *smtx;
1502 ASSERT(seg->s_as == &kas);
1504 eaddr = addr + len;
1505 addr = (caddr_t)((uintptr_t)addr & (uintptr_t)PAGEMASK);
1507 if (segmap_kpm && IS_KPM_ADDR(addr)) {
1509 * Pages are successfully prefaulted and locked in
1510 * segmap_getmapflt and can't be unlocked until
1511 * segmap_release, so no pages or hat mappings have
1512 * to be unlocked at this point.
1514 #ifdef DEBUG
1515 if ((smp = get_smap_kpm(addr, NULL)) == NULL) {
1516 panic("segmap_pageunlock: smap not found "
1517 "for addr %p", (void *)addr);
1518 /*NOTREACHED*/
1521 ASSERT(smp->sm_refcnt > 0);
1522 mutex_exit(SMAPMTX(smp));
1523 #endif
1524 return;
1527 smp = GET_SMAP(seg, addr);
1528 smtx = SMAPMTX(smp);
1530 ASSERT(smp->sm_refcnt > 0);
1532 vp = smp->sm_vp;
1533 off = smp->sm_off + ((u_offset_t)((uintptr_t)addr & MAXBOFFSET));
1535 for (; addr < eaddr; addr += PAGESIZE, off += PAGESIZE) {
1536 bitmask = SMAP_BIT_MASK((int)(off - smp->sm_off) >> PAGESHIFT);
1539 * Large Files: Following assertion is to verify
1540 * the correctness of the cast to (int) above.
1542 ASSERT((u_offset_t)(off - smp->sm_off) <= INT_MAX);
1545 * If the bit corresponding to "off" is set,
1546 * clear this bit in the bitmap, unlock translations,
1547 * and release the "exclusive" lock on the page.
1549 if (smp->sm_bitmap & bitmask) {
1550 mutex_enter(smtx);
1551 smp->sm_bitmap &= ~bitmask;
1552 mutex_exit(smtx);
1554 hat_unlock(kas.a_hat, addr, PAGESIZE);
1557 * Use page_find() instead of page_lookup() to
1558 * find the page since we know that it has
1559 * "exclusive" lock.
1561 pp = page_find(vp, off);
1562 if (pp == NULL) {
1563 panic("segmap_pageunlock: page not found");
1564 /*NOTREACHED*/
1566 if (rw == S_WRITE) {
1567 hat_setrefmod(pp);
1568 } else if (rw != S_OTHER) {
1569 hat_setref(pp);
1572 page_unlock(pp);
1577 caddr_t
1578 segmap_getmap(struct seg *seg, struct vnode *vp, u_offset_t off)
1580 return (segmap_getmapflt(seg, vp, off, MAXBSIZE, 0, S_OTHER));
1584 * This is the magic virtual address that offset 0 of an ELF
1585 * file gets mapped to in user space. This is used to pick
1586 * the vac color on the freelist.
1588 #define ELF_OFFZERO_VA (0x10000)
1590 * segmap_getmap allocates a MAXBSIZE big slot to map the vnode vp
1591 * in the range <off, off + len). off doesn't need to be MAXBSIZE aligned.
1592 * The return address is always MAXBSIZE aligned.
1594 * If forcefault is nonzero and the MMU translations haven't yet been created,
1595 * segmap_getmap will call segmap_fault(..., F_INVAL, rw) to create them.
1597 caddr_t
1598 segmap_getmapflt(
1599 struct seg *seg,
1600 struct vnode *vp,
1601 u_offset_t off,
1602 size_t len,
1603 int forcefault,
1604 enum seg_rw rw)
1606 struct smap *smp, *nsmp;
1607 extern struct vnode *common_specvp();
1608 caddr_t baseaddr; /* MAXBSIZE aligned */
1609 u_offset_t baseoff;
1610 int newslot;
1611 caddr_t vaddr;
1612 int color, hashid;
1613 kmutex_t *hashmtx, *smapmtx;
1614 struct smfree *sm;
1615 page_t *pp;
1616 struct kpme *kpme;
1617 uint_t prot;
1618 caddr_t base;
1619 page_t *pl[MAXPPB + 1];
1620 int error;
1621 int is_kpm = 1;
1623 ASSERT(seg->s_as == &kas);
1624 ASSERT(seg == segkmap);
1626 baseoff = off & (offset_t)MAXBMASK;
1627 if (off + len > baseoff + MAXBSIZE) {
1628 panic("segmap_getmap bad len");
1629 /*NOTREACHED*/
1633 * If this is a block device we have to be sure to use the
1634 * "common" block device vnode for the mapping.
1636 if (vp->v_type == VBLK)
1637 vp = common_specvp(vp);
1639 smd_cpu[CPU->cpu_seqid].scpu.scpu_getmap++;
1641 if (segmap_kpm == 0 ||
1642 (forcefault == SM_PAGECREATE && rw != S_WRITE)) {
1643 is_kpm = 0;
1646 SMAP_HASHFUNC(vp, off, hashid); /* macro assigns hashid */
1647 hashmtx = SHASHMTX(hashid);
1649 retry_hash:
1650 mutex_enter(hashmtx);
1651 for (smp = smd_hash[hashid].sh_hash_list;
1652 smp != NULL; smp = smp->sm_hash)
1653 if (smp->sm_vp == vp && smp->sm_off == baseoff)
1654 break;
1655 mutex_exit(hashmtx);
1657 vrfy_smp:
1658 if (smp != NULL) {
1660 ASSERT(vp->v_count != 0);
1663 * Get smap lock and recheck its tag. The hash lock
1664 * is dropped since the hash is based on (vp, off)
1665 * and (vp, off) won't change when we have smap mtx.
1667 smapmtx = SMAPMTX(smp);
1668 mutex_enter(smapmtx);
1669 if (smp->sm_vp != vp || smp->sm_off != baseoff) {
1670 mutex_exit(smapmtx);
1671 goto retry_hash;
1674 if (smp->sm_refcnt == 0) {
1676 smd_cpu[CPU->cpu_seqid].scpu.scpu_get_reclaim++;
1679 * Could still be on the free list. However, this
1680 * could also be an smp that is transitioning from
1681 * the free list when we have too much contention
1682 * for the smapmtx's. In this case, we have an
1683 * unlocked smp that is not on the free list any
1684 * longer, but still has a 0 refcnt. The only way
1685 * to be sure is to check the freelist pointers.
1686 * Since we now have the smapmtx, we are guaranteed
1687 * that the (vp, off) won't change, so we are safe
1688 * to reclaim it. get_free_smp() knows that this
1689 * can happen, and it will check the refcnt.
1692 if ((smp->sm_next != NULL)) {
1693 struct sm_freeq *freeq;
1695 ASSERT(smp->sm_prev != NULL);
1696 sm = &smd_free[smp->sm_free_ndx];
1698 if (smp->sm_flags & SM_QNDX_ZERO)
1699 freeq = &sm->sm_freeq[0];
1700 else
1701 freeq = &sm->sm_freeq[1];
1703 mutex_enter(&freeq->smq_mtx);
1704 if (freeq->smq_free != smp) {
1706 * fastpath normal case
1708 smp->sm_prev->sm_next = smp->sm_next;
1709 smp->sm_next->sm_prev = smp->sm_prev;
1710 } else if (smp == smp->sm_next) {
1712 * Taking the last smap on freelist
1714 freeq->smq_free = NULL;
1715 } else {
1717 * Reclaiming 1st smap on list
1719 freeq->smq_free = smp->sm_next;
1720 smp->sm_prev->sm_next = smp->sm_next;
1721 smp->sm_next->sm_prev = smp->sm_prev;
1723 mutex_exit(&freeq->smq_mtx);
1724 smp->sm_prev = smp->sm_next = NULL;
1725 } else {
1726 ASSERT(smp->sm_prev == NULL);
1727 segmapcnt.smp_stolen.value.ul++;
1730 } else {
1731 segmapcnt.smp_get_use.value.ul++;
1733 smp->sm_refcnt++; /* another user */
1736 * We don't invoke segmap_fault via TLB miss, so we set ref
1737 * and mod bits in advance. For S_OTHER we set them in
1738 * segmap_fault F_SOFTUNLOCK.
1740 if (is_kpm) {
1741 if (rw == S_WRITE) {
1742 smp->sm_flags |= SM_WRITE_DATA;
1743 } else if (rw == S_READ) {
1744 smp->sm_flags |= SM_READ_DATA;
1747 mutex_exit(smapmtx);
1749 newslot = 0;
1750 } else {
1752 uint32_t free_ndx, *free_ndxp;
1753 union segmap_cpu *scpu;
1756 * On a PAC machine or a machine with anti-alias
1757 * hardware, smd_colormsk will be zero.
1759 * On a VAC machine- pick color by offset in the file
1760 * so we won't get VAC conflicts on elf files.
1761 * On data files, color does not matter but we
1762 * don't know what kind of file it is so we always
1763 * pick color by offset. This causes color
1764 * corresponding to file offset zero to be used more
1765 * heavily.
1767 color = (baseoff >> MAXBSHIFT) & smd_colormsk;
1768 scpu = smd_cpu+CPU->cpu_seqid;
1769 free_ndxp = &scpu->scpu.scpu_free_ndx[color];
1770 free_ndx = (*free_ndxp += smd_ncolor) & smd_freemsk;
1771 #ifdef DEBUG
1772 colors_used[free_ndx]++;
1773 #endif /* DEBUG */
1776 * Get a locked smp slot from the free list.
1778 smp = get_free_smp(free_ndx);
1779 smapmtx = SMAPMTX(smp);
1781 ASSERT(smp->sm_vp == NULL);
1783 if ((nsmp = segmap_hashin(smp, vp, baseoff, hashid)) != NULL) {
1785 * Failed to hashin, there exists one now.
1786 * Return the smp we just allocated.
1788 segmap_smapadd(smp);
1789 mutex_exit(smapmtx);
1791 smp = nsmp;
1792 goto vrfy_smp;
1794 smp->sm_refcnt++; /* another user */
1797 * We don't invoke segmap_fault via TLB miss, so we set ref
1798 * and mod bits in advance. For S_OTHER we set them in
1799 * segmap_fault F_SOFTUNLOCK.
1801 if (is_kpm) {
1802 if (rw == S_WRITE) {
1803 smp->sm_flags |= SM_WRITE_DATA;
1804 } else if (rw == S_READ) {
1805 smp->sm_flags |= SM_READ_DATA;
1808 mutex_exit(smapmtx);
1810 newslot = 1;
1813 if (!is_kpm)
1814 goto use_segmap_range;
1817 * Use segkpm
1819 /* Lint directive required until 6746211 is fixed */
1820 /*CONSTCOND*/
1821 ASSERT(PAGESIZE == MAXBSIZE);
1824 * remember the last smp faulted on this cpu.
1826 (smd_cpu+CPU->cpu_seqid)->scpu.scpu_last_smap = smp;
1828 if (forcefault == SM_PAGECREATE) {
1829 baseaddr = segmap_pagecreate_kpm(seg, vp, baseoff, smp, rw);
1830 return (baseaddr);
1833 if (newslot == 0 &&
1834 (pp = GET_KPME(smp)->kpe_page) != NULL) {
1836 /* fastpath */
1837 switch (rw) {
1838 case S_READ:
1839 case S_WRITE:
1840 if (page_trylock(pp, SE_SHARED)) {
1841 if (PP_ISFREE(pp) ||
1842 !(pp->p_vnode == vp &&
1843 pp->p_offset == baseoff)) {
1844 page_unlock(pp);
1845 pp = page_lookup(vp, baseoff,
1846 SE_SHARED);
1848 } else {
1849 pp = page_lookup(vp, baseoff, SE_SHARED);
1852 if (pp == NULL) {
1853 ASSERT(GET_KPME(smp)->kpe_page == NULL);
1854 break;
1857 if (rw == S_WRITE &&
1858 hat_page_getattr(pp, P_MOD | P_REF) !=
1859 (P_MOD | P_REF)) {
1860 page_unlock(pp);
1861 break;
1865 * We have the p_selock as reader, grab_smp
1866 * can't hit us, we have bumped the smap
1867 * refcnt and hat_pageunload needs the
1868 * p_selock exclusive.
1870 kpme = GET_KPME(smp);
1871 if (kpme->kpe_page == pp) {
1872 baseaddr = hat_kpm_page2va(pp, 0);
1873 } else if (kpme->kpe_page == NULL) {
1874 baseaddr = hat_kpm_mapin(pp, kpme);
1875 } else {
1876 panic("segmap_getmapflt: stale "
1877 "kpme page, kpme %p", (void *)kpme);
1878 /*NOTREACHED*/
1882 * We don't invoke segmap_fault via TLB miss,
1883 * so we set ref and mod bits in advance.
1884 * For S_OTHER and we set them in segmap_fault
1885 * F_SOFTUNLOCK.
1887 if (rw == S_READ && !hat_isref(pp))
1888 hat_setref(pp);
1890 return (baseaddr);
1891 default:
1892 break;
1896 base = segkpm_create_va(baseoff);
1897 error = VOP_GETPAGE(vp, (offset_t)baseoff, len, &prot, pl, MAXBSIZE,
1898 seg, base, rw, CRED(), NULL);
1900 pp = pl[0];
1901 if (error || pp == NULL) {
1903 * Use segmap address slot and let segmap_fault deal
1904 * with the error cases. There is no error return
1905 * possible here.
1907 goto use_segmap_range;
1910 ASSERT(pl[1] == NULL);
1913 * When prot is not returned w/ PROT_ALL the returned pages
1914 * are not backed by fs blocks. For most of the segmap users
1915 * this is no problem, they don't write to the pages in the
1916 * same request and therefore don't rely on a following
1917 * trap driven segmap_fault. With SM_LOCKPROTO users it
1918 * is more secure to use segkmap adresses to allow
1919 * protection segmap_fault's.
1921 if (prot != PROT_ALL && forcefault == SM_LOCKPROTO) {
1923 * Use segmap address slot and let segmap_fault
1924 * do the error return.
1926 ASSERT(rw != S_WRITE);
1927 ASSERT(PAGE_LOCKED(pp));
1928 page_unlock(pp);
1929 forcefault = 0;
1930 goto use_segmap_range;
1934 * We have the p_selock as reader, grab_smp can't hit us, we
1935 * have bumped the smap refcnt and hat_pageunload needs the
1936 * p_selock exclusive.
1938 kpme = GET_KPME(smp);
1939 if (kpme->kpe_page == pp) {
1940 baseaddr = hat_kpm_page2va(pp, 0);
1941 } else if (kpme->kpe_page == NULL) {
1942 baseaddr = hat_kpm_mapin(pp, kpme);
1943 } else {
1944 panic("segmap_getmapflt: stale kpme page after "
1945 "VOP_GETPAGE, kpme %p", (void *)kpme);
1946 /*NOTREACHED*/
1949 smd_cpu[CPU->cpu_seqid].scpu.scpu_fault++;
1951 return (baseaddr);
1954 use_segmap_range:
1955 baseaddr = seg->s_base + ((smp - smd_smap) * MAXBSIZE);
1956 TRACE_4(TR_FAC_VM, TR_SEGMAP_GETMAP,
1957 "segmap_getmap:seg %p addr %p vp %p offset %llx",
1958 seg, baseaddr, vp, baseoff);
1961 * Prefault the translations
1963 vaddr = baseaddr + (off - baseoff);
1964 if (forcefault && (newslot || !hat_probe(kas.a_hat, vaddr))) {
1966 caddr_t pgaddr = (caddr_t)((uintptr_t)vaddr &
1967 (uintptr_t)PAGEMASK);
1969 (void) segmap_fault(kas.a_hat, seg, pgaddr,
1970 (vaddr + len - pgaddr + PAGESIZE - 1) & (uintptr_t)PAGEMASK,
1971 F_INVAL, rw);
1974 return (baseaddr);
1978 segmap_release(struct seg *seg, caddr_t addr, uint_t flags)
1980 struct smap *smp;
1981 int error;
1982 int bflags = 0;
1983 struct vnode *vp;
1984 u_offset_t offset;
1985 kmutex_t *smtx;
1986 int is_kpm = 0;
1987 page_t *pp;
1989 if (segmap_kpm && IS_KPM_ADDR(addr)) {
1991 if (((uintptr_t)addr & MAXBOFFSET) != 0) {
1992 panic("segmap_release: addr %p not "
1993 "MAXBSIZE aligned", (void *)addr);
1994 /*NOTREACHED*/
1997 if ((smp = get_smap_kpm(addr, &pp)) == NULL) {
1998 panic("segmap_release: smap not found "
1999 "for addr %p", (void *)addr);
2000 /*NOTREACHED*/
2003 TRACE_3(TR_FAC_VM, TR_SEGMAP_RELMAP,
2004 "segmap_relmap:seg %p addr %p smp %p",
2005 seg, addr, smp);
2007 smtx = SMAPMTX(smp);
2010 * For compatibility reasons segmap_pagecreate_kpm sets this
2011 * flag to allow a following segmap_pagecreate to return
2012 * this as "newpage" flag. When segmap_pagecreate is not
2013 * called at all we clear it now.
2015 smp->sm_flags &= ~SM_KPM_NEWPAGE;
2016 is_kpm = 1;
2017 if (smp->sm_flags & SM_WRITE_DATA) {
2018 hat_setrefmod(pp);
2019 } else if (smp->sm_flags & SM_READ_DATA) {
2020 hat_setref(pp);
2022 } else {
2023 if (addr < seg->s_base || addr >= seg->s_base + seg->s_size ||
2024 ((uintptr_t)addr & MAXBOFFSET) != 0) {
2025 panic("segmap_release: bad addr %p", (void *)addr);
2026 /*NOTREACHED*/
2028 smp = GET_SMAP(seg, addr);
2030 TRACE_3(TR_FAC_VM, TR_SEGMAP_RELMAP,
2031 "segmap_relmap:seg %p addr %p smp %p",
2032 seg, addr, smp);
2034 smtx = SMAPMTX(smp);
2035 mutex_enter(smtx);
2036 smp->sm_flags |= SM_NOTKPM_RELEASED;
2039 ASSERT(smp->sm_refcnt > 0);
2042 * Need to call VOP_PUTPAGE() if any flags (except SM_DONTNEED)
2043 * are set.
2045 if ((flags & ~SM_DONTNEED) != 0) {
2046 if (flags & SM_WRITE)
2047 segmapcnt.smp_rel_write.value.ul++;
2048 if (flags & SM_ASYNC) {
2049 bflags |= B_ASYNC;
2050 segmapcnt.smp_rel_async.value.ul++;
2052 if (flags & SM_INVAL) {
2053 bflags |= B_INVAL;
2054 segmapcnt.smp_rel_abort.value.ul++;
2056 if (flags & SM_DESTROY) {
2057 bflags |= (B_INVAL|B_TRUNC);
2058 segmapcnt.smp_rel_abort.value.ul++;
2060 if (smp->sm_refcnt == 1) {
2062 * We only bother doing the FREE and DONTNEED flags
2063 * if no one else is still referencing this mapping.
2065 if (flags & SM_FREE) {
2066 bflags |= B_FREE;
2067 segmapcnt.smp_rel_free.value.ul++;
2069 if (flags & SM_DONTNEED) {
2070 bflags |= B_DONTNEED;
2071 segmapcnt.smp_rel_dontneed.value.ul++;
2074 } else {
2075 smd_cpu[CPU->cpu_seqid].scpu.scpu_release++;
2078 vp = smp->sm_vp;
2079 offset = smp->sm_off;
2081 if (--smp->sm_refcnt == 0) {
2083 smp->sm_flags &= ~(SM_WRITE_DATA | SM_READ_DATA);
2085 if (flags & (SM_INVAL|SM_DESTROY)) {
2086 segmap_hashout(smp); /* remove map info */
2087 if (is_kpm) {
2088 hat_kpm_mapout(pp, GET_KPME(smp), addr);
2089 if (smp->sm_flags & SM_NOTKPM_RELEASED) {
2090 smp->sm_flags &= ~SM_NOTKPM_RELEASED;
2091 hat_unload(kas.a_hat, segkmap->s_base +
2092 ((smp - smd_smap) * MAXBSIZE),
2093 MAXBSIZE, HAT_UNLOAD);
2096 } else {
2097 if (segmap_kpm)
2098 segkpm_mapout_validkpme(GET_KPME(smp));
2100 smp->sm_flags &= ~SM_NOTKPM_RELEASED;
2101 hat_unload(kas.a_hat, addr, MAXBSIZE,
2102 HAT_UNLOAD);
2105 segmap_smapadd(smp); /* add to free list */
2108 mutex_exit(smtx);
2110 if (is_kpm)
2111 page_unlock(pp);
2113 * Now invoke VOP_PUTPAGE() if any flags (except SM_DONTNEED)
2114 * are set.
2116 if ((flags & ~SM_DONTNEED) != 0) {
2117 error = VOP_PUTPAGE(vp, offset, MAXBSIZE,
2118 bflags, CRED(), NULL);
2119 } else {
2120 error = 0;
2123 return (error);
2127 * Dump the pages belonging to this segmap segment.
2129 static void
2130 segmap_dump(struct seg *seg)
2132 struct segmap_data *smd;
2133 struct smap *smp, *smp_end;
2134 page_t *pp;
2135 pfn_t pfn;
2136 u_offset_t off;
2137 caddr_t addr;
2139 smd = (struct segmap_data *)seg->s_data;
2140 addr = seg->s_base;
2141 for (smp = smd->smd_sm, smp_end = smp + smd->smd_npages;
2142 smp < smp_end; smp++) {
2144 if (smp->sm_refcnt) {
2145 for (off = 0; off < MAXBSIZE; off += PAGESIZE) {
2146 int we_own_it = 0;
2149 * If pp == NULL, the page either does
2150 * not exist or is exclusively locked.
2151 * So determine if it exists before
2152 * searching for it.
2154 if ((pp = page_lookup_nowait(smp->sm_vp,
2155 smp->sm_off + off, SE_SHARED)))
2156 we_own_it = 1;
2157 else
2158 pp = page_exists(smp->sm_vp,
2159 smp->sm_off + off);
2161 if (pp) {
2162 pfn = page_pptonum(pp);
2163 dump_addpage(seg->s_as,
2164 addr + off, pfn);
2165 if (we_own_it)
2166 page_unlock(pp);
2168 dump_timeleft = dump_timeout;
2171 addr += MAXBSIZE;
2175 /*ARGSUSED*/
2176 static int
2177 segmap_pagelock(struct seg *seg, caddr_t addr, size_t len,
2178 struct page ***ppp, enum lock_type type, enum seg_rw rw)
2180 return (ENOTSUP);
2183 static int
2184 segmap_getmemid(struct seg *seg, caddr_t addr, memid_t *memidp)
2186 struct segmap_data *smd = (struct segmap_data *)seg->s_data;
2188 memidp->val[0] = (uintptr_t)smd->smd_sm->sm_vp;
2189 memidp->val[1] = smd->smd_sm->sm_off + (uintptr_t)(addr - seg->s_base);
2190 return (0);
2193 /*ARGSUSED*/
2194 static lgrp_mem_policy_info_t *
2195 segmap_getpolicy(struct seg *seg, caddr_t addr)
2197 return (NULL);
2200 /*ARGSUSED*/
2201 static int
2202 segmap_capable(struct seg *seg, segcapability_t capability)
2204 return (0);
2208 #ifdef SEGKPM_SUPPORT
2211 * segkpm support routines
2214 static caddr_t
2215 segmap_pagecreate_kpm(struct seg *seg, vnode_t *vp, u_offset_t off,
2216 struct smap *smp, enum seg_rw rw)
2218 caddr_t base;
2219 page_t *pp;
2220 int newpage = 0;
2221 struct kpme *kpme;
2223 ASSERT(smp->sm_refcnt > 0);
2225 if ((pp = page_lookup(vp, off, SE_SHARED)) == NULL) {
2226 kmutex_t *smtx;
2228 base = segkpm_create_va(off);
2230 if ((pp = page_create_va(vp, off, PAGESIZE, PG_WAIT,
2231 seg, base)) == NULL) {
2232 panic("segmap_pagecreate_kpm: "
2233 "page_create failed");
2234 /*NOTREACHED*/
2237 newpage = 1;
2238 page_io_unlock(pp);
2239 ASSERT((u_offset_t)(off - smp->sm_off) <= INT_MAX);
2242 * Mark this here until the following segmap_pagecreate
2243 * or segmap_release.
2245 smtx = SMAPMTX(smp);
2246 mutex_enter(smtx);
2247 smp->sm_flags |= SM_KPM_NEWPAGE;
2248 mutex_exit(smtx);
2251 kpme = GET_KPME(smp);
2252 if (!newpage && kpme->kpe_page == pp)
2253 base = hat_kpm_page2va(pp, 0);
2254 else
2255 base = hat_kpm_mapin(pp, kpme);
2258 * FS code may decide not to call segmap_pagecreate and we
2259 * don't invoke segmap_fault via TLB miss, so we have to set
2260 * ref and mod bits in advance.
2262 if (rw == S_WRITE) {
2263 hat_setrefmod(pp);
2264 } else {
2265 ASSERT(rw == S_READ);
2266 hat_setref(pp);
2269 smd_cpu[CPU->cpu_seqid].scpu.scpu_pagecreate++;
2271 return (base);
2275 * Find the smap structure corresponding to the
2276 * KPM addr and return it locked.
2278 struct smap *
2279 get_smap_kpm(caddr_t addr, page_t **ppp)
2281 struct smap *smp;
2282 struct vnode *vp;
2283 u_offset_t offset;
2284 caddr_t baseaddr = (caddr_t)((uintptr_t)addr & MAXBMASK);
2285 int hashid;
2286 kmutex_t *hashmtx;
2287 page_t *pp;
2288 union segmap_cpu *scpu;
2290 pp = hat_kpm_vaddr2page(baseaddr);
2292 ASSERT(pp && !PP_ISFREE(pp));
2293 ASSERT(PAGE_LOCKED(pp));
2294 ASSERT(((uintptr_t)pp->p_offset & MAXBOFFSET) == 0);
2296 vp = pp->p_vnode;
2297 offset = pp->p_offset;
2298 ASSERT(vp != NULL);
2301 * Assume the last smap used on this cpu is the one needed.
2303 scpu = smd_cpu+CPU->cpu_seqid;
2304 smp = scpu->scpu.scpu_last_smap;
2305 mutex_enter(&smp->sm_mtx);
2306 if (smp->sm_vp == vp && smp->sm_off == offset) {
2307 ASSERT(smp->sm_refcnt > 0);
2308 } else {
2310 * Assumption wrong, find the smap on the hash chain.
2312 mutex_exit(&smp->sm_mtx);
2313 SMAP_HASHFUNC(vp, offset, hashid); /* macro assigns hashid */
2314 hashmtx = SHASHMTX(hashid);
2316 mutex_enter(hashmtx);
2317 smp = smd_hash[hashid].sh_hash_list;
2318 for (; smp != NULL; smp = smp->sm_hash) {
2319 if (smp->sm_vp == vp && smp->sm_off == offset)
2320 break;
2322 mutex_exit(hashmtx);
2323 if (smp) {
2324 mutex_enter(&smp->sm_mtx);
2325 ASSERT(smp->sm_vp == vp && smp->sm_off == offset);
2329 if (ppp)
2330 *ppp = smp ? pp : NULL;
2332 return (smp);
2335 #else /* SEGKPM_SUPPORT */
2337 /* segkpm stubs */
2339 /*ARGSUSED*/
2340 static caddr_t
2341 segmap_pagecreate_kpm(struct seg *seg, vnode_t *vp, u_offset_t off,
2342 struct smap *smp, enum seg_rw rw)
2344 return (NULL);
2347 /*ARGSUSED*/
2348 struct smap *
2349 get_smap_kpm(caddr_t addr, page_t **ppp)
2351 return (NULL);
2354 #endif /* SEGKPM_SUPPORT */