1# 2# CDDL HEADER START 3# 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. 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# 23# Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved. 24# Copyright (c) 2012 Nexenta Systems, Inc. All rights reserved. 25# Copyright (c) 2012 Nexenta Systems, Inc. All rights reserved. 26# Copyright (c) 2012 Joyent, Inc. All rights reserved. 27# Copyright (c) 2011, 2014 by Delphix. All rights reserved. 28# Copyright (c) 2013 by Saso Kiselkov. All rights reserved. 29# 30# 31# This Makefile defines all file modules for the directory uts/common 32# and its children. These are the source files which may be considered 33# common to all SunOS systems. 34 35ZFS_COMMON_OBJS += \ 36 arc.o \ 37 bplist.o \ 38 blkptr.o \ 39 bpobj.o \ 40 bptree.o \ 41 bqueue.o \ 42 dbuf.o \ 43 ddt.o \ 44 ddt_zap.o \ 45 dmu.o \ 46 dmu_diff.o \ 47 dmu_send.o \ 48 dmu_object.o \ 49 dmu_objset.o \ 50 dmu_traverse.o \ 51 dmu_tx.o \ 52 dnode.o \ 53 dnode_sync.o \ 54 dsl_bookmark.o \ 55 dsl_dir.o \ 56 dsl_dataset.o \ 57 dsl_deadlist.o \ 58 dsl_destroy.o \ 59 dsl_pool.o \ 60 dsl_synctask.o \ 61 dsl_userhold.o \ 62 dmu_zfetch.o \ 63 dsl_deleg.o \ 64 dsl_prop.o \ 65 dsl_scan.o \ 66 zfeature.o \ 67 gzip.o \ 68 lz4.o \ 69 lzjb.o \ 70 metaslab.o \ 71 multilist.o \ 72 range_tree.o \ 73 refcount.o \ 74 rrwlock.o \ 75 sa.o \ 76 sha256.o \ 77 spa.o \ 78 spa_config.o \ 79 spa_errlog.o \ 80 spa_history.o \ 81 spa_misc.o \ 82 space_map.o \ 83 space_reftree.o \ 84 txg.o \ 85 uberblock.o \ 86 unique.o \ 87 vdev.o \ 88 vdev_cache.o \ 89 vdev_file.o \ 90 vdev_label.o \ 91 vdev_mirror.o \ 92 vdev_missing.o \ 93 vdev_queue.o \ 94 vdev_raidz.o \ 95 vdev_root.o \ 96 zap.o \ 97 zap_leaf.o \ 98 zap_micro.o \ 99 zfs_byteswap.o \ 100 zfs_debug.o \ 101 zfs_fm.o \ 102 zfs_fuid.o \ 103 zfs_sa.o \ 104 zfs_znode.o \ 105 zil.o \ 106 zio.o \ 107 zio_checksum.o \ 108 zio_compress.o \ 109 zio_inject.o \ 110 zle.o \ 111 zrlock.o 112 113ZFS_SHARED_OBJS += \ 114 zfeature_common.o \ 115 zfs_comutil.o \ 116 zfs_deleg.o \ 117 zfs_fletcher.o \ 118 zfs_namecheck.o \ 119 zfs_prop.o \ 120 zpool_prop.o \ 121 zprop_common.o 122 123ZFS_OBJS += \ 124 $(ZFS_COMMON_OBJS) \ 125 $(ZFS_SHARED_OBJS) \ 126 zfs_acl.o \ 127 zfs_ctldir.o \ 128 zfs_dir.o \ 129 zfs_ioctl.o \ 130 zfs_ioctl_compat.o \ 131 zfs_log.o \ 132 zfs_onexit.o \ 133 zfs_replay.o \ 134 zfs_rlock.o \ 135 zfs_vfsops.o \ 136 zfs_vnops.o \ 137 zvol.o 138