Commit e6b18e68 authored by Tim Gardner's avatar Tim Gardner

UBUNTU: SPL/ZFS: Add Makefiles in order to avoid the lengthy config

Signed-off-by: default avatarTim Gardner <tim.gardner@canonical.com>
parent 2ed8da46
subdir-m += spl
subdir-m += splat
INSTALL_MOD_DIR ?= extra
SPL_MODULE_CFLAGS = -I/home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/include
SPL_MODULE_CFLAGS += -include /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/spl_config.h
export SPL_MODULE_CFLAGS
modules:
$(MAKE) -C /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic SUBDIRS=`pwd` O=/home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic CONFIG_SPL=m $@
clean:
@# Only cleanup the kernel build directories when CONFIG_KERNEL
@# is defined. This indicates that kernel modules should be built.
$(MAKE) -C /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic SUBDIRS=`pwd` O=/home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic $@
if [ -f Module.symvers ]; then $(RM) Module.symvers; fi
if [ -f Module.markers ]; then $(RM) Module.markers; fi
modules_install:
@# Install the kernel modules
$(MAKE) -C /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic SUBDIRS=`pwd` $@ \
INSTALL_MOD_PATH=$(DESTDIR)$(INSTALL_MOD_PATH) \
INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) \
KERNELRELEASE=4.3.0-0-generic
@# Remove extraneous build products when packaging
kmoddir=$(DESTDIR)$(INSTALL_MOD_PATH)/lib/modules/4.3.0-0-generic; \
if [ -n $$kmoddir ]; then \
find $$kmoddir -name 'modules.*' | xargs $(RM); \
fi
sysmap=$(DESTDIR)$(INSTALL_MOD_PATH)/boot/System.map-4.3.0-0-generic; \
if [ -f $$sysmap ]; then \
depmod -ae -F $$sysmap 4.3.0-0-generic; \
fi
modules_uninstall:
@# Uninstall the kernel modules
kmoddir=$(DESTDIR)$(INSTALL_MOD_PATH)/lib/modules/4.3.0-0-generic
list='$(subdir-m)'; for subdir in $$list; do \
$(RM) -R $$kmoddir/$(INSTALL_MOD_DIR)/$$subdir; \
done
distdir:
list='$(subdir-m)'; for subdir in $$list; do \
(find ../module/$$subdir -name '*.c' -o -name '*.h' |\
xargs /bin/cp -t $$distdir/$$subdir); \
done
distclean maintainer-clean: clean
install: modules_install
uninstall: modules_uninstall
all: modules
check:
# Makefile.in for spl kernel module
MODULE := spl
EXTRA_CFLAGS = $(SPL_MODULE_CFLAGS)
# Solaris porting layer module
obj-$(CONFIG_SPL) := $(MODULE).o
$(MODULE)-objs += spl-proc.o
$(MODULE)-objs += spl-kmem.o
$(MODULE)-objs += spl-kmem-cache.o
$(MODULE)-objs += spl-vmem.o
$(MODULE)-objs += spl-thread.o
$(MODULE)-objs += spl-taskq.o
$(MODULE)-objs += spl-rwlock.o
$(MODULE)-objs += spl-vnode.o
$(MODULE)-objs += spl-err.o
$(MODULE)-objs += spl-kobj.o
$(MODULE)-objs += spl-generic.o
$(MODULE)-objs += spl-atomic.o
$(MODULE)-objs += spl-mutex.o
$(MODULE)-objs += spl-kstat.o
$(MODULE)-objs += spl-condvar.o
$(MODULE)-objs += spl-xdr.o
$(MODULE)-objs += spl-cred.o
$(MODULE)-objs += spl-tsd.o
$(MODULE)-objs += spl-zlib.o
# Makefile.in for splat kernel module
MODULE := splat
EXTRA_CFLAGS = $(SPL_MODULE_CFLAGS)
# Solaris Porting LAyer Tests
obj-$(CONFIG_SPL) := $(MODULE).o
$(MODULE)-objs += splat-ctl.o
$(MODULE)-objs += splat-kmem.o
$(MODULE)-objs += splat-taskq.o
$(MODULE)-objs += splat-random.o
$(MODULE)-objs += splat-mutex.o
$(MODULE)-objs += splat-condvar.o
$(MODULE)-objs += splat-thread.o
$(MODULE)-objs += splat-rwlock.o
$(MODULE)-objs += splat-time.o
$(MODULE)-objs += splat-vnode.o
$(MODULE)-objs += splat-kobj.o
$(MODULE)-objs += splat-atomic.o
$(MODULE)-objs += splat-list.o
$(MODULE)-objs += splat-generic.o
$(MODULE)-objs += splat-cred.o
$(MODULE)-objs += splat-zlib.o
$(MODULE)-objs += splat-linux.o
0.6.5.3-0ubuntu1
/* spl_config.h. Generated from spl_config.h.in by configure. */
/* spl_config.h.in. Generated from configure.ac by autoheader. */
/* Atomic types use spinlocks */
/* #undef ATOMIC_SPINLOCK */
/* Define to 1 to enable basic kmem accounting */
/* #undef DEBUG_KMEM */
/* Define to 1 to enable detailed kmem tracking */
/* #undef DEBUG_KMEM_TRACKING */
/* new shrinker callback wants 2 args */
/* #undef HAVE_2ARGS_NEW_SHRINKER_CALLBACK */
/* old shrinker callback wants 2 args */
/* #undef HAVE_2ARGS_OLD_SHRINKER_CALLBACK */
/* vfs_fsync() wants 2 args */
#define HAVE_2ARGS_VFS_FSYNC 1
/* vfs_getattr wants 2 args */
#define HAVE_2ARGS_VFS_GETATTR 1
/* vfs_unlink() wants 2 args */
/* #undef HAVE_2ARGS_VFS_UNLINK */
/* zlib_deflate_workspacesize() wants 2 args */
#define HAVE_2ARGS_ZLIB_DEFLATE_WORKSPACESIZE 1
/* old shrinker callback wants 3 args */
/* #undef HAVE_3ARGS_SHRINKER_CALLBACK */
/* vfs_unlink() wants 3 args */
#define HAVE_3ARGS_VFS_UNLINK 1
/* vfs_rename() wants 4 args */
/* #undef HAVE_4ARGS_VFS_RENAME */
/* vfs_rename() wants 5 args */
/* #undef HAVE_5ARGS_VFS_RENAME */
/* vfs_rename() wants 6 args */
#define HAVE_6ARGS_VFS_RENAME 1
/* kernel defines atomic64_t */
#define HAVE_ATOMIC64_T 1
/* struct ctl_table has ctl_name */
/* #undef HAVE_CTL_NAME */
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* fops->fallocate() exists */
#define HAVE_FILE_FALLOCATE 1
/* struct fs_struct uses spinlock_t */
#define HAVE_FS_STRUCT_SPINLOCK 1
/* fops->fallocate() exists */
/* #undef HAVE_INODE_FALLOCATE */
/* truncate_range() inode operation is available */
/* #undef HAVE_INODE_TRUNCATE_RANGE */
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* struct kmem_cache has allocflags */
/* #undef HAVE_KMEM_CACHE_ALLOCFLAGS */
/* struct kmem_cache has gfpflags */
/* #undef HAVE_KMEM_CACHE_GFPFLAGS */
/* kuid_t/kgid_t in use */
#define HAVE_KUIDGID_T 1
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* yes */
#define HAVE_PDE_DATA 1
/* __put_task_struct() is available */
#define HAVE_PUT_TASK_STRUCT 1
/* linux/sched/rt.h exists */
#define HAVE_SCHED_RT_HEADER 1
/* set_fs_pwd() needs const path * */
#define HAVE_SET_FS_PWD_WITH_CONST 1
/* struct shrink_control exists */
#define HAVE_SHRINK_CONTROL_STRUCT 1
/* ->count_objects exists */
#define HAVE_SPLIT_SHRINKER_CALLBACK 1
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* usleep_range is available */
#define HAVE_USLEEP_RANGE 1
/* yes */
/* #undef HAVE_WAIT_ON_BIT_ACTION */
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#define LT_OBJDIR ".libs/"
/* struct rw_semaphore member wait_lock is raw_spinlock_t */
#define RWSEM_SPINLOCK_IS_RAW 1
/* Define to 1 if GPL-only symbols can be used */
#define SPL_IS_GPL_COMPATIBLE 1
/* Define the project alias string. */
#define SPL_META_ALIAS "spl-0.6.5.3-0ubuntu1"
/* Define the project author. */
#define SPL_META_AUTHOR "OpenZFS on Linux"
/* Define the project release date. */
/* #undef SPL_META_DATA */
/* Define the project license. */
#define SPL_META_LICENSE "GPL"
/* Define the libtool library 'age' version information. */
/* #undef SPL_META_LT_AGE */
/* Define the libtool library 'current' version information. */
/* #undef SPL_META_LT_CURRENT */
/* Define the libtool library 'revision' version information. */
/* #undef SPL_META_LT_REVISION */
/* Define the project name. */
#define SPL_META_NAME "spl"
/* Define the project release. */
#define SPL_META_RELEASE "0ubuntu1"
/* Define the project version. */
#define SPL_META_VERSION "0.6.5.3"
subdir-m += avl
subdir-m += nvpair
subdir-m += unicode
subdir-m += zcommon
subdir-m += zfs
subdir-m += zpios
INSTALL_MOD_DIR ?= extra
ZFS_MODULE_CFLAGS += -include /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/spl_config.h
ZFS_MODULE_CFLAGS += -include /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/zfs/zfs_config.h
ZFS_MODULE_CFLAGS += -I/home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/zfs/include -I/home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/include -I/home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl
export ZFS_MODULE_CFLAGS
modules:
@# Make the exported SPL symbols available to these modules.
@# They may be in the root of SPL_OBJ when building against
@# installed devel headers, or they may be in the module
@# subdirectory when building against the spl source tree.
@if [ -f /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/Module.symvers ]; then \
/bin/cp /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/Module.symvers .; \
elif [ -f /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/module/Module.symvers ]; then \
/bin/cp /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/module/Module.symvers .; \
else \
echo -e "\n" \
"*** Missing spl symbols ensure you have built the spl:\n" \
"*** - /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/Module.symvers, or\n" \
"*** - /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic/spl/module/Module.symvers\n"; \
exit 1; \
fi
$(MAKE) -C /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic SUBDIRS=`pwd` O=/home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic CONFIG_ZFS=m $@
clean:
@# Only cleanup the kernel build directories when CONFIG_KERNEL
@# is defined. This indicates that kernel modules should be built.
$(MAKE) -C /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic SUBDIRS=`pwd` O=/home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic $@
if [ -f Module.symvers ]; then $(RM) Module.symvers; fi
if [ -f Module.symvers ]; then $(RM) Module.symvers; fi
if [ -f Module.markers ]; then $(RM) Module.markers; fi
modules_install:
@# Install the kernel modules
$(MAKE) -C /home/rtg/ukb/xenial/amd64/master-next/ubuntu-xenial/debian/build/build-generic SUBDIRS=`pwd` $@ \
INSTALL_MOD_PATH=$(DESTDIR)$(INSTALL_MOD_PATH) \
INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) \
KERNELRELEASE=4.3.0-0-generic
@# Remove extraneous build products when packaging
kmoddir=$(DESTDIR)$(INSTALL_MOD_PATH)/lib/modules/4.3.0-0-generic; \
if [ -n $$kmoddir ]; then \
find $$kmoddir -name 'modules.*' | xargs $(RM); \
fi
sysmap=$(DESTDIR)$(INSTALL_MOD_PATH)/boot/System.map-4.3.0-0-generic; \
if [ -f $$sysmap ]; then \
depmod -ae -F $$sysmap 4.3.0-0-generic; \
fi
modules_uninstall:
@# Uninstall the kernel modules
kmoddir=$(DESTDIR)$(INSTALL_MOD_PATH)/lib/modules/4.3.0-0-generic
list='$(subdir-m)'; for subdir in $$list; do \
$(RM) -R $$kmoddir/$(INSTALL_MOD_DIR)/$$subdir; \
done
distdir:
list='$(subdir-m)'; for subdir in $$list; do \
(find ../module/$$subdir -name '*.c' -o -name '*.h' |\
xargs /bin/cp -t $$distdir/$$subdir); \
done
distclean maintainer-clean: clean
install: modules_install
uninstall: modules_uninstall
all: modules
check:
MODULE := zavl
EXTRA_CFLAGS = $(ZFS_MODULE_CFLAGS) -DHAVE_SPL
obj-$(CONFIG_ZFS) := $(MODULE).o
$(MODULE)-objs += avl.o
MODULE := znvpair
EXTRA_CFLAGS = $(ZFS_MODULE_CFLAGS) -DHAVE_SPL
obj-$(CONFIG_ZFS) := $(MODULE).o
$(MODULE)-objs += nvpair.o
$(MODULE)-objs += fnvpair.o
$(MODULE)-objs += nvpair_alloc_spl.o
$(MODULE)-objs += nvpair_alloc_fixed.o
MODULE := zunicode
EXTRA_CFLAGS = $(ZFS_MODULE_CFLAGS) -DHAVE_SPL
obj-$(CONFIG_ZFS) := $(MODULE).o
$(MODULE)-objs += u8_textprep.o
$(MODULE)-objs += uconv.o
MODULE := zcommon
EXTRA_CFLAGS = $(ZFS_MODULE_CFLAGS) -DHAVE_SPL
obj-$(CONFIG_ZFS) := $(MODULE).o
$(MODULE)-objs += zfs_deleg.o
$(MODULE)-objs += zfs_prop.o
$(MODULE)-objs += zprop_common.o
$(MODULE)-objs += zfs_namecheck.o
$(MODULE)-objs += zfs_comutil.o
$(MODULE)-objs += zfs_fletcher.o
$(MODULE)-objs += zfs_uio.o
$(MODULE)-objs += zpool_prop.o
MODULE := zfs
EXTRA_CFLAGS = $(ZFS_MODULE_CFLAGS) -DHAVE_SPL
obj-$(CONFIG_ZFS) := $(MODULE).o
$(MODULE)-objs += arc.o
$(MODULE)-objs += blkptr.o
$(MODULE)-objs += bplist.o
$(MODULE)-objs += bpobj.o
$(MODULE)-objs += dbuf.o
$(MODULE)-objs += dbuf_stats.o
$(MODULE)-objs += bptree.o
$(MODULE)-objs += ddt.o
$(MODULE)-objs += ddt_zap.o
$(MODULE)-objs += dmu.o
$(MODULE)-objs += dmu_diff.o
$(MODULE)-objs += dmu_object.o
$(MODULE)-objs += dmu_objset.o
$(MODULE)-objs += dmu_send.o
$(MODULE)-objs += dmu_traverse.o
$(MODULE)-objs += dmu_tx.o
$(MODULE)-objs += dmu_zfetch.o
$(MODULE)-objs += dnode.o
$(MODULE)-objs += dnode_sync.o
$(MODULE)-objs += dsl_dataset.o
$(MODULE)-objs += dsl_deadlist.o
$(MODULE)-objs += dsl_deleg.o
$(MODULE)-objs += dsl_bookmark.o
$(MODULE)-objs += dsl_dir.o
$(MODULE)-objs += dsl_pool.o
$(MODULE)-objs += dsl_prop.o
$(MODULE)-objs += dsl_scan.o
$(MODULE)-objs += dsl_synctask.o
$(MODULE)-objs += fm.o
$(MODULE)-objs += gzip.o
$(MODULE)-objs += lzjb.o
$(MODULE)-objs += lz4.o
$(MODULE)-objs += metaslab.o
$(MODULE)-objs += multilist.o
$(MODULE)-objs += range_tree.o
$(MODULE)-objs += refcount.o
$(MODULE)-objs += rrwlock.o
$(MODULE)-objs += sa.o
$(MODULE)-objs += sha256.o
$(MODULE)-objs += spa.o
$(MODULE)-objs += spa_boot.o
$(MODULE)-objs += spa_config.o
$(MODULE)-objs += spa_errlog.o
$(MODULE)-objs += spa_history.o
$(MODULE)-objs += spa_misc.o
$(MODULE)-objs += spa_stats.o
$(MODULE)-objs += space_map.o
$(MODULE)-objs += space_reftree.o
$(MODULE)-objs += txg.o
$(MODULE)-objs += trace.o
$(MODULE)-objs += uberblock.o
$(MODULE)-objs += unique.o
$(MODULE)-objs += vdev.o
$(MODULE)-objs += vdev_cache.o
$(MODULE)-objs += vdev_disk.o
$(MODULE)-objs += vdev_file.o
$(MODULE)-objs += vdev_label.o
$(MODULE)-objs += vdev_mirror.o
$(MODULE)-objs += vdev_missing.o
$(MODULE)-objs += vdev_queue.o
$(MODULE)-objs += vdev_raidz.o
$(MODULE)-objs += vdev_root.o
$(MODULE)-objs += zap.o
$(MODULE)-objs += zap_leaf.o
$(MODULE)-objs += zap_micro.o
$(MODULE)-objs += zfeature.o
$(MODULE)-objs += zfeature_common.o
$(MODULE)-objs += zfs_acl.o
$(MODULE)-objs += zfs_byteswap.o
$(MODULE)-objs += zfs_ctldir.o
$(MODULE)-objs += zfs_debug.o
$(MODULE)-objs += zfs_dir.o
$(MODULE)-objs += zfs_fm.o
$(MODULE)-objs += zfs_fuid.o
$(MODULE)-objs += zfs_ioctl.o
$(MODULE)-objs += zfs_log.o
$(MODULE)-objs += zfs_onexit.o
$(MODULE)-objs += zfs_replay.o
$(MODULE)-objs += zfs_rlock.o
$(MODULE)-objs += zfs_sa.o
$(MODULE)-objs += zfs_vfsops.o
$(MODULE)-objs += zfs_vnops.o
$(MODULE)-objs += zfs_znode.o
$(MODULE)-objs += zil.o
$(MODULE)-objs += zio.o
$(MODULE)-objs += zio_checksum.o
$(MODULE)-objs += zio_compress.o
$(MODULE)-objs += zio_inject.o
$(MODULE)-objs += zle.o
$(MODULE)-objs += zpl_ctldir.o
$(MODULE)-objs += zpl_export.o
$(MODULE)-objs += zpl_file.o
$(MODULE)-objs += zpl_inode.o
$(MODULE)-objs += zpl_super.o
$(MODULE)-objs += zpl_xattr.o
$(MODULE)-objs += zrlock.o
$(MODULE)-objs += zvol.o
$(MODULE)-objs += dsl_destroy.o
$(MODULE)-objs += dsl_userhold.o
MODULE := zpios
EXTRA_CFLAGS = $(ZFS_MODULE_CFLAGS) -DHAVE_SPL
obj-$(CONFIG_ZFS) := $(MODULE).o
$(MODULE)-objs += pios.o
0.6.5.3-0ubuntu2
/* zfs_config.h. Generated from zfs_config.h.in by configure. */
/* zfs_config.h.in. Generated from configure.ac by autoheader. */
/* Define to 1 to enabled dmu tx validation */
/* #undef DEBUG_DMU_TX */
/* bio_end_io_t wants 1 arg */
#define HAVE_1ARG_BIO_END_IO_T 1
/* invalidate_bdev() wants 1 arg */
#define HAVE_1ARG_INVALIDATE_BDEV 1
/* kmap_atomic wants 1 args */
#define HAVE_1ARG_KMAP_ATOMIC 1
/* bdi_setup_and_register() wants 2 args */
#define HAVE_2ARGS_BDI_SETUP_AND_REGISTER 1
/* bdi_setup_and_register() wants 3 args */
/* #undef HAVE_3ARGS_BDI_SETUP_AND_REGISTER */
/* blkdev_get() wants 3 args */
#define HAVE_3ARG_BLKDEV_GET 1
/* sget() wants 5 args */
#define HAVE_5ARG_SGET 1
/* security_inode_init_security wants 6 args */
/* #undef HAVE_6ARGS_SECURITY_INODE_INIT_SECURITY */
/* dops->automount() exists */
#define HAVE_AUTOMOUNT 1
/* struct block_device_operations use bdevs */
#define HAVE_BDEV_BLOCK_DEVICE_OPERATIONS 1
/* bdev_logical_block_size() is available */
#define HAVE_BDEV_LOGICAL_BLOCK_SIZE 1
/* bdev_physical_block_size() is available */
#define HAVE_BDEV_PHYSICAL_BLOCK_SIZE 1
/* bio has bi_iter */
#define HAVE_BIO_BVEC_ITER 1
/* BIO_RW_BARRIER is defined */
/* #undef HAVE_BIO_RW_BARRIER */
/* BIO_RW_DISCARD is defined */
/* #undef HAVE_BIO_RW_DISCARD */
/* BIO_RW_FAILFAST_* are defined */
/* #undef HAVE_BIO_RW_FAILFAST_DTD */
/* blkdev_get_by_path() is available */
#define HAVE_BLKDEV_GET_BY_PATH 1
/* blk_queue_flush() is available */
#define HAVE_BLK_QUEUE_FLUSH 1
/* blk_queue_flush() is GPL-only */
#define HAVE_BLK_QUEUE_FLUSH_GPL_ONLY 1
/* blk_queue_max_hw_sectors() is available */
#define HAVE_BLK_QUEUE_MAX_HW_SECTORS 1
/* blk_queue_max_segments() is available */
#define HAVE_BLK_QUEUE_MAX_SEGMENTS 1
/* struct block_device_operations.release returns void */
#define HAVE_BLOCK_DEVICE_OPERATIONS_RELEASE_VOID 1
/* security_inode_init_security wants callback */
#define HAVE_CALLBACK_SECURITY_INODE_INIT_SECURITY 1
/* iops->check_acl() exists */
/* #undef HAVE_CHECK_ACL */
/* iops->check_acl() wants flags */
/* #undef HAVE_CHECK_ACL_WITH_FLAGS */
/* check_disk_size_change() is available */
#define HAVE_CHECK_DISK_SIZE_CHANGE 1
/* clear_inode() is available */
#define HAVE_CLEAR_INODE 1
/* eops->commit_metadata() exists */
#define HAVE_COMMIT_METADATA 1
/* dentry uses const struct dentry_operations */
#define HAVE_CONST_DENTRY_OPERATIONS 1
/* super_block uses const struct xattr_hander */
#define HAVE_CONST_XATTR_HANDLER 1
/* iops->create() passes nameidata */
/* #undef HAVE_CREATE_NAMEIDATA */
/* current->bio_list exists */
#define HAVE_CURRENT_BIO_LIST 1
/* current->bio_tail exists */
/* #undef HAVE_CURRENT_BIO_TAIL */
/* current_umask() exists */
#define HAVE_CURRENT_UMASK 1
/* DECLARE_EVENT_CLASS() is available */
/* #undef HAVE_DECLARE_EVENT_CLASS */
/* xattr_handler->get() wants dentry */
#define HAVE_DENTRY_XATTR_GET 1
/* xattr_handler->list() wants dentry */
#define HAVE_DENTRY_XATTR_LIST 1
/* xattr_handler->set() wants dentry */
#define HAVE_DENTRY_XATTR_SET 1
/* sops->dirty_inode() wants flags */
#define HAVE_DIRTY_INODE_WITH_FLAGS 1
/* ql->discard_granularity is available */
#define HAVE_DISCARD_GRANULARITY 1
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* d_make_root() is available */
#define HAVE_D_MAKE_ROOT 1
/* d_obtain_alias() is available */
#define HAVE_D_OBTAIN_ALIAS 1
/* d_prune_aliases() is available */
#define HAVE_D_PRUNE_ALIASES 1
/* dops->d_revalidate() operation takes nameidata */
/* #undef HAVE_D_REVALIDATE_NAMEIDATA */
/* d_set_d_op() is available */
#define HAVE_D_SET_D_OP 1
/* elevator_change() is available */
#define HAVE_ELEVATOR_CHANGE 1
/* eops->encode_fh() wants child and parent inodes */
#define HAVE_ENCODE_FH_WITH_INODE 1
/* sops->evict_inode() exists */
#define HAVE_EVICT_INODE 1
/* fops->fallocate() exists */
#define HAVE_FILE_FALLOCATE 1
/* file_inode() is available */
#define HAVE_FILE_INODE 1
/* kernel defines fmode_t */
#define HAVE_FMODE_T 1
/* follow_down_one() is available */
#define HAVE_FOLLOW_DOWN_ONE 1
/* iops->follow_link() nameidata */
/* #undef HAVE_FOLLOW_LINK_NAMEIDATA */
/* sops->free_cached_objects() exists */
/* #undef HAVE_FREE_CACHED_OBJECTS */
/* fops->fsync() with range */
#define HAVE_FSYNC_RANGE 1
/* fops->fsync() without dentry */
/* #undef HAVE_FSYNC_WITHOUT_DENTRY */
/* fops->fsync() with dentry */
/* #undef HAVE_FSYNC_WITH_DENTRY */
/* generic_start_io_acct()/generic_end_io_acct() avaliable */
#define HAVE_GENERIC_IO_ACCT 1
/* iops->get_acl() exists */
#define HAVE_GET_ACL 1
/* blk_disk_ro() is available */
#define HAVE_GET_DISK_RO 1
/* get_gendisk() is available */
#define HAVE_GET_GENDISK 1
/* fops->fallocate() exists */
/* #undef HAVE_INODE_FALLOCATE */
/* inode_owner_or_capable() exists */
#define HAVE_INODE_OWNER_OR_CAPABLE 1
/* iops->truncate_range() exists */
/* #undef HAVE_INODE_TRUNCATE_RANGE */
/* insert_inode_locked() is available */
#define HAVE_INSERT_INODE_LOCKED 1
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* is_owner_or_cap() exists */
/* #undef HAVE_IS_OWNER_OR_CAP */
/* kernel defines KOBJ_NAME_LEN */
/* #undef HAVE_KOBJ_NAME_LEN */
/* Define if you have libblkid */
/* #undef HAVE_LIBBLKID */
/* Define if you have libuuid */
/* #undef HAVE_LIBUUID */
/* Define to 1 if you have the `z' library (-lz). */
/* #undef HAVE_LIBZ */
/* lookup_bdev() is available */
#define HAVE_LOOKUP_BDEV 1
/* iops->lookup() passes nameidata */
/* #undef HAVE_LOOKUP_NAMEIDATA */
/* lseek_execute() is available */
/* #undef HAVE_LSEEK_EXECUTE */
/* Noting that make_request_fn() returns int */
/* #undef HAVE_MAKE_REQUEST_FN_RET_INT */
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* iops->create()/mkdir()/mknod() take umode_t */
#define HAVE_MKDIR_UMODE_T 1
/* Define to 1 if you have the `mlockall' function. */
/* #undef HAVE_MLOCKALL */
/* mount_nodev() is available */
#define HAVE_MOUNT_NODEV 1
/* sops->nr_cached_objects() exists */
/* #undef HAVE_NR_CACHED_OBJECTS */
/* open_bdev_exclusive() is available */
/* #undef HAVE_OPEN_BDEV_EXCLUSIVE */
/* iops->permission() exists */
#define HAVE_PERMISSION 1
/* iops->permission() with nameidata exists */
/* #undef HAVE_PERMISSION_WITH_NAMEIDATA */
/* inode contains i_acl and i_default_acl */
#define HAVE_POSIX_ACL_CACHING 1
/* posix_acl_chmod() exists */
/* #undef HAVE_POSIX_ACL_CHMOD */
/* posix_acl_equiv_mode wants umode_t* */
#define HAVE_POSIX_ACL_EQUIV_MODE_UMODE_T 1
/* posix_acl_from_xattr() needs user_ns */
#define HAVE_POSIX_ACL_FROM_XATTR_USERNS 1
/* posix_acl_release() is available */
#define HAVE_POSIX_ACL_RELEASE 1
/* posix_acl_release() is GPL-only */
#define HAVE_POSIX_ACL_RELEASE_GPL_ONLY 1
/* iops->put_link() nameidata */
/* #undef HAVE_PUT_LINK_NAMEIDATA */
/* REQ_FAILFAST_MASK is defined */
#define HAVE_REQ_FAILFAST_MASK 1
/* set_nlink() is available */
#define HAVE_SET_NLINK 1
/* sops->show_options() with dentry */
#define HAVE_SHOW_OPTIONS_WITH_DENTRY 1
/* struct super_block has s_shrink */
/* #undef HAVE_SHRINK */
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* struct super_block has s_d_op */
#define HAVE_S_D_OP 1
/* struct super_block has s_instances list_head */
/* #undef HAVE_S_INSTANCES_LIST_HEAD */
/* truncate_setsize() is available */
#define HAVE_TRUNCATE_SETSIZE 1
/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* fops->iterate() is available */
#define HAVE_VFS_ITERATE 1
/* fops->readdir() is available */
/* #undef HAVE_VFS_READDIR */
/* fops->read/write_iter() are available */
#define HAVE_VFS_RW_ITERATE 1
/* Define if you have zlib */
/* #undef HAVE_ZLIB */
/* __posix_acl_chmod() exists */
#define HAVE___POSIX_ACL_CHMOD 1
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#define LT_OBJDIR ".libs/"
/* make_request_fn() returns void */
#define MAKE_REQUEST_FN_RET void
/* struct shrink_control has nid */
#define SHRINK_CONTROL_HAS_NID 1
/* zfs debugging enabled */
/* #undef ZFS_DEBUG */
/* Define to 1 if GPL-only symbols can be used */
/* #undef ZFS_IS_GPL_COMPATIBLE */
/* Define the project alias string. */
#define ZFS_META_ALIAS "zfs-0.6.5.3-0ubuntu2"
/* Define the project author. */
#define ZFS_META_AUTHOR "OpenZFS on Linux"
/* Define the project release date. */
/* #undef ZFS_META_DATA */
/* Define the project license. */
#define ZFS_META_LICENSE "CDDL"
/* Define the libtool library 'age' version information. */
/* #undef ZFS_META_LT_AGE */
/* Define the libtool library 'current' version information. */
/* #undef ZFS_META_LT_CURRENT */
/* Define the libtool library 'revision' version information. */
/* #undef ZFS_META_LT_REVISION */
/* Define the project name. */
#define ZFS_META_NAME "zfs"
/* Define the project release. */
#define ZFS_META_RELEASE "0ubuntu2"
/* Define the project version. */
#define ZFS_META_VERSION "0.6.5.3"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment