centos7:从源代码编译安装 nfs-ganesha v2.8.4
在“centos7:从源代码编译安装 nfs-ganesha” 的基础上,
从github获取v2.8.4的源代码
git clone -b V2.8.4 --recursive https://github.com/nfs-ganesha/nfs-ganesha.git cd nfs-ganesha/ git submodule update --init cd nfs-ganesha/src/libntirpc/ git submodule update --init
rm -rf *
cmake -DCMAKE_BUILD_TYPE=Maintainer -DUSE_FSAL_LUSTRE=OFF -DUSE_FSAL_GPFS=OFF -DUSE_FSAL_RGW=OFF -DUSE_FSAL_GLUSTER=OFF /root/nfs-ganesha/src/ make -j4 rpm find ~/rpmbuild/ -name "*.rpm"
cmake 配置 make 选项文件:
第 1 点:可以通过cmake的 “-i” 进入交互配置处理过程,自己根据自己的情况执行详细的配置
第 2 点:可以直接通过cmake的“-D”设置nfs-ganesha的变量“BUILD_CONFIG=everything” 来直接使用特定类型的配置文件
BUILD_CONFIG :
This setting triggers the loading of a file in src/cmake/build_configurations.
This is useful for having a "canned" configuration. There is only one
file currently in use which will turn on every option available.
第 3 点:我们也可以直接通过cmake的“-D”参数来设置 nfs-ganesha可以识别的各种配置变量,如:USE_FSAL_GPFS、USE_FSAL_CEPH ...
[root@centos2022 tweak]# rm -rf * && cmake -DCMAKE_BUILD_TYPE=Maintainer -DUSE_FSAL_GPFS=OFF -DUSE_FSAL_RGW=OFF -DUSE_FSAL_GLUSTER=OFF /root/nfs-ganesha/src/ -- cmake version 2.8 -- The C compiler identification is GNU 4.8.5 -- The CXX compiler identification is GNU 4.8.5 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- override default CMAKE_INSTALL_PREFIX = /usr -- Detected an UNKNOWN Linux machine -- toolchain options processed -- Found PkgConfig: /usr/bin/pkg-config (found version "0.27.1") -- Compilation from within a git repository. Using git rev-parse HEAD -- Looking for include file strings.h -- Looking for include file strings.h - found -- Looking for include file string.h -- Looking for include file string.h - found -- Check if the system is big endian -- Searching 16 bit integer -- Looking for sys/types.h -- Looking for sys/types.h - found -- Looking for stdint.h -- Looking for stdint.h - found -- Looking for stddef.h -- Looking for stddef.h - found -- Check size of unsigned short -- Check size of unsigned short - done -- Using unsigned short -- Check if the system is big endian - little endian -- Looking for include file pthread.h -- Looking for include file pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- found krb5-config here /usr/bin/krb5-config -- Found kerberos 5 headers: /include -- Found kerberos 5 libs: /usr/lib64/libkrb5.so;/usr/lib64/libk5crypto.so;/usr/lib64/libcom_err.so;/usr/lib64/libgssapi_krb5.so -- Looking for include file gssapi.h -- Looking for include file gssapi.h - found -- Looking for llapi_hsm_state_get_fd in lustreapi -- Looking for llapi_hsm_state_get_fd in lustreapi - not found CMake Warning at CMakeLists.txt:588 (message): Cannot find lustreapi. We will only build a dummy lustre fsal. -- -- Looking for ceph_ll_lookup in cephfs -- Looking for ceph_ll_lookup in cephfs - found -- Looking for ceph_ll_mknod in cephfs -- Looking for ceph_ll_mknod in cephfs - found -- Looking for ceph_ll_setlk in cephfs -- Looking for ceph_ll_setlk in cephfs - found -- Looking for ceph_ll_lookup_root in cephfs -- Looking for ceph_ll_lookup_root in cephfs - found -- Looking for ceph_ll_delegation in cephfs -- Looking for ceph_ll_delegation in cephfs - found -- Looking for ceph_ll_sync_inode in cephfs -- Looking for ceph_ll_sync_inode in cephfs - found -- Looking for ceph_ll_fallocate in cephfs -- Looking for ceph_ll_fallocate in cephfs - found -- Looking for ceph_abort_conn in cephfs -- Looking for ceph_abort_conn in cephfs - found -- Looking for ceph_start_reclaim in cephfs -- Looking for ceph_start_reclaim in cephfs - found -- Looking for ceph_select_filesystem in cephfs -- Looking for ceph_select_filesystem in cephfs - found -- Looking for CEPH_STATX_INO -- Looking for CEPH_STATX_INO - found -- Found cephfs libraries: /usr/lib64/libcephfs.so -- Found CEPHFS: /usr/include -- Looking for open_by_handle in handle -- Looking for open_by_handle in handle - found -- Looking for include file xfs/xfs.h -- Looking for include file xfs/xfs.h - found -- Found JeMalloc: /usr/lib64/libjemalloc.so -- checking for module 'dbus-1' -- found dbus-1, version 1.10.24 -- Found nfs idmap library: /usr/lib64/libnfsidmap.so -- Looking for wbcLookupSids in wbclient -- Looking for wbcLookupSids in wbclient - found -- Looking for 3 include files stdint.h, ..., wbclient.h -- Looking for 3 include files stdint.h, ..., wbclient.h - found -- Performing Test WBCLIENT4_H -- Performing Test WBCLIENT4_H - Success -- Found Winbind4 client: -- Looking for rados_read_op_omap_get_vals2 in rados -- Looking for rados_read_op_omap_get_vals2 in rados - found -- Found rados libraries: /usr/lib64/librados.so -- Found RADOS: /usr/include -- Found rados libraries: /usr/lib64/librados.so -- Looking for cap_set_proc in cap -- Looking for cap_set_proc in cap - found -- Found Caps: /usr/lib64/libcap.so -- Looking for include file blkid/blkid.h -- Looking for include file blkid/blkid.h - found -- Looking for blkid_devno_to_devname in blkid -- Looking for blkid_devno_to_devname in blkid - found -- Looking for include file uuid/uuid.h -- Looking for include file uuid/uuid.h - found -- Looking for uuid_parse in uuid -- Looking for uuid_parse in uuid - found -- Looking for daemon in c -- Looking for daemon in c - found -- OVERRIDE_INSTALL_PREFIX = -- found krb5-config here /usr/bin/krb5-config -- Found kerberos 5 headers: /include -- Found kerberos 5 libs: /usr/lib64/libkrb5.so;/usr/lib64/libk5crypto.so;/usr/lib64/libcom_err.so;/usr/lib64/libgssapi_krb5.so;/usr/lib64/libkrb5.so;/usr/lib64/libk5crypto.so;/usr/lib64/libcom_err.so;/usr/lib64/libgssapi_krb5.so -- Looking for include file stdbool.h -- Looking for include file stdbool.h - found -- Looking for include file sys/epoll.h -- Looking for include file sys/epoll.h - found -- Looking for epoll_create -- Looking for epoll_create - found -- Found EPOLL: 1 -- Found Winbind4 client: -- Found NSL: /usr/lib64/libnsl.so -- -- ------------------------------------------------------- -- TIRPC_EPOLL = TRUE -- USE_RPC_RDMA = OFF -- USE_GSS = ON -- USE_PROFILE = OFF -- USE_LTTNG_NTIRPC = OFF -- Using ntirpc submodule /root/nfs-ganesha/src/libntirpc/ntirpc/ -- Looking for urcu_ref_get_unless_zero -- Looking for urcu_ref_get_unless_zero - found -- Found BISON: /usr/bin/bison (found version "3.0.4") -- Found FLEX: /usr/bin/flex (found version "2.5.37") -- -- ------------------------------------------------------- -- PLATFORM = LINUX -- ARCH = x86_64 -- VERSION = 2.8.4 -- BUILD HOST = centos2022 -- ------------------------------------------------------- -- USE_FSAL_PROXY = ON -- USE_FSAL_VFS = ON -- USE_FSAL_LUSTRE = ON -- USE_FSAL_CEPH = ON -- USE_FSAL_CEPH_MKNOD = ON -- USE_FSAL_CEPH_SETLK = ON -- USE_FSAL_CEPH_LL_LOOKUP_ROOT = ON -- USE_FSAL_CEPH_STATX = ON -- USE_FSAL_CEPH_LL_DELEGATION = ON -- USE_FSAL_CEPH_LL_SYNC_INODE = ON -- USE_FSAL_CEPH_ABORT_CONN = ON -- USE_FSAL_CEPH_RECLAIM_RESET = ON -- USE_FSAL_CEPH_GET_FS_CID = ON -- USE_FSAL_RGW = OFF -- USE_FSAL_XFS = ON -- USE_FSAL_PANFS = OFF -- USE_FSAL_GPFS = OFF -- USE_FSAL_GLUSTER = OFF -- USE_FSAL_NULL = ON -- USE_FSAL_MEM = ON -- USE_SYSTEM_NTIRPC = OFF -- USE_DBUS = ON -- USE_CB_SIMULATOR = OFF -- USE_NFSIDMAP = ON -- ENABLE_ERROR_INJECTION = OFF -- ENABLE_VFS_DEBUG_ACL = OFF -- ENABLE_RFC_ACL = OFF -- USE_CAPS = ON -- USE_BLKID = ON -- DISTNAME_HAS_GIT_DATA = OFF -- _MSPAC_SUPPORT = ON -- USE_EFENCE = OFF -- _NO_TCP_REGISTER = OFF -- RPCBIND = ON -- DEBUG_SAL = OFF -- _VALGRIND_MEMCHECK = OFF -- ENABLE_LOCKTRACE = OFF -- PROXY_HANDLE_MAPPING = OFF -- DEBUG_MDCACHE = OFF -- DEBUG_SYMS = OFF -- COVERAGE = OFF -- ENFORCE_GCC = OFF -- USE_GTEST = OFF -- USE_GSS = ON -- TIRPC_EPOLL = TRUE -- USE_9P = ON -- _USE_9P = ON -- _USE_9P_RDMA = OFF -- USE_NFS_RDMA = OFF -- USE_NFS3 = ON -- USE_NLM = ON -- USE_ACL_MAPPING = OFF -- KRB5_PREFIX = -- CEPH_PREFIX = -- RGW_PREFIX = -- GLUSTER_PREFIX = -- CMAKE_PREFIX_PATH = -- _GIT_HEAD_COMMIT = 28562219dac050c3da0a0071e78ba506545982a2 -- _GIT_HEAD_COMMIT_ABBREV = 2856221 -- _GIT_DESCRIBE = V2.8.4-0-g2856221 -- ALLOCATOR = jemalloc -- GOLD_LINKER = -- CMAKE_INSTALL_PREFIX = /usr -- FSAL_DESTINATION = /usr/lib64/ganesha -- USE_ADMIN_TOOLS = OFF -- USE_GUI_ADMIN_TOOLS = ON -- MODULES_PATH = -- USE_LTTNG = OFF -- USE_BLKIN = OFF -- USE_VSOCK = OFF -- USE_TOOL_MULTILOCK = OFF -- USE_MAN_PAGE = OFF -- USE_RADOS_RECOV = ON -- RADOS_URLS = ON -- USE_CUNIT = OFF -- SANITIZE_ADDRESS = OFF -- Found LSB_RELEASE: /usr/bin/lsb_release -- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") -- Configuring done -- Generating done -- Build files have been written to: /root/tweak [root@centos2022 tweak]# [root@centos2022 tweak]#
接着,我们可以make install、或者生成rpm安装包:make rpm
[root@centos2022 tweak]# rm -rf * && cmake -DCMAKE_BUILD_TYPE=Maintainer -DUSE_FSAL_LUSTRE=OFF -DUSE_FSAL_GPFS=OFF -DUSE_FSAL_RGW=OFF -DUSE_FSAL_GLUSTER=OFF /root/nfs-ganesha/src/ -- cmake version 2.8 -- The C compiler identification is GNU 4.8.5 -- The CXX compiler identification is GNU 4.8.5 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- override default CMAKE_INSTALL_PREFIX = /usr -- Detected an UNKNOWN Linux machine -- toolchain options processed -- Found PkgConfig: /usr/bin/pkg-config (found version "0.27.1") -- Compilation from within a git repository. Using git rev-parse HEAD -- Looking for include file strings.h -- Looking for include file strings.h - found -- Looking for include file string.h -- Looking for include file string.h - found -- Check if the system is big endian -- Searching 16 bit integer -- Looking for sys/types.h -- Looking for sys/types.h - found -- Looking for stdint.h -- Looking for stdint.h - found -- Looking for stddef.h -- Looking for stddef.h - found -- Check size of unsigned short -- Check size of unsigned short - done -- Using unsigned short -- Check if the system is big endian - little endian -- Looking for include file pthread.h -- Looking for include file pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- found krb5-config here /usr/bin/krb5-config -- Found kerberos 5 headers: /include -- Found kerberos 5 libs: /usr/lib64/libkrb5.so;/usr/lib64/libk5crypto.so;/usr/lib64/libcom_err.so;/usr/lib64/libgssapi_krb5.so -- Looking for include file gssapi.h -- Looking for include file gssapi.h - found -- -- Looking for ceph_ll_lookup in cephfs -- Looking for ceph_ll_lookup in cephfs - found -- Looking for ceph_ll_mknod in cephfs -- Looking for ceph_ll_mknod in cephfs - found -- Looking for ceph_ll_setlk in cephfs -- Looking for ceph_ll_setlk in cephfs - found -- Looking for ceph_ll_lookup_root in cephfs -- Looking for ceph_ll_lookup_root in cephfs - found -- Looking for ceph_ll_delegation in cephfs -- Looking for ceph_ll_delegation in cephfs - found -- Looking for ceph_ll_sync_inode in cephfs -- Looking for ceph_ll_sync_inode in cephfs - found -- Looking for ceph_ll_fallocate in cephfs -- Looking for ceph_ll_fallocate in cephfs - found -- Looking for ceph_abort_conn in cephfs -- Looking for ceph_abort_conn in cephfs - found -- Looking for ceph_start_reclaim in cephfs -- Looking for ceph_start_reclaim in cephfs - found -- Looking for ceph_select_filesystem in cephfs -- Looking for ceph_select_filesystem in cephfs - found -- Looking for CEPH_STATX_INO -- Looking for CEPH_STATX_INO - found -- Found cephfs libraries: /usr/lib64/libcephfs.so -- Found CEPHFS: /usr/include -- Looking for open_by_handle in handle -- Looking for open_by_handle in handle - found -- Looking for include file xfs/xfs.h -- Looking for include file xfs/xfs.h - found -- Found JeMalloc: /usr/lib64/libjemalloc.so -- checking for module 'dbus-1' -- found dbus-1, version 1.10.24 -- Found nfs idmap library: /usr/lib64/libnfsidmap.so -- Looking for wbcLookupSids in wbclient -- Looking for wbcLookupSids in wbclient - found -- Looking for 3 include files stdint.h, ..., wbclient.h -- Looking for 3 include files stdint.h, ..., wbclient.h - found -- Performing Test WBCLIENT4_H -- Performing Test WBCLIENT4_H - Success -- Found Winbind4 client: -- Looking for rados_read_op_omap_get_vals2 in rados -- Looking for rados_read_op_omap_get_vals2 in rados - found -- Found rados libraries: /usr/lib64/librados.so -- Found RADOS: /usr/include -- Found rados libraries: /usr/lib64/librados.so -- Looking for cap_set_proc in cap -- Looking for cap_set_proc in cap - found -- Found Caps: /usr/lib64/libcap.so -- Looking for include file blkid/blkid.h -- Looking for include file blkid/blkid.h - found -- Looking for blkid_devno_to_devname in blkid -- Looking for blkid_devno_to_devname in blkid - found -- Looking for include file uuid/uuid.h -- Looking for include file uuid/uuid.h - found -- Looking for uuid_parse in uuid -- Looking for uuid_parse in uuid - found -- Looking for daemon in c -- Looking for daemon in c - found -- OVERRIDE_INSTALL_PREFIX = -- found krb5-config here /usr/bin/krb5-config -- Found kerberos 5 headers: /include -- Found kerberos 5 libs: /usr/lib64/libkrb5.so;/usr/lib64/libk5crypto.so;/usr/lib64/libcom_err.so;/usr/lib64/libgssapi_krb5.so;/usr/lib64/libkrb5.so;/usr/lib64/libk5crypto.so;/usr/lib64/libcom_err.so;/usr/lib64/libgssapi_krb5.so -- Looking for include file stdbool.h -- Looking for include file stdbool.h - found -- Looking for include file sys/epoll.h -- Looking for include file sys/epoll.h - found -- Looking for epoll_create -- Looking for epoll_create - found -- Found EPOLL: 1 -- Found Winbind4 client: -- Found NSL: /usr/lib64/libnsl.so -- -- ------------------------------------------------------- -- TIRPC_EPOLL = TRUE -- USE_RPC_RDMA = OFF -- USE_GSS = ON -- USE_PROFILE = OFF -- USE_LTTNG_NTIRPC = OFF -- Using ntirpc submodule /root/nfs-ganesha/src/libntirpc/ntirpc/ -- Looking for urcu_ref_get_unless_zero -- Looking for urcu_ref_get_unless_zero - found -- Found BISON: /usr/bin/bison (found version "3.0.4") -- Found FLEX: /usr/bin/flex (found version "2.5.37") -- -- ------------------------------------------------------- -- PLATFORM = LINUX -- ARCH = x86_64 -- VERSION = 2.8.4 -- BUILD HOST = centos2022 -- ------------------------------------------------------- -- USE_FSAL_PROXY = ON -- USE_FSAL_VFS = ON -- USE_FSAL_LUSTRE = OFF -- USE_FSAL_CEPH = ON -- USE_FSAL_CEPH_MKNOD = ON -- USE_FSAL_CEPH_SETLK = ON -- USE_FSAL_CEPH_LL_LOOKUP_ROOT = ON -- USE_FSAL_CEPH_STATX = ON -- USE_FSAL_CEPH_LL_DELEGATION = ON -- USE_FSAL_CEPH_LL_SYNC_INODE = ON -- USE_FSAL_CEPH_ABORT_CONN = ON -- USE_FSAL_CEPH_RECLAIM_RESET = ON -- USE_FSAL_CEPH_GET_FS_CID = ON -- USE_FSAL_RGW = OFF -- USE_FSAL_XFS = ON -- USE_FSAL_PANFS = OFF -- USE_FSAL_GPFS = OFF -- USE_FSAL_GLUSTER = OFF -- USE_FSAL_NULL = ON -- USE_FSAL_MEM = ON -- USE_SYSTEM_NTIRPC = OFF -- USE_DBUS = ON -- USE_CB_SIMULATOR = OFF -- USE_NFSIDMAP = ON -- ENABLE_ERROR_INJECTION = OFF -- ENABLE_VFS_DEBUG_ACL = OFF -- ENABLE_RFC_ACL = OFF -- USE_CAPS = ON -- USE_BLKID = ON -- DISTNAME_HAS_GIT_DATA = OFF -- _MSPAC_SUPPORT = ON -- USE_EFENCE = OFF -- _NO_TCP_REGISTER = OFF -- RPCBIND = ON -- DEBUG_SAL = OFF -- _VALGRIND_MEMCHECK = OFF -- ENABLE_LOCKTRACE = OFF -- PROXY_HANDLE_MAPPING = OFF -- DEBUG_MDCACHE = OFF -- DEBUG_SYMS = OFF -- COVERAGE = OFF -- ENFORCE_GCC = OFF -- USE_GTEST = OFF -- USE_GSS = ON -- TIRPC_EPOLL = TRUE -- USE_9P = ON -- _USE_9P = ON -- _USE_9P_RDMA = OFF -- USE_NFS_RDMA = OFF -- USE_NFS3 = ON -- USE_NLM = ON -- USE_ACL_MAPPING = OFF -- KRB5_PREFIX = -- CEPH_PREFIX = -- RGW_PREFIX = -- GLUSTER_PREFIX = -- CMAKE_PREFIX_PATH = -- _GIT_HEAD_COMMIT = 28562219dac050c3da0a0071e78ba506545982a2 -- _GIT_HEAD_COMMIT_ABBREV = 2856221 -- _GIT_DESCRIBE = V2.8.4-0-g2856221 -- ALLOCATOR = jemalloc -- GOLD_LINKER = -- CMAKE_INSTALL_PREFIX = /usr -- FSAL_DESTINATION = /usr/lib64/ganesha -- USE_ADMIN_TOOLS = OFF -- USE_GUI_ADMIN_TOOLS = ON -- MODULES_PATH = -- USE_LTTNG = OFF -- USE_BLKIN = OFF -- USE_VSOCK = OFF -- USE_TOOL_MULTILOCK = OFF -- USE_MAN_PAGE = OFF -- USE_RADOS_RECOV = ON -- RADOS_URLS = ON -- USE_CUNIT = OFF -- SANITIZE_ADDRESS = OFF -- Found LSB_RELEASE: /usr/bin/lsb_release -- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") -- Configuring done -- Generating done -- Build files have been written to: /root/tweak [root@centos2022 tweak]# make -j4 rpm Scanning dependencies of target dist gmake[4]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Run CPack packaging tool for source... CPack: Create package using TGZ CPack: Install projects CPack: - Install directory: /root/nfs-ganesha/src CPack: Create package CPack: - package: /root/tweak/nfs-ganesha-2.8.4.tar.gz generated. Built target dist Scanning dependencies of target rpm Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.tITL8F + umask 022 + cd /root/rpmbuild/BUILD + cd /root/rpmbuild/BUILD + rm -rf nfs-ganesha-2.8.4 + /usr/bin/gzip -dc /root/tweak/nfs-ganesha-2.8.4.tar.gz + /usr/bin/tar -xf - + STATUS=0 + '[' 0 -ne 0 ']' + cd nfs-ganesha-2.8.4 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.QwhWm5 + umask 022 + cd /root/rpmbuild/BUILD + cd nfs-ganesha-2.8.4 + cmake . -DCMAKE_BUILD_TYPE=Debug -DBUILD_CONFIG=rpmbuild -DUSE_FSAL_NULL=ON -DUSE_FSAL_MEM=ON -DUSE_FSAL_XFS=ON -DUSE_FSAL_LUSTRE=OFF -DUSE_FSAL_CEPH=ON -DUSE_FSAL_RGW=OFF -DUSE_FSAL_GPFS=OFF -DUSE_FSAL_PANFS=OFF -DUSE_FSAL_GLUSTER=OFF -DUSE_SYSTEM_NTIRPC=OFF -DUSE_9P_RDMA=OFF -DUSE_LTTNG=OFF -DUSE_ADMIN_TOOLS=OFF -DUSE_GUI_ADMIN_TOOLS=ON -DUSE_RADOS_RECOV=ON -DRADOS_URLS=ON -DUSE_FSAL_VFS=ON -DUSE_FSAL_PROXY=ON -DUSE_DBUS=ON -DUSE_9P=ON -DDISTNAME_HAS_GIT_DATA=OFF -DUSE_MAN_PAGE=OFF -DRPCBIND=ON -D_MSPAC_SUPPORT=ON -DSANITIZE_ADDRESS=OFF -DALLOCATOR=jemalloc -- cmake version 2.8 -- The C compiler identification is GNU 4.8.5 -- The CXX compiler identification is GNU 4.8.5 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- override default CMAKE_INSTALL_PREFIX = /usr -- Detected an UNKNOWN Linux machine -- toolchain options processed -- Found PkgConfig: /usr/bin/pkg-config (found version "0.27.1") -- Outside a git repository, use saved data -- Building RPM -- Looking for include file strings.h -- Looking for include file strings.h - found -- Looking for include file string.h -- Looking for include file string.h - found -- Check if the system is big endian -- Searching 16 bit integer -- Looking for sys/types.h -- Looking for sys/types.h - found -- Looking for stdint.h -- Looking for stdint.h - found -- Looking for stddef.h -- Looking for stddef.h - found -- Check size of unsigned short -- Check size of unsigned short - done -- Using unsigned short -- Check if the system is big endian - little endian -- Looking for include file pthread.h -- Looking for include file pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- found krb5-config here /usr/bin/krb5-config -- Found kerberos 5 headers: /include -- Found kerberos 5 libs: /usr/lib64/libkrb5.so;/usr/lib64/libk5crypto.so;/usr/lib64/libcom_err.so;/usr/lib64/libgssapi_krb5.so -- Looking for include file gssapi.h -- Looking for include file gssapi.h - found -- REQUIRED -- Looking for ceph_ll_lookup in cephfs -- Looking for ceph_ll_lookup in cephfs - found -- Looking for ceph_ll_mknod in cephfs -- Looking for ceph_ll_mknod in cephfs - found -- Looking for ceph_ll_setlk in cephfs -- Looking for ceph_ll_setlk in cephfs - found -- Looking for ceph_ll_lookup_root in cephfs -- Looking for ceph_ll_lookup_root in cephfs - found -- Looking for ceph_ll_delegation in cephfs -- Looking for ceph_ll_delegation in cephfs - found -- Looking for ceph_ll_sync_inode in cephfs -- Looking for ceph_ll_sync_inode in cephfs - found -- Looking for ceph_ll_fallocate in cephfs -- Looking for ceph_ll_fallocate in cephfs - found -- Looking for ceph_abort_conn in cephfs -- Looking for ceph_abort_conn in cephfs - found -- Looking for ceph_start_reclaim in cephfs -- Looking for ceph_start_reclaim in cephfs - found -- Looking for ceph_select_filesystem in cephfs -- Looking for ceph_select_filesystem in cephfs - found -- Looking for CEPH_STATX_INO -- Looking for CEPH_STATX_INO - found -- Found cephfs libraries: /usr/lib64/libcephfs.so -- Found CEPHFS: /usr/include -- Looking for open_by_handle in handle -- Looking for open_by_handle in handle - found -- Looking for include file xfs/xfs.h -- Looking for include file xfs/xfs.h - found -- Found JeMalloc: /usr/lib64/libjemalloc.so -- checking for module 'dbus-1' -- found dbus-1, version 1.10.24 -- Found nfs idmap library: /usr/lib64/libnfsidmap.so -- Looking for wbcLookupSids in wbclient -- Looking for wbcLookupSids in wbclient - found -- Looking for 3 include files stdint.h, ..., wbclient.h -- Looking for 3 include files stdint.h, ..., wbclient.h - found -- Performing Test WBCLIENT4_H -- Performing Test WBCLIENT4_H - Success -- Found Winbind4 client: -- Looking for rados_read_op_omap_get_vals2 in rados -- Looking for rados_read_op_omap_get_vals2 in rados - found -- Found rados libraries: /usr/lib64/librados.so -- Found RADOS: /usr/include -- Found rados libraries: /usr/lib64/librados.so -- Looking for cap_set_proc in cap -- Looking for cap_set_proc in cap - found -- Found Caps: /usr/lib64/libcap.so -- Looking for include file blkid/blkid.h -- Looking for include file blkid/blkid.h - found -- Looking for blkid_devno_to_devname in blkid -- Looking for blkid_devno_to_devname in blkid - found -- Looking for include file uuid/uuid.h -- Looking for include file uuid/uuid.h - found -- Looking for uuid_parse in uuid -- Looking for uuid_parse in uuid - found -- Looking for daemon in c -- Looking for daemon in c - found -- OVERRIDE_INSTALL_PREFIX = -- found krb5-config here /usr/bin/krb5-config -- Found kerberos 5 headers: /include -- Found kerberos 5 libs: /usr/lib64/libkrb5.so;/usr/lib64/libk5crypto.so;/usr/lib64/libcom_err.so;/usr/lib64/libgssapi_krb5.so;/usr/lib64/libkrb5.so;/usr/lib64/libk5crypto.so;/usr/lib64/libcom_err.so;/usr/lib64/libgssapi_krb5.so -- Building RPM -- Looking for include file stdbool.h -- Looking for include file stdbool.h - found -- Looking for include file sys/epoll.h -- Looking for include file sys/epoll.h - found -- Looking for epoll_create -- Looking for epoll_create - found -- Found EPOLL: 1 -- Found Winbind4 client: -- Found NSL: /usr/lib64/libnsl.so -- -- ------------------------------------------------------- -- TIRPC_EPOLL = TRUE -- USE_RPC_RDMA = OFF -- USE_GSS = ON -- USE_PROFILE = OFF -- USE_LTTNG_NTIRPC = OFF -- Using ntirpc submodule /root/rpmbuild/BUILD/nfs-ganesha-2.8.4/libntirpc/ntirpc/ -- Looking for urcu_ref_get_unless_zero -- Looking for urcu_ref_get_unless_zero - found -- Found BISON: /usr/bin/bison (found version "3.0.4") -- Found FLEX: /usr/bin/flex (found version "2.5.37") -- -- ------------------------------------------------------- -- PLATFORM = LINUX -- ARCH = x86_64 -- VERSION = 2.8.4 -- BUILD HOST = centos2022 -- ------------------------------------------------------- -- USE_FSAL_PROXY = ON -- USE_FSAL_VFS = ON -- USE_FSAL_LUSTRE = OFF -- USE_FSAL_CEPH = ON -- USE_FSAL_CEPH_MKNOD = ON -- USE_FSAL_CEPH_SETLK = ON -- USE_FSAL_CEPH_LL_LOOKUP_ROOT = ON -- USE_FSAL_CEPH_STATX = ON -- USE_FSAL_CEPH_LL_DELEGATION = ON -- USE_FSAL_CEPH_LL_SYNC_INODE = ON -- USE_FSAL_CEPH_ABORT_CONN = ON -- USE_FSAL_CEPH_RECLAIM_RESET = ON -- USE_FSAL_CEPH_GET_FS_CID = ON -- USE_FSAL_RGW = OFF -- USE_FSAL_XFS = ON -- USE_FSAL_PANFS = OFF -- USE_FSAL_GPFS = OFF -- USE_FSAL_GLUSTER = OFF -- USE_FSAL_NULL = ON -- USE_FSAL_MEM = ON -- USE_SYSTEM_NTIRPC = OFF -- USE_DBUS = ON -- USE_CB_SIMULATOR = OFF -- USE_NFSIDMAP = ON -- ENABLE_ERROR_INJECTION = OFF -- ENABLE_VFS_DEBUG_ACL = OFF -- ENABLE_RFC_ACL = OFF -- USE_CAPS = ON -- USE_BLKID = ON -- DISTNAME_HAS_GIT_DATA = OFF -- _MSPAC_SUPPORT = ON -- USE_EFENCE = OFF -- _NO_TCP_REGISTER = OFF -- RPCBIND = ON -- DEBUG_SAL = OFF -- _VALGRIND_MEMCHECK = OFF -- ENABLE_LOCKTRACE = OFF -- PROXY_HANDLE_MAPPING = OFF -- DEBUG_MDCACHE = OFF -- DEBUG_SYMS = OFF -- COVERAGE = OFF -- ENFORCE_GCC = OFF -- USE_GTEST = OFF -- USE_GSS = ON -- TIRPC_EPOLL = TRUE -- USE_9P = ON -- _USE_9P = ON -- _USE_9P_RDMA = OFF -- USE_NFS_RDMA = OFF -- USE_NFS3 = ON -- USE_NLM = ON -- USE_ACL_MAPPING = OFF -- KRB5_PREFIX = -- CEPH_PREFIX = -- RGW_PREFIX = -- GLUSTER_PREFIX = -- CMAKE_PREFIX_PATH = -- _GIT_HEAD_COMMIT = NOT-GIT -- _GIT_HEAD_COMMIT_ABBREV = NOT-GIT -- _GIT_DESCRIBE = /root/rpmbuild/BUILD/nfs-ganesha -- ALLOCATOR = jemalloc -- GOLD_LINKER = -- CMAKE_INSTALL_PREFIX = /usr -- FSAL_DESTINATION = /usr/lib64/ganesha -- USE_ADMIN_TOOLS = OFF -- USE_GUI_ADMIN_TOOLS = ON -- MODULES_PATH = -- USE_LTTNG = OFF -- USE_BLKIN = OFF -- USE_VSOCK = OFF -- USE_TOOL_MULTILOCK = OFF -- USE_MAN_PAGE = OFF -- USE_RADOS_RECOV = ON -- RADOS_URLS = ON -- USE_CUNIT = OFF -- SANITIZE_ADDRESS = OFF -- Found LSB_RELEASE: /usr/bin/lsb_release -- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") -- Configuring done -- Generating done -- Build files have been written to: /root/rpmbuild/BUILD/nfs-ganesha-2.8.4 + make -j4 make[4]: warning: -jN forced in submake: disabling jobserver mode. Scanning dependencies of target hashtable Scanning dependencies of target gshdbus Scanning dependencies of target log Scanning dependencies of target ntirpc [ 0%] Building C object hashtable/CMakeFiles/hashtable.dir/hashtable.c.o [ 0%] [ 0%] Building C object dbus/CMakeFiles/gshdbus.dir/dbus_server.c.o Building C object log/CMakeFiles/log.dir/display.c.o [ 0%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/auth_none.c.o [ 0%] Building C object log/CMakeFiles/log.dir/log_functions.c.o [ 0%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/auth_unix.c.o [ 0%] Built target hashtable Scanning dependencies of target sal [ 1%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/authunix_prot.c.o [ 1%] Building C object dbus/CMakeFiles/gshdbus.dir/properties_handler.c.o [ 1%] Building C object SAL/CMakeFiles/sal.dir/state_async.c.o [ 1%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/bindresvport.c.o [ 2%] Building C object dbus/CMakeFiles/gshdbus.dir/signal_handler.c.o [ 2%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/bsd_epoll.c.o [ 2%] Built target log [ 2%] Scanning dependencies of target cidr Building C object SAL/CMakeFiles/sal.dir/state_lock.c.o [ 2%] [ 2%] Building C object cidr/CMakeFiles/cidr.dir/cidr_addr.c.o Building C object libntirpc/src/CMakeFiles/ntirpc.dir/city.c.o [ 3%] Building C object cidr/CMakeFiles/cidr.dir/cidr_compare.c.o [ 4%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/clnt_bcast.c.o [ 4%] [ 4%] Building C object dbus/CMakeFiles/gshdbus.dir/dbus_heartbeat.c.o Building C object cidr/CMakeFiles/cidr.dir/cidr_from_str.c.o [ 4%] [ 4%] Building C object cidr/CMakeFiles/cidr.dir/cidr_get.c.o Building C object libntirpc/src/CMakeFiles/ntirpc.dir/clnt_dg.c.o [ 5%] Building C object cidr/CMakeFiles/cidr.dir/cidr_inaddr.c.o [ 5%] Built target gshdbus [ 5%] [ 5%] [FLEX][ConfigScanner] Building scanner with flex 2.5.37 Building C object libntirpc/src/CMakeFiles/ntirpc.dir/clnt_generic.c.o [ 5%] [ 6%] [ 6%] [BISON][ConfigParser] Building parser with bison 3.0.4 Building C object SAL/CMakeFiles/sal.dir/state_share.c.o Building C object cidr/CMakeFiles/cidr.dir/cidr_mem.c.o [ 6%] Scanning dependencies of target config_parsing Building C object cidr/CMakeFiles/cidr.dir/cidr_misc.c.o [ 7%] Building C object config_parsing/CMakeFiles/config_parsing.dir/analyse.c.o [ 7%] Building C object cidr/CMakeFiles/cidr.dir/cidr_net.c.o [ 7%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/clnt_perror.c.o [ 8%] [ 8%] Building C object cidr/CMakeFiles/cidr.dir/cidr_num.c.o [ 8%] Building C object config_parsing/CMakeFiles/config_parsing.dir/config_parsing.c.o Building C object SAL/CMakeFiles/sal.dir/state_misc.c.o [ 9%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/clnt_raw.c.o [ 9%] Building C object cidr/CMakeFiles/cidr.dir/cidr_to_str.c.o [ 9%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/clnt_simple.c.o [ 9%] Built target cidr Scanning dependencies of target avltree [ 9%] [ 9%] [ 9%] Building C object avl/CMakeFiles/avltree.dir/avl.c.o Building C object libntirpc/src/CMakeFiles/ntirpc.dir/clnt_vc.c.o Building C object config_parsing/CMakeFiles/config_parsing.dir/conf_url.c.o [ 9%] Building C object SAL/CMakeFiles/sal.dir/state_layout.c.o [ 10%] Building C object avl/CMakeFiles/avltree.dir/bst.c.o [ 10%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/getnetconfig.c.o [ 10%] Building C object avl/CMakeFiles/avltree.dir/rb.c.o [ 11%] Building C object config_parsing/CMakeFiles/config_parsing.dir/conf_yacc.c.o [ 12%] [ 12%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/getnetpath.c.o Building C object avl/CMakeFiles/avltree.dir/splay.c.o [ 12%] Building C object SAL/CMakeFiles/sal.dir/state_deleg.c.o [ 12%] [ 12%] Built target avltree Building C object libntirpc/src/CMakeFiles/ntirpc.dir/getpeereid.c.o Scanning dependencies of target rpcal [ 12%] Building C object config_parsing/CMakeFiles/config_parsing.dir/conf_lex.c.o [ 12%] Building C object RPCAL/CMakeFiles/rpcal.dir/nfs_dupreq.c.o [ 12%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/getrpcent.c.o [ 13%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/mt_misc.c.o [ 14%] Building C object SAL/CMakeFiles/sal.dir/nfs4_clientid.c.o [ 14%] Built target config_parsing [ 14%] Scanning dependencies of target nfs4callbacks Building C object libntirpc/src/CMakeFiles/ntirpc.dir/pmap_prot.c.o [ 14%] Building C object Protocols/NFS/CMakeFiles/nfs4callbacks.dir/nfs4_cb_Compound.c.o [ 14%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/pmap_prot2.c.o [ 14%] Building C object RPCAL/CMakeFiles/rpcal.dir/rpc_tools.c.o [ 14%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/pmap_rmt.c.o [ 14%] Built target nfs4callbacks Scanning dependencies of target nfsproto [ 14%] Building C object SAL/CMakeFiles/sal.dir/nfs4_state.c.o [ 15%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rbtree.c.o [ 16%] [ 16%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rbtree_x.c.o Building C object RPCAL/CMakeFiles/rpcal.dir/gss_credcache.c.o [ 16%] [ 16%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/mnt_Dump.c.o Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpc_prot.c.o [ 16%] Building C object RPCAL/CMakeFiles/rpcal.dir/gss_extra.c.o [ 16%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpc_callmsg.c.o [ 16%] Building C object SAL/CMakeFiles/sal.dir/nfs4_state_id.c.o [ 16%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/mnt_Export.c.o [ 17%] [ 17%] Built target rpcal Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpc_commondata.c.o Scanning dependencies of target nfs_mnt_xdr [ 17%] Building C object Protocols/XDR/CMakeFiles/nfs_mnt_xdr.dir/xdr_mount.c.o [ 17%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpc_crc32.c.o [ 17%] [ 17%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpc_dplx_msg.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/mnt_Mnt.c.o [ 18%] Building C object SAL/CMakeFiles/sal.dir/nfs4_lease.c.o [ 19%] Building C object Protocols/XDR/CMakeFiles/nfs_mnt_xdr.dir/xdr_nfs23.c.o [ 20%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpc_dtablesize.c.o [ 20%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpc_generic.c.o [ 20%] Building C object SAL/CMakeFiles/sal.dir/nfs4_recovery.c.o [ 21%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/mnt_Null.c.o [ 21%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpcb_clnt.c.o [ 21%] Building C object Protocols/XDR/CMakeFiles/nfs_mnt_xdr.dir/xdr_nfsv41.c.o [ 21%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/mnt_Umnt.c.o [ 21%] Building C object Protocols/XDR/CMakeFiles/nfs_mnt_xdr.dir/xdr_rquota.c.o [ 21%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpcb_prot.c.o [ 21%] Building C object SAL/CMakeFiles/sal.dir/nfs41_session_id.c.o [ 21%] Building C object Protocols/XDR/CMakeFiles/nfs_mnt_xdr.dir/xdr_nlm4.c.o [ 21%] [ 22%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/rpcb_st_xdr.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/mnt_UmntAll.c.o [ 22%] [ 23%] Building C object SAL/CMakeFiles/sal.dir/nfs4_owner.c.o Building C object Protocols/XDR/CMakeFiles/nfs_mnt_xdr.dir/xdr_nsm.c.o [ 23%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/strlcpy.c.o [ 23%] [ 23%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs_null.c.o [ 23%] Built target nfs_mnt_xdr [ 23%] Scanning dependencies of target nlm Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_auth.c.o [ 24%] Building C object SAL/CMakeFiles/sal.dir/recovery/recovery_fs.c.o [ 24%] Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Cancel.c.o [ 25%] [ 26%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_auth_unix.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_Compound.c.o [ 26%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_auth_none.c.o [ 27%] [ 27%] Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Free_All.c.o Building C object SAL/CMakeFiles/sal.dir/recovery/recovery_fs_ng.c.o [ 27%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_dg.c.o [ 28%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_generic.c.o [ 28%] Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Granted_Res.c.o [ 28%] Building C object SAL/CMakeFiles/sal.dir/nlm_owner.c.o [ 28%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_raw.c.o [ 28%] [ 28%] [ 28%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_rqst.c.o Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Lock.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_access.c.o [ 28%] Building C object SAL/CMakeFiles/sal.dir/nlm_state.c.o [ 28%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_simple.c.o [ 28%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_allocate.c.o [ 29%] Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Null.c.o [ 30%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_vc.c.o [ 31%] Building C object SAL/CMakeFiles/sal.dir/9p_owner.c.o [ 32%] [ 32%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_bind_conn.c.o Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Share.c.o [ 32%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_xprt.c.o [ 32%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/xdr.c.o [ 32%] Built target sal [ 32%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_close.c.o Scanning dependencies of target rquota [ 32%] Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Sm_Notify.c.o [ 32%] Building C object Protocols/RQUOTA/CMakeFiles/rquota.dir/rquota_Null.c.o [ 32%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/xdr_float.c.o [ 34%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/xdr_mem.c.o [ 34%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_commit.c.o [ 34%] [ 35%] Building C object Protocols/RQUOTA/CMakeFiles/rquota.dir/rquota_getquota.c.o Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Test.c.o [ 35%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/xdr_reference.c.o [ 35%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/xdr_ioq.c.o [ 35%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_create.c.o [ 35%] [ 36%] Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Unlock.c.o Building C object Protocols/RQUOTA/CMakeFiles/rquota.dir/rquota_getactivequota.c.o [ 37%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_ioq.c.o [ 37%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/work_pool.c.o [ 38%] [ 38%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_create_session.c.o Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_Unshare.c.o [ 38%] Building C object Protocols/RQUOTA/CMakeFiles/rquota.dir/rquota_setquota.c.o [ 38%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/auth_gss.c.o [ 38%] Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_async.c.o [ 38%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/authgss_hash.c.o [ 38%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_delegpurge.c.o [ 39%] Building C object Protocols/RQUOTA/CMakeFiles/rquota.dir/rquota_setactivequota.c.o [ 40%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/authgss_prot.c.o [ 40%] Building C object Protocols/NLM/CMakeFiles/nlm.dir/nlm_util.c.o [ 40%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_delegreturn.c.o [ 40%] Building C object Protocols/RQUOTA/CMakeFiles/rquota.dir/rquota_common.c.o [ 40%] Building C object libntirpc/src/CMakeFiles/ntirpc.dir/svc_auth_gss.c.o Linking C shared library libntirpc.so [ 41%] [ 41%] Building C object Protocols/NLM/CMakeFiles/nlm.dir/nsm.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_destroy_session.c.o [ 41%] Built target rquota Scanning dependencies of target 9p [ 41%] Built target ntirpc [ 41%] Scanning dependencies of target string_utils Building C object Protocols/9P/CMakeFiles/9p.dir/9p_interpreter.c.o [ 41%] Building C object support/CMakeFiles/string_utils.dir/strlcpy.c.o [ 42%] [ 43%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_exchange_id.c.o Building C object support/CMakeFiles/string_utils.dir/strnlen.c.o [ 43%] Built target nlm Scanning dependencies of target hash [ 43%] Building C object support/CMakeFiles/string_utils.dir/refstr.c.o [ 43%] Building C object support/CMakeFiles/hash.dir/murmur3.c.o [ 43%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_proto_tools.c.o [ 43%] Built target string_utils [ 44%] Scanning dependencies of target uid2grp Building C object support/CMakeFiles/hash.dir/city.c.o [ 44%] Building C object support/CMakeFiles/uid2grp.dir/uid2grp.c.o [ 44%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_free_stateid.c.o [ 44%] Built target hash Scanning dependencies of target netgroup_cache [ 45%] Building C object support/CMakeFiles/netgroup_cache.dir/netgroup_cache.c.o [ 45%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_read_conf.c.o [ 45%] [ 45%] Built target netgroup_cache Building C object support/CMakeFiles/uid2grp.dir/uid2grp_cache.c.o Scanning dependencies of target support [ 45%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_getattr.c.o [ 45%] Building C object support/CMakeFiles/support.dir/nfs4_acls.c.o [ 46%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_attach.c.o [ 46%] Built target uid2grp [ 46%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_auth.c.o [ 46%] Building C object support/CMakeFiles/support.dir/nfs_creds.c.o [ 47%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_getdeviceinfo.c.o [ 47%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_clunk.c.o [ 47%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_flush.c.o [ 47%] [ 48%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_getdevicelist.c.o Building C object support/CMakeFiles/support.dir/nfs_filehandle_mgmt.c.o [ 49%] [ 49%] Building C object support/CMakeFiles/support.dir/nfs_read_conf.c.o Building C object Protocols/9P/CMakeFiles/9p.dir/9p_flush_hook.c.o [ 49%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_getfh.c.o [ 49%] [ 49%] [ 49%] Building C object support/CMakeFiles/support.dir/nfs_convert.c.o Building C object support/CMakeFiles/support.dir/nfs_ip_name.c.o Building C object Protocols/9P/CMakeFiles/9p.dir/9p_getattr.c.o [ 49%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_illegal.c.o [ 49%] [ 50%] Building C object support/CMakeFiles/support.dir/ds.c.o Building C object Protocols/9P/CMakeFiles/9p.dir/9p_getlock.c.o [ 50%] Building C object support/CMakeFiles/support.dir/exports.c.o [ 50%] [ 51%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_lcreate.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_layoutcommit.c.o [ 51%] Building C object support/CMakeFiles/support.dir/fridgethr.c.o [ 52%] [ 52%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_lopen.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_layoutget.c.o [ 53%] Building C object support/CMakeFiles/support.dir/delayed_exec.c.o [ 53%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_link.c.o [ 53%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_layoutreturn.c.o [ 53%] Building C object support/CMakeFiles/support.dir/misc.c.o [ 53%] Building C object support/CMakeFiles/support.dir/bsd-base64.c.o [ 53%] Building C object support/CMakeFiles/support.dir/server_stats.c.o [ 53%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_link.c.o [ 53%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_lock.c.o Scanning dependencies of target gos [ 53%] Building C object os/CMakeFiles/gos.dir/linux/subr.c.o [ 54%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_lock.c.o [ 55%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_mkdir.c.o [ 56%] Building C object support/CMakeFiles/support.dir/export_mgr.c.o [ 56%] Built target gos Scanning dependencies of target fsalmdcache [ 56%] Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_handle.c.o [ 56%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_lockt.c.o [ 56%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_mknod.c.o [ 56%] [ 56%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_read.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_locku.c.o [ 56%] Building C object support/CMakeFiles/support.dir/nfs4_fs_locations.c.o [ 56%] Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_file.c.o [ 56%] Built target support [ 57%] Scanning dependencies of target fsalpseudo Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_lookup.c.o [ 57%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_readdir.c.o [ 57%] Building C object FSAL/FSAL_PSEUDO/CMakeFiles/fsalpseudo.dir/handle.c.o [ 59%] [ 59%] [ 59%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_readlink.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_lookupp.c.o Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_xattrs.c.o [ 60%] Building C object FSAL/FSAL_PSEUDO/CMakeFiles/fsalpseudo.dir/main.c.o [ 60%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_remove.c.o [ 60%] Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_main.c.o [ 60%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_nverify.c.o [ 60%] Building C object FSAL/FSAL_PSEUDO/CMakeFiles/fsalpseudo.dir/export.c.o [ 60%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_rename.c.o [ 60%] Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_export.c.o [ 60%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_open.c.o [ 60%] Built target fsalpseudo [ 60%] [ 61%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_renameat.c.o Building C object Protocols/9P/CMakeFiles/9p.dir/9p_fsync.c.o [ 61%] Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_helpers.c.o [ 62%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_open_confirm.c.o [ 62%] [ 62%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_unlinkat.c.o Building C object Protocols/9P/CMakeFiles/9p.dir/9p_setattr.c.o [ 62%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_open_downgrade.c.o [ 63%] [ 63%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_statfs.c.o Building C object Protocols/9P/CMakeFiles/9p.dir/9p_symlink.c.o [ 63%] [ 63%] [ 63%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_version.c.o Building C object Protocols/9P/CMakeFiles/9p.dir/9p_walk.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_openattr.c.o [ 64%] Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_lru.c.o [ 65%] [ 65%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_putfh.c.o Building C object Protocols/9P/CMakeFiles/9p.dir/9p_xattrcreate.c.o [ 65%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_xattrwalk.c.o [ 65%] [ 67%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_write.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_putpubfh.c.o [ 67%] Building C object Protocols/9P/CMakeFiles/9p.dir/9p_rerror.c.o [ 67%] Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_hash.c.o [ 67%] Scanning dependencies of target idmap Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_putrootfh.c.o [ 67%] Built target 9p [ 67%] Scanning dependencies of target MainServices Building C object idmapper/CMakeFiles/idmap.dir/idmapper.c.o [ 68%] [ 68%] Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_avl.c.o Building C object MainNFSD/CMakeFiles/MainServices.dir/nfs_admin_thread.c.o [ 68%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_read.c.o [ 68%] Building C object idmapper/CMakeFiles/idmap.dir/idmapper_cache.c.o [ 68%] Building C object MainNFSD/CMakeFiles/MainServices.dir/nfs_rpc_callback.c.o [ 68%] Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_read_conf.c.o [ 69%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_readdir.c.o [ 69%] Built target idmap [ 70%] Scanning dependencies of target FsalCore Building C object FSAL/Stackable_FSALs/FSAL_MDCACHE/CMakeFiles/fsalmdcache.dir/mdcache_up.c.o [ 71%] Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL/fsal_convert.c.o [ 71%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_readlink.c.o [ 71%] Building C object MainNFSD/CMakeFiles/MainServices.dir/nfs_worker_thread.c.o [ 71%] Built target fsalmdcache Scanning dependencies of target rpcping [ 71%] [ 71%] Building C object libntirpc/tests/CMakeFiles/rpcping.dir/rpcping.c.o Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL/commonlib.c.o [ 71%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_reclaim_complete.c.o Linking C executable rpcping [ 71%] Built target rpcping Scanning dependencies of target fsal_os [ 71%] Building C object FSAL/FSAL_VFS/os/CMakeFiles/fsal_os.dir/linux/handle_syscalls.c.o [ 71%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_release_lockowner.c.o [ 72%] Building C object MainNFSD/CMakeFiles/MainServices.dir/nfs_rpc_dispatcher_thread.c.o [ 72%] Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL/fsal_manager.c.o [ 72%] Built target fsal_os [ 72%] Building C object MainNFSD/CMakeFiles/MainServices.dir/nfs_rpc_tcp_socket_manager_thread.c.o [ 73%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_remove.c.o [ 74%] [ 74%] Building C object MainNFSD/CMakeFiles/MainServices.dir/nfs_init.c.o Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL/access_check.c.o [ 74%] Building C object MainNFSD/CMakeFiles/MainServices.dir/nfs_lib.c.o [ 74%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_rename.c.o [ 74%] [ 75%] Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL/fsal_config.c.o Building C object MainNFSD/CMakeFiles/MainServices.dir/nfs_reaper_thread.c.o [ 75%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_renew.c.o [ 75%] Building C object MainNFSD/CMakeFiles/MainServices.dir/__/support/client_mgr.c.o [ 75%] Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL/default_methods.c.o [ 75%] [ 75%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_restorefh.c.o Building C object MainNFSD/CMakeFiles/MainServices.dir/9p_dispatcher.c.o [ 75%] Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL/common_pnfs.c.o [ 76%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_savefh.c.o [ 77%] Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL/fsal_destroyer.c.o [ 77%] Built target MainServices [ 77%] Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL/fsal_helper.c.o [ 77%] Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL_UP/fsal_up_top.c.o [ 77%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_secinfo.c.o [ 77%] Building C object MainNFSD/CMakeFiles/FsalCore.dir/__/FSAL_UP/fsal_up_async.c.o [ 77%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_secinfo_no_name.c.o [ 77%] [ 78%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_sequence.c.o Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_set_ssv.c.o [ 78%] Built target FsalCore [ 78%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_setattr.c.o [ 78%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_xattr.c.o [ 79%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_setclientid.c.o [ 79%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_setclientid_confirm.c.o [ 79%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_destroy_clientid.c.o [ 79%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_test_stateid.c.o [ 80%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_verify.c.o [ 80%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_op_write.c.o [ 80%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs4_pseudo.c.o [ 80%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs_proto_tools.c.o [ 81%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_access.c.o [ 81%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_commit.c.o [ 81%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_create.c.o [ 82%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_fsinfo.c.o [ 82%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_fsstat.c.o [ 82%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_getattr.c.o [ 82%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_link.c.o [ 83%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_lookup.c.o [ 83%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_mkdir.c.o [ 83%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_mknod.c.o [ 83%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_pathconf.c.o [ 84%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_read.c.o [ 84%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_readdir.c.o [ 84%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_readdirplus.c.o [ 85%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_readlink.c.o [ 85%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_remove.c.o [ 85%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_rename.c.o [ 85%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_rmdir.c.o [ 86%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_setattr.c.o [ 86%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_symlink.c.o [ 86%] Building C object Protocols/NFS/CMakeFiles/nfsproto.dir/nfs3_write.c.o [ 86%] Built target nfsproto Scanning dependencies of target ganesha_nfsd Linking C shared library libganesha_nfsd.so [ 86%] Built target ganesha_nfsd Scanning dependencies of target ganesha.nfsd Scanning dependencies of target ganesha-rados-grace Scanning dependencies of target sm_notify.ganesha Scanning dependencies of target ganesha_rados_urls [ 87%] [ 87%] Building C object CMakeFiles/ganesha-rados-grace.dir/tools/ganesha-rados-grace.c.o [ 88%] [ 88%] Building C object CMakeFiles/ganesha.nfsd.dir/MainNFSD/nfs_main.c.o Building C object config_parsing/CMakeFiles/ganesha_rados_urls.dir/conf_url_rados.c.o Building C object CMakeFiles/sm_notify.ganesha.dir/Protocols/NLM/sm_notify.c.o [ 88%] Building C object CMakeFiles/ganesha-rados-grace.dir/support/rados_grace.c.o Linking C executable sm_notify.ganesha Linking C executable ganesha-rados-grace Linking C executable ganesha.nfsd Linking C shared module libganesha_rados_urls.so [ 88%] Built target sm_notify.ganesha [ 88%] Built target ganesha.nfsd Scanning dependencies of target ganesha_rados_recov Scanning dependencies of target fsalnull [ 88%] Built target ganesha_rados_urls [ 89%] [ 89%] Building C object SAL/CMakeFiles/ganesha_rados_recov.dir/recovery/recovery_rados_kv.c.o Building C object FSAL/Stackable_FSALs/FSAL_NULL/CMakeFiles/fsalnull.dir/handle.c.o Scanning dependencies of target fsalproxy [ 89%] Building C object FSAL/FSAL_PROXY/CMakeFiles/fsalproxy.dir/handle.c.o [ 89%] Built target ganesha-rados-grace Scanning dependencies of target fsalceph [ 89%] [ 89%] Building C object FSAL/Stackable_FSALs/FSAL_NULL/CMakeFiles/fsalnull.dir/file.c.o Building C object FSAL/FSAL_CEPH/CMakeFiles/fsalceph.dir/main.c.o [ 89%] Building C object SAL/CMakeFiles/ganesha_rados_recov.dir/recovery/recovery_rados_ng.c.o [ 90%] Building C object FSAL/Stackable_FSALs/FSAL_NULL/CMakeFiles/fsalnull.dir/xattrs.c.o [ 91%] Building C object FSAL/FSAL_CEPH/CMakeFiles/fsalceph.dir/export.c.o [ 91%] Building C object SAL/CMakeFiles/ganesha_rados_recov.dir/recovery/recovery_rados_cluster.c.o [ 91%] Building C object FSAL/Stackable_FSALs/FSAL_NULL/CMakeFiles/fsalnull.dir/main.c.o [ 91%] Building C object FSAL/FSAL_CEPH/CMakeFiles/fsalceph.dir/handle.c.o [ 91%] Building C object SAL/CMakeFiles/ganesha_rados_recov.dir/__/support/rados_grace.c.o [ 91%] Building C object FSAL/Stackable_FSALs/FSAL_NULL/CMakeFiles/fsalnull.dir/export.c.o Linking C shared module libganesha_rados_recov.so [ 92%] Building C object FSAL/FSAL_PROXY/CMakeFiles/fsalproxy.dir/main.c.o [ 92%] Built target ganesha_rados_recov Scanning dependencies of target fsalvfs Linking C shared module libfsalnull.so [ 92%] Building C object FSAL/FSAL_CEPH/CMakeFiles/fsalceph.dir/mds.c.o [ 92%] Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/__/export.c.o [ 92%] Built target fsalnull [ 92%] Scanning dependencies of target fsalxfs Building C object FSAL/FSAL_PROXY/CMakeFiles/fsalproxy.dir/export.c.o [ 92%] Building C object FSAL/FSAL_VFS/xfs/CMakeFiles/fsalxfs.dir/main.c.o [ 92%] Building C object FSAL/FSAL_CEPH/CMakeFiles/fsalceph.dir/ds.c.o [ 93%] Building C object FSAL/FSAL_CEPH/CMakeFiles/fsalceph.dir/internal.c.o [ 94%] Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/__/handle.c.o [ 94%] Building C object FSAL/FSAL_PROXY/CMakeFiles/fsalproxy.dir/xattrs.c.o [ 95%] Building C object FSAL/FSAL_VFS/xfs/CMakeFiles/fsalxfs.dir/__/export.c.o Linking C shared module libfsalceph.so Linking C shared module libfsalproxy.so [ 95%] Built target fsalceph Scanning dependencies of target fsalmem [ 95%] [ 95%] [ 95%] Building C object FSAL/FSAL_MEM/CMakeFiles/fsalmem.dir/mem_export.c.o Building C object FSAL/FSAL_VFS/xfs/CMakeFiles/fsalxfs.dir/__/handle.c.o Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/__/handle_syscalls.c.o [ 95%] Built target fsalproxy [ 95%] Building C object FSAL/FSAL_MEM/CMakeFiles/fsalmem.dir/mem_handle.c.o [ 95%] Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/__/file.c.o [ 96%] Building C object FSAL/FSAL_MEM/CMakeFiles/fsalmem.dir/mem_main.c.o [ 96%] Building C object FSAL/FSAL_VFS/xfs/CMakeFiles/fsalxfs.dir/handle_syscalls.c.o [ 96%] Building C object FSAL/FSAL_MEM/CMakeFiles/fsalmem.dir/mem_up.c.o [ 96%] Building C object FSAL/FSAL_VFS/xfs/CMakeFiles/fsalxfs.dir/__/file.c.o [ 97%] [ 97%] Building C object FSAL/FSAL_VFS/xfs/CMakeFiles/fsalxfs.dir/__/xattrs.c.o Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/__/xattrs.c.o Linking C shared library libfsalmem.so [ 97%] Built target fsalmem [ 97%] Building C object FSAL/FSAL_VFS/xfs/CMakeFiles/fsalxfs.dir/__/state.c.o [ 97%] [ 97%] Building C object FSAL/FSAL_VFS/xfs/CMakeFiles/fsalxfs.dir/__/empty_check_hsm.c.o Building C object FSAL/FSAL_VFS/xfs/CMakeFiles/fsalxfs.dir/subfsal_xfs.c.o [ 98%] Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/__/state.c.o [ 98%] [ 98%] Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/__/subfsal_helpers.c.o Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/subfsal_vfs.c.o Linking C shared module libfsalxfs.so [ 98%] Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/attrs.c.o [ 98%] Built target fsalxfs [100%] Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/__/empty_check_hsm.c.o [100%] Building C object FSAL/FSAL_VFS/vfs/CMakeFiles/fsalvfs.dir/main.c.o Linking C shared module libfsalvfs.so [100%] Built target fsalvfs + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.DTNZgj + umask 022 + cd /root/rpmbuild/BUILD + '[' /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64 '!=' / ']' + rm -rf /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64 ++ dirname /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64 + mkdir -p /root/rpmbuild/BUILDROOT + mkdir /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64 + cd nfs-ganesha-2.8.4 + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/ganesha/ + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/dbus-1/system.d + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/sysconfig + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/logrotate.d + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/bin + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/sbin + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/var/run/ganesha + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/var/log/ganesha + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/libexec/ganesha + install -m 644 config_samples/logrotate_ganesha /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/logrotate.d/ganesha + install -m 644 scripts/ganeshactl/org.ganesha.nfsd.conf /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/dbus-1/system.d + install -m 755 scripts/nfs-ganesha-config.sh /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/libexec/ganesha + install -m 755 tools/mount.9P /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/sbin/mount.9P + install -m 644 config_samples/vfs.conf /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/ganesha + mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib/systemd/system + install -m 644 scripts/systemd/nfs-ganesha.service.el7 /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib/systemd/system/nfs-ganesha.service + install -m 644 scripts/systemd/nfs-ganesha-lock.service.el7 /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib/systemd/system/nfs-ganesha-lock.service + install -m 644 scripts/systemd/nfs-ganesha-config.service /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib/systemd/system/nfs-ganesha-config.service + install -m 644 scripts/systemd/sysconfig/nfs-ganesha /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/sysconfig/ganesha + install -m 644 config_samples/xfs.conf /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/ganesha + install -m 644 config_samples/ceph.conf /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/etc/ganesha + make DESTDIR=/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64 install make[4]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. [ 1%] Built target gshdbus [ 16%] Built target ntirpc [ 16%] Built target log [ 16%] Built target hashtable [ 21%] Built target sal [ 24%] Built target cidr [ 26%] Built target config_parsing [ 27%] Built target avltree [ 28%] Built target rpcal [ 28%] Built target nfs4callbacks [ 52%] Built target nfsproto [ 54%] Built target nfs_mnt_xdr [ 58%] Built target nlm [ 60%] Built target rquota [ 69%] Built target 9p [ 70%] Built target string_utils [ 71%] Built target hash [ 71%] Built target uid2grp [ 72%] Built target netgroup_cache [ 76%] Built target support [ 76%] Built target gos [ 79%] Built target fsalmdcache [ 80%] Built target fsalpseudo [ 80%] Built target idmap [ 83%] Built target MainServices [ 86%] Built target FsalCore [ 86%] Built target ganesha_nfsd [ 87%] Built target ganesha-rados-grace [ 87%] Built target ganesha.nfsd [ 87%] Built target sm_notify.ganesha [ 87%] Built target rpcping [ 88%] Built target ganesha_rados_urls [ 89%] Built target ganesha_rados_recov [ 90%] Built target fsalnull [ 91%] Built target fsalproxy [ 93%] Built target fsalceph [ 93%] Built target fsal_os [ 96%] Built target fsalvfs [ 98%] Built target fsalxfs [100%] Built target fsalmem Install the project... -- Install configuration: "Debug" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64//etc/ganesha/ganesha.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/README -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/ceph.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/config.txt -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/ds.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/export.txt -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/ganesha.conf.example -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/gluster.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/gpfs.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/gpfs.ganesha.exports.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/gpfs.ganesha.log.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/gpfs.ganesha.main.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/gpfs.ganesha.nfsd.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/logging.txt -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/logrotate_fsal_gluster -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/logrotate_ganesha -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/lustre.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/mem.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/proxy.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/rgw.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/rgw_bucket.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/vfs.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/ganesha/config_samples/xfs.conf -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/var/run/ganesha -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/bin/ganesha.nfsd -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/bin/ganesha.nfsd" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/bin/ganesha-rados-grace -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/bin/ganesha-rados-grace" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/pkgconfig/libntirpc.pc -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/fpmath.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/getpeereid.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/intrinsic.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/libc_private.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/lttng -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/lttng/rpcping.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/lttng/xprt.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/abstract_atomic.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/bsd_epoll.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/city.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/citycrc.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/event.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/opr.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/opr_queue.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/os_epoll.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/portable.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/queue.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/rbtree.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/rbtree_x.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/socket.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/stdint.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/stdio.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/timespec.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/wait_queue.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/misc/winpthreads.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/namespace.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/netconfig.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/reentrant.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/auth.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/auth_gss.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/auth_inline.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/auth_stat.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/auth_unix.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/clnt.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/clnt_stat.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/des.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/des_crypt.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/gss_internal.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/nettype.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/pmap_prot.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/pmap_rmt.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/pool_queue.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/rpc.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/rpc_cksum.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/rpc_com.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/rpc_err.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/rpc_msg.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/rpcb_clnt.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/rpcb_prot.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/rpcb_prot.x -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/rpcent.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/svc.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/svc_auth.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/svc_rqst.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/tirpc_compat.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/types.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/work_pool.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/xdr.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/xdr_inline.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpc/xdr_ioq.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpcsvc -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/rpcsvc/crypt.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/un-namespace.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/version.h -- Up-to-date: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/include/ntirpc/version.h -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libntirpc.so.1.8.1 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libntirpc.so.1.8 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libntirpc.so -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_rados_urls.so.2.8 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_rados_urls.so -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_rados_urls.so.2.8" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_rados_recov.so.2.8 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_rados_recov.so -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_rados_recov.so.2.8" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalnull.so.4.2.0 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalnull.so.4 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalnull.so -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalnull.so.4.2.0" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalproxy.so.4.2.0 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalproxy.so.4 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalproxy.so -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalproxy.so.4.2.0" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalceph.so.4.2.0 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalceph.so.4 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalceph.so -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalceph.so.4.2.0" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalvfs.so.4.2.0 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalvfs.so.4 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalvfs.so -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalvfs.so.4.2.0" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalxfs.so.4.2.0 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalxfs.so.4 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalxfs.so -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalxfs.so.4.2.0" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalmem.so.4.2.0 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalmem.so.4 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalmem.so -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalmem.so.4.2.0" -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_nfsd.so.2.8 -- Installing: /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_nfsd.so -- Removed runtime path from "/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_nfsd.so.2.8" + rm -f '/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64//usr/lib/python2.7/site-packages/gpfs*' + rm -f '/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64//usr/lib/python2.7/site-packages/__init__.*' + /usr/lib/rpm/find-debuginfo.sh --strict-build-id -m --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 /root/rpmbuild/BUILD/nfs-ganesha-2.8.4 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/bin/ganesha.nfsd extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/bin/ganesha-rados-grace extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalnull.so.4.2.0 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalproxy.so.4.2.0 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalceph.so.4.2.0 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalvfs.so.4.2.0 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalxfs.so.4.2.0 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/ganesha/libfsalmem.so.4.2.0 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libntirpc.so.1.8.1 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_rados_urls.so.2.8 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_rados_recov.so.2.8 extracting debug info from /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/lib64/libganesha_nfsd.so.2.8 /usr/lib/rpm/sepdebugcrcfix: Updated 12 CRC32s, 0 CRC32s did match. symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalnull.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalnull.so.4.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalnull.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalnull.so.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalproxy.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalproxy.so.4.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalproxy.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalproxy.so.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalceph.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalceph.so.4.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalceph.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalceph.so.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalvfs.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalvfs.so.4.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalvfs.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalvfs.so.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalxfs.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalxfs.so.4.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalxfs.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalxfs.so.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalmem.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalmem.so.4.debug symlinked /usr/lib/debug/usr/lib64/ganesha/libfsalmem.so.4.2.0.debug to /usr/lib/debug/usr/lib64/ganesha/libfsalmem.so.debug symlinked /usr/lib/debug/usr/lib64/libntirpc.so.1.8.1.debug to /usr/lib/debug/usr/lib64/libntirpc.so.1.8.debug symlinked /usr/lib/debug/usr/lib64/libntirpc.so.1.8.1.debug to /usr/lib/debug/usr/lib64/libntirpc.so.debug symlinked /usr/lib/debug/usr/lib64/libganesha_rados_urls.so.2.8.debug to /usr/lib/debug/usr/lib64/libganesha_rados_urls.so.debug symlinked /usr/lib/debug/usr/lib64/libganesha_rados_recov.so.2.8.debug to /usr/lib/debug/usr/lib64/libganesha_rados_recov.so.debug symlinked /usr/lib/debug/usr/lib64/libganesha_nfsd.so.2.8.debug to /usr/lib/debug/usr/lib64/libganesha_nfsd.so.debug 11985 blocks + /usr/lib/rpm/check-rpaths /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-compress + /usr/lib/rpm/redhat/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/brp-python-bytecompile /usr/bin/python 1 + /usr/lib/rpm/redhat/brp-python-hardlink + /usr/lib/rpm/redhat/brp-java-repack-jars Processing files: nfs-ganesha-2.8.4-0.1.el7.x86_64 Provides: config(nfs-ganesha) = 2.8.4-0.1.el7 libganesha_nfsd.so.2.8()(64bit) nfs-ganesha = 2.8.4-0.1.el7 nfs-ganesha(x86-64) = 2.8.4-0.1.el7 Requires(interp): /bin/sh /bin/sh /bin/sh /bin/sh Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires(pre): /bin/sh shadow-utils Requires(post): /bin/sh psmisc systemd Requires(preun): /bin/sh systemd Requires(postun): /bin/sh systemd Requires: /bin/sh ld-linux-x86-64.so.2()(64bit) ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) libblkid.so.1()(64bit) libblkid.so.1(BLKID_1.0)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.3)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libc.so.6(GLIBC_2.4)(64bit) libc.so.6(GLIBC_2.6)(64bit) libcap.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libdl.so.2()(64bit) libdl.so.2(GLIBC_2.2.5)(64bit) libganesha_nfsd.so.2.8()(64bit) libgssapi_krb5.so.2()(64bit) libgssapi_krb5.so.2(gssapi_krb5_2_MIT)(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libkrb5.so.3(krb5_3_MIT)(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libntirpc.so.1.8(NTIRPC_1.8.1)(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.2.5)(64bit) libpthread.so.0(GLIBC_2.3.2)(64bit) librt.so.1()(64bit) librt.so.1(GLIBC_2.2.5)(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libuuid.so.1(UUID_1.0)(64bit) libwbclient.so.0()(64bit) libwbclient.so.0(WBCLIENT_0.9)(64bit) rtld(GNU_HASH) Processing files: nfs-ganesha-mount-9P-2.8.4-0.1.el7.x86_64 Provides: nfs-ganesha-mount-9P = 2.8.4-0.1.el7 nfs-ganesha-mount-9P(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: /bin/bash Processing files: nfs-ganesha-vfs-2.8.4-0.1.el7.x86_64 Provides: config(nfs-ganesha-vfs) = 2.8.4-0.1.el7 libfsalvfs.so.4()(64bit) nfs-ganesha-vfs = 2.8.4-0.1.el7 nfs-ganesha-vfs(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: ld-linux-x86-64.so.2()(64bit) ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) libblkid.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.10)(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.3)(64bit) libc.so.6(GLIBC_2.4)(64bit) libcap.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libdl.so.2()(64bit) libfsalvfs.so.4()(64bit) libganesha_nfsd.so.2.8()(64bit) libgssapi_krb5.so.2()(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.2.5)(64bit) librt.so.1()(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libwbclient.so.0()(64bit) rtld(GNU_HASH) Processing files: nfs-ganesha-proxy-2.8.4-0.1.el7.x86_64 Provides: libfsalproxy.so.4()(64bit) nfs-ganesha-proxy = 2.8.4-0.1.el7 nfs-ganesha-proxy(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: ld-linux-x86-64.so.2()(64bit) ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) libblkid.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libcap.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libdl.so.2()(64bit) libfsalproxy.so.4()(64bit) libganesha_nfsd.so.2.8()(64bit) libgssapi_krb5.so.2()(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libntirpc.so.1.8(NTIRPC_1.8.1)(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.2.5)(64bit) libpthread.so.0(GLIBC_2.3.2)(64bit) librt.so.1()(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libwbclient.so.0()(64bit) rtld(GNU_HASH) Processing files: nfs-ganesha-rados-grace-2.8.4-0.1.el7.x86_64 Provides: libganesha_rados_recov.so.2.8()(64bit) nfs-ganesha-rados-grace = 2.8.4-0.1.el7 nfs-ganesha-rados-grace(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: ld-linux-x86-64.so.2()(64bit) ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) libblkid.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libcap.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libdl.so.2()(64bit) libganesha_nfsd.so.2.8()(64bit) libganesha_rados_recov.so.2.8()(64bit) libgssapi_krb5.so.2()(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.2.5)(64bit) librados.so.2()(64bit) librt.so.1()(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libwbclient.so.0()(64bit) rtld(GNU_HASH) Processing files: nfs-ganesha-rados-urls-2.8.4-0.1.el7.x86_64 Provides: libganesha_rados_urls.so.2.8()(64bit) nfs-ganesha-rados-urls = 2.8.4-0.1.el7 nfs-ganesha-rados-urls(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: libblkid.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libcap.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libdl.so.2()(64bit) libganesha_nfsd.so.2.8()(64bit) libganesha_rados_urls.so.2.8()(64bit) libgssapi_krb5.so.2()(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libpthread.so.0()(64bit) librados.so.2()(64bit) librt.so.1()(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libwbclient.so.0()(64bit) rtld(GNU_HASH) Processing files: nfs-ganesha-nullfs-2.8.4-0.1.el7.x86_64 Provides: libfsalnull.so.4()(64bit) nfs-ganesha-nullfs = 2.8.4-0.1.el7 nfs-ganesha-nullfs(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: ld-linux-x86-64.so.2()(64bit) ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) libblkid.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libcap.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libdl.so.2()(64bit) libfsalnull.so.4()(64bit) libganesha_nfsd.so.2.8()(64bit) libgssapi_krb5.so.2()(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libpthread.so.0()(64bit) librt.so.1()(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libwbclient.so.0()(64bit) rtld(GNU_HASH) Processing files: nfs-ganesha-mem-2.8.4-0.1.el7.x86_64 Provides: libfsalmem.so.4()(64bit) nfs-ganesha-mem = 2.8.4-0.1.el7 nfs-ganesha-mem(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: ld-linux-x86-64.so.2()(64bit) ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) libblkid.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libcap.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libdl.so.2()(64bit) libfsalmem.so.4()(64bit) libganesha_nfsd.so.2.8()(64bit) libgssapi_krb5.so.2()(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.2.5)(64bit) librt.so.1()(64bit) librt.so.1(GLIBC_2.2.5)(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libwbclient.so.0()(64bit) rtld(GNU_HASH) Processing files: nfs-ganesha-ceph-2.8.4-0.1.el7.x86_64 Provides: config(nfs-ganesha-ceph) = 2.8.4-0.1.el7 libfsalceph.so.4()(64bit) nfs-ganesha-ceph = 2.8.4-0.1.el7 nfs-ganesha-ceph(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: ld-linux-x86-64.so.2()(64bit) ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) libblkid.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3.3)(64bit) libcap.so.2()(64bit) libcephfs.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libdl.so.2()(64bit) libfsalceph.so.4()(64bit) libganesha_nfsd.so.2.8()(64bit) libgssapi_krb5.so.2()(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.2.5)(64bit) librt.so.1()(64bit) librt.so.1(GLIBC_2.2.5)(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libwbclient.so.0()(64bit) rtld(GNU_HASH) Processing files: nfs-ganesha-xfs-2.8.4-0.1.el7.x86_64 Provides: config(nfs-ganesha-xfs) = 2.8.4-0.1.el7 libfsalxfs.so.4()(64bit) nfs-ganesha-xfs = 2.8.4-0.1.el7 nfs-ganesha-xfs(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: ld-linux-x86-64.so.2()(64bit) ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) libblkid.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.10)(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.3)(64bit) libc.so.6(GLIBC_2.4)(64bit) libcap.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libdl.so.2()(64bit) libfsalxfs.so.4()(64bit) libganesha_nfsd.so.2.8()(64bit) libgssapi_krb5.so.2()(64bit) libhandle.so.1()(64bit) libhandle.so.1(LIBHANDLE_1.0.3)(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.2.5)(64bit) librt.so.1()(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libwbclient.so.0()(64bit) rtld(GNU_HASH) Processing files: libntirpc-1.8.1-0.1.el7.x86_64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.6EHHPL + umask 022 + cd /root/rpmbuild/BUILD + cd nfs-ganesha-2.8.4 + DOCDIR=/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/libntirpc-1.8.1 + export DOCDIR + /usr/bin/mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/libntirpc-1.8.1 + cp -pr libntirpc/NEWS /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/libntirpc-1.8.1 + cp -pr libntirpc/README /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/doc/libntirpc-1.8.1 + exit 0 Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.WgOSpe + umask 022 + cd /root/rpmbuild/BUILD + cd nfs-ganesha-2.8.4 + LICENSEDIR=/root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/licenses/libntirpc-1.8.1 + export LICENSEDIR + /usr/bin/mkdir -p /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/licenses/libntirpc-1.8.1 + cp -pr libntirpc/COPYING /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64/usr/share/licenses/libntirpc-1.8.1 + exit 0 Provides: libntirpc = 1.8.1-0.1.el7 libntirpc(x86-64) = 1.8.1-0.1.el7 libntirpc.so.1.8()(64bit) libntirpc.so.1.8(NTIRPC_1.8.1)(64bit) libntirpc.so.1.8(NTIRPC_PRIVATE)(64bit) Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: libblkid.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.2)(64bit) libc.so.6(GLIBC_2.9)(64bit) libcap.so.2()(64bit) libcom_err.so.2()(64bit) libdbus-1.so.3()(64bit) libgssapi_krb5.so.2()(64bit) libgssapi_krb5.so.2(gssapi_krb5_2_MIT)(64bit) libjemalloc.so.1()(64bit) libk5crypto.so.3()(64bit) libkrb5.so.3()(64bit) libnfsidmap.so.0()(64bit) libnsl.so.1()(64bit) libntirpc.so.1.8()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.2.5)(64bit) libpthread.so.0(GLIBC_2.3.2)(64bit) librt.so.1()(64bit) librt.so.1(GLIBC_2.2.5)(64bit) liburcu-bp.so.6()(64bit) libuuid.so.1()(64bit) libwbclient.so.0()(64bit) rtld(GNU_HASH) Processing files: libntirpc-devel-1.8.1-0.1.el7.x86_64 Provides: libntirpc-devel = 1.8.1-0.1.el7 libntirpc-devel(x86-64) = 1.8.1-0.1.el7 pkgconfig(libntirpc) = 1.8.1 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: /usr/bin/pkg-config Processing files: nfs-ganesha-debuginfo-2.8.4-0.1.el7.x86_64 Provides: nfs-ganesha-debuginfo = 2.8.4-0.1.el7 nfs-ganesha-debuginfo(x86-64) = 2.8.4-0.1.el7 Requires(rpmlib): rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 Checking for unpackaged file(s): /usr/lib/rpm/check-files /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64 Wrote: /root/rpmbuild/SRPMS/nfs-ganesha-2.8.4-0.1.el7.src.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-mount-9P-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-vfs-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-proxy-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-rados-grace-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-rados-urls-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-nullfs-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-mem-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-ceph-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-xfs-2.8.4-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/libntirpc-1.8.1-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/libntirpc-devel-1.8.1-0.1.el7.x86_64.rpm Wrote: /root/rpmbuild/RPMS/x86_64/nfs-ganesha-debuginfo-2.8.4-0.1.el7.x86_64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.yD1xLF + umask 022 + cd /root/rpmbuild/BUILD + cd nfs-ganesha-2.8.4 + /usr/bin/rm -rf /root/rpmbuild/BUILDROOT/nfs-ganesha-2.8.4-0.1.el7.x86_64 + exit 0 Built target rpm
[root@centos2022 tweak]# find ~/rpmbuild/ -name "*.rpm"
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-mount-9P-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-vfs-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-proxy-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-rados-grace-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-rados-urls-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-nullfs-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-mem-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-ceph-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-xfs-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/libntirpc-1.8.1-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/libntirpc-devel-1.8.1-0.1.el7.x86_64.rpm
/root/rpmbuild/RPMS/x86_64/nfs-ganesha-debuginfo-2.8.4-0.1.el7.x86_64.rpm
/root/rpmbuild/SRPMS/nfs-ganesha-2.8.4-0.1.el7.src.rpm
[root@centos2022 tweak]#
[root@centos2022 tweak]#
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 【杭电多校比赛记录】2025“钉耙编程”中国大学生算法设计春季联赛(1)