Print this page
NEX-9752 backport illumos 6950 ARC should cache compressed data
Reviewed by: Saso Kiselkov <saso.kiselkov@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
6950 ARC should cache compressed data
Reviewed by: Prakash Surya <prakash.surya@delphix.com>
Reviewed by: Dan Kimmel <dan.kimmel@delphix.com>
Reviewed by: Matt Ahrens <mahrens@delphix.com>
Reviewed by: Paul Dagnelie <pcd@delphix.com>
Reviewed by: Don Brady <don.brady@intel.com>
Reviewed by: Richard Elling <Richard.Elling@RichardElling.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
NEX-2787 Multiple comstar / fibre channel / qlt threads stuck waiting on locks with a spinning interrupt thread
Reviewed by: Rob Gittins <rob.gittins@nexenta.com>
Approved by: Jean McCormack <jean.mccormack@nexenta.com>
Re #9567, Rb 2860. V8 support for mdb
   1 #
   2 # Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.

   3 # Copyright (c) 2013, 2015 by Delphix. All rights reserved.
   4 #
   5 # CDDL HEADER START
   6 #
   7 # The contents of this file are subject to the terms of the
   8 # Common Development and Distribution License (the "License").
   9 # You may not use this file except in compliance with the License.
  10 #
  11 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
  12 # or http://www.opensolaris.org/os/licensing.
  13 # See the License for the specific language governing permissions
  14 # and limitations under the License.
  15 #
  16 # When distributing Covered Code, include this CDDL HEADER in each
  17 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  18 # If applicable, add the following below this CDDL HEADER, with the
  19 # fields enclosed by brackets "[]" replaced with your own identifying
  20 # information: Portions Copyright [yyyy] [name of copyright owner]
  21 #
  22 # CDDL HEADER END


  27 #
  28 # WARNING:  STOP NOW.  DO NOT MODIFY THIS FILE.
  29 # Object versioning must comply with the rules detailed in
  30 #
  31 #       usr/src/lib/README.mapfiles
  32 #
  33 # You should not be making modifications here until you've read the most current
  34 # copy of that file. If you need help, contact a gatekeeper for guidance.
  35 #
  36 # MAPFILE HEADER END
  37 #
  38 
  39 $mapfile_version 2
  40 
  41 # External interface requirements
  42 SYMBOL_SCOPE {
  43         global:
  44 #               Plwp_iter                       { FLAGS = EXTERN };
  45 #               Pmapping_iter                   { FLAGS = EXTERN };
  46 



  47                 _mdb_ks_ncpu                    { FLAGS = EXTERN };
  48                 _mdb_ks_pagemask                { FLAGS = EXTERN };
  49                 _mdb_ks_pageoffset              { FLAGS = EXTERN };
  50                 _mdb_ks_pageshift               { FLAGS = EXTERN };
  51                 _mdb_ks_pagesize                { FLAGS = EXTERN };
  52 
  53                 mdb                             { FLAGS = EXTERN };
  54                 mdb_add_walker                  { FLAGS = EXTERN };
  55                 mdb_alloc                       { FLAGS = EXTERN };
  56                 mdb_aread                       { FLAGS = EXTERN };
  57                 mdb_awrite                      { FLAGS = EXTERN };
  58                 mdb_call_dcmd                   { FLAGS = EXTERN };
  59                 mdb_callback_add                { FLAGS = EXTERN };
  60                 mdb_callback_remove             { FLAGS = EXTERN };
  61                 mdb_cpuset_find                 { FLAGS = EXTERN };
  62                 mdb_ctf_array_info              { FLAGS = EXTERN };
  63                 mdb_ctf_enum_name               { FLAGS = EXTERN };
  64                 mdb_ctf_lookup_by_addr          { FLAGS = EXTERN };
  65                 mdb_ctf_lookup_by_name          { FLAGS = EXTERN };
  66                 mdb_ctf_member_iter             { FLAGS = EXTERN };


   1 #
   2 # Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
   3 # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
   4 # Copyright (c) 2013, 2015 by Delphix. All rights reserved.
   5 #
   6 # CDDL HEADER START
   7 #
   8 # The contents of this file are subject to the terms of the
   9 # Common Development and Distribution License (the "License").
  10 # You may not use this file except in compliance with the License.
  11 #
  12 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
  13 # or http://www.opensolaris.org/os/licensing.
  14 # See the License for the specific language governing permissions
  15 # and limitations under the License.
  16 #
  17 # When distributing Covered Code, include this CDDL HEADER in each
  18 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  19 # If applicable, add the following below this CDDL HEADER, with the
  20 # fields enclosed by brackets "[]" replaced with your own identifying
  21 # information: Portions Copyright [yyyy] [name of copyright owner]
  22 #
  23 # CDDL HEADER END


  28 #
  29 # WARNING:  STOP NOW.  DO NOT MODIFY THIS FILE.
  30 # Object versioning must comply with the rules detailed in
  31 #
  32 #       usr/src/lib/README.mapfiles
  33 #
  34 # You should not be making modifications here until you've read the most current
  35 # copy of that file. If you need help, contact a gatekeeper for guidance.
  36 #
  37 # MAPFILE HEADER END
  38 #
  39 
  40 $mapfile_version 2
  41 
  42 # External interface requirements
  43 SYMBOL_SCOPE {
  44         global:
  45 #               Plwp_iter                       { FLAGS = EXTERN };
  46 #               Pmapping_iter                   { FLAGS = EXTERN };
  47 
  48                 list_head                       { FLAGS = EXTERN };
  49                 list_next                       { FLAGS = EXTERN };
  50 
  51                 _mdb_ks_ncpu                    { FLAGS = EXTERN };
  52                 _mdb_ks_pagemask                { FLAGS = EXTERN };
  53                 _mdb_ks_pageoffset              { FLAGS = EXTERN };
  54                 _mdb_ks_pageshift               { FLAGS = EXTERN };
  55                 _mdb_ks_pagesize                { FLAGS = EXTERN };
  56 
  57                 mdb                             { FLAGS = EXTERN };
  58                 mdb_add_walker                  { FLAGS = EXTERN };
  59                 mdb_alloc                       { FLAGS = EXTERN };
  60                 mdb_aread                       { FLAGS = EXTERN };
  61                 mdb_awrite                      { FLAGS = EXTERN };
  62                 mdb_call_dcmd                   { FLAGS = EXTERN };
  63                 mdb_callback_add                { FLAGS = EXTERN };
  64                 mdb_callback_remove             { FLAGS = EXTERN };
  65                 mdb_cpuset_find                 { FLAGS = EXTERN };
  66                 mdb_ctf_array_info              { FLAGS = EXTERN };
  67                 mdb_ctf_enum_name               { FLAGS = EXTERN };
  68                 mdb_ctf_lookup_by_addr          { FLAGS = EXTERN };
  69                 mdb_ctf_lookup_by_name          { FLAGS = EXTERN };
  70                 mdb_ctf_member_iter             { FLAGS = EXTERN };