Print this page
8115 parallel zfs mount


   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   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.
  12  *
  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]
  18  *
  19  * CDDL HEADER END
  20  */
  21 /*
  22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  23  * Use is subject to license terms.
  24  * Copyright 2016 Joyent, Inc.

  25  */
  26 
  27 #ifndef _VM_SEG_KMEM_H
  28 #define _VM_SEG_KMEM_H
  29 
  30 
  31 #ifdef  __cplusplus
  32 extern "C" {
  33 #endif
  34 
  35 #include <sys/types.h>
  36 #include <sys/vnode.h>
  37 #include <sys/vmem.h>
  38 #include <vm/as.h>
  39 #include <vm/seg.h>
  40 #include <vm/page.h>
  41 
  42 /*
  43  * VM - Kernel Segment Driver
  44  */
  45 
  46 #if defined(_KERNEL)
  47 
  48 extern char *kernelheap;        /* start of primary kernel heap */
  49 extern char *ekernelheap;       /* end of primary kernel heap */
  50 extern char *heap_lp_base;      /* start of kernel large page heap arena */
  51 extern char *heap_lp_end;       /* end of kernel large page heap arena */
  52 extern struct seg kvseg;        /* primary kernel heap segment */
  53 extern struct seg kvseg_core;   /* "core" kernel heap segment */
  54 extern struct seg kzioseg;      /* Segment for zio mappings */
  55 extern vmem_t *heap_lp_arena;   /* kernel large page heap arena */
  56 extern vmem_t *heap_arena;      /* primary kernel heap arena */
  57 extern vmem_t *hat_memload_arena; /* HAT translation arena */
  58 extern struct seg kvseg32;      /* 32-bit kernel heap segment */
  59 extern vmem_t *heap32_arena;    /* 32-bit kernel heap arena */
  60 extern vmem_t *heaptext_arena;  /* kernel text arena, from heap */
  61 extern struct as kas;           /* kernel address space */
  62 extern int segkmem_reloc;       /* enable/disable segkmem relocatable pages */
  63 extern vmem_t *static_arena;    /* arena for caches to import static memory */
  64 extern vmem_t *static_alloc_arena;      /* arena for allocating static memory */
  65 extern vmem_t *zio_arena;       /* arena for zio caches */
  66 extern vmem_t *zio_alloc_arena; /* arena for zio caches */


 122         uint64_t        alloc_bytes_failed;
 123 } segkmem_lpcb_t;
 124 
 125 extern void     *segkmem_alloc_lp(vmem_t *, size_t *, size_t, int);
 126 extern void     segkmem_free_lp(vmem_t *, void *, size_t);
 127 extern int      segkmem_lpsetup();
 128 extern void     segkmem_heap_lp_init(void);
 129 
 130 extern size_t   segkmem_lpsize;
 131 extern int      segkmem_lpszc;
 132 extern size_t   segkmem_heaplp_quantum;
 133 extern size_t   segkmem_kmemlp_max;
 134 
 135 #define SEGKMEM_USE_LARGEPAGES (segkmem_lpsize > PAGESIZE)
 136 
 137 #define IS_KMEM_VA_LARGEPAGE(vaddr)                                     \
 138         (((vaddr) >= heap_lp_base) && ((vaddr) < heap_lp_end))
 139 
 140 extern struct seg_ops segkmem_ops;
 141 
 142 #endif  /* _KERNEL */
 143 
 144 #ifdef  __cplusplus
 145 }
 146 #endif
 147 
 148 #endif  /* _VM_SEG_KMEM_H */


   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   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.
  12  *
  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]
  18  *
  19  * CDDL HEADER END
  20  */
  21 /*
  22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  23  * Use is subject to license terms.
  24  * Copyright 2016 Joyent, Inc.
  25  * Copyright 2017 RackTop Systems.
  26  */
  27 
  28 #ifndef _VM_SEG_KMEM_H
  29 #define _VM_SEG_KMEM_H
  30 
  31 
  32 #ifdef  __cplusplus
  33 extern "C" {
  34 #endif
  35 
  36 #include <sys/types.h>
  37 #include <sys/vnode.h>
  38 #include <sys/vmem.h>
  39 #include <vm/as.h>
  40 #include <vm/seg.h>
  41 #include <vm/page.h>
  42 
  43 /*
  44  * VM - Kernel Segment Driver
  45  */
  46 
  47 #if defined(_KERNEL) || defined(_FAKE_KERNEL)
  48 
  49 extern char *kernelheap;        /* start of primary kernel heap */
  50 extern char *ekernelheap;       /* end of primary kernel heap */
  51 extern char *heap_lp_base;      /* start of kernel large page heap arena */
  52 extern char *heap_lp_end;       /* end of kernel large page heap arena */
  53 extern struct seg kvseg;        /* primary kernel heap segment */
  54 extern struct seg kvseg_core;   /* "core" kernel heap segment */
  55 extern struct seg kzioseg;      /* Segment for zio mappings */
  56 extern vmem_t *heap_lp_arena;   /* kernel large page heap arena */
  57 extern vmem_t *heap_arena;      /* primary kernel heap arena */
  58 extern vmem_t *hat_memload_arena; /* HAT translation arena */
  59 extern struct seg kvseg32;      /* 32-bit kernel heap segment */
  60 extern vmem_t *heap32_arena;    /* 32-bit kernel heap arena */
  61 extern vmem_t *heaptext_arena;  /* kernel text arena, from heap */
  62 extern struct as kas;           /* kernel address space */
  63 extern int segkmem_reloc;       /* enable/disable segkmem relocatable pages */
  64 extern vmem_t *static_arena;    /* arena for caches to import static memory */
  65 extern vmem_t *static_alloc_arena;      /* arena for allocating static memory */
  66 extern vmem_t *zio_arena;       /* arena for zio caches */
  67 extern vmem_t *zio_alloc_arena; /* arena for zio caches */


 123         uint64_t        alloc_bytes_failed;
 124 } segkmem_lpcb_t;
 125 
 126 extern void     *segkmem_alloc_lp(vmem_t *, size_t *, size_t, int);
 127 extern void     segkmem_free_lp(vmem_t *, void *, size_t);
 128 extern int      segkmem_lpsetup();
 129 extern void     segkmem_heap_lp_init(void);
 130 
 131 extern size_t   segkmem_lpsize;
 132 extern int      segkmem_lpszc;
 133 extern size_t   segkmem_heaplp_quantum;
 134 extern size_t   segkmem_kmemlp_max;
 135 
 136 #define SEGKMEM_USE_LARGEPAGES (segkmem_lpsize > PAGESIZE)
 137 
 138 #define IS_KMEM_VA_LARGEPAGE(vaddr)                                     \
 139         (((vaddr) >= heap_lp_base) && ((vaddr) < heap_lp_end))
 140 
 141 extern struct seg_ops segkmem_ops;
 142 
 143 #endif  /* _KERNEL || _FAKE_KERNEL */
 144 
 145 #ifdef  __cplusplus
 146 }
 147 #endif
 148 
 149 #endif  /* _VM_SEG_KMEM_H */