├── .clang-format ├── .github ├── ISSUE_TEMPLATE ├── PULL_REQUEST_TEMPLATE ├── RELEASE_TRACKER_TEMPLATE └── stale.yml ├── .gitignore ├── .mailmap ├── .testignore ├── AUTHORS ├── COMMITMENT ├── CONTRIBUTING.md ├── COPYING-GPLV2 ├── COPYING-LGPLV3 ├── ChangeLog ├── INSTALL ├── MAINTAINERS ├── Makefile.am ├── NEWS ├── README.md ├── THANKS ├── api ├── Makefile.am ├── examples │ ├── Makefile.am │ ├── README │ ├── autogen.sh │ ├── configure.ac │ ├── getvolfile.py │ └── glfsxmp.c └── src │ ├── Makefile.am │ ├── README.Symbol_Versions │ ├── gfapi-messages.h │ ├── gfapi.aliases │ ├── gfapi.map │ ├── glfs-fops.c │ ├── glfs-handleops.c │ ├── glfs-handles.h │ ├── glfs-internal.h │ ├── glfs-mem-types.h │ ├── glfs-mgmt.c │ ├── glfs-primary.c │ ├── glfs-resolve.c │ ├── glfs.c │ └── glfs.h ├── autogen.sh ├── cli ├── Makefile.am └── src │ ├── Makefile.am │ ├── cli-cmd-global.c │ ├── cli-cmd-misc.c │ ├── cli-cmd-parser.c │ ├── cli-cmd-peer.c │ ├── cli-cmd-snapshot.c │ ├── cli-cmd-system.c │ ├── cli-cmd-volume.c │ ├── cli-cmd.c │ ├── cli-cmd.h │ ├── cli-mem-types.h │ ├── cli-quotad-client.c │ ├── cli-quotad-client.h │ ├── cli-rl.c │ ├── cli-rpc-ops.c │ ├── cli-xml-output.c │ ├── cli.c │ ├── cli.h │ ├── input.c │ └── registry.c ├── configure.ac ├── contrib ├── aclocal │ ├── mkdirp.m4 │ └── python.m4 ├── fuse-include │ ├── fuse-misc.h │ ├── fuse-mount.h │ ├── fuse_kernel.h │ ├── fuse_kernel_macfuse.h │ └── mount_util.h ├── fuse-lib │ ├── COPYING.LIB │ ├── misc.c │ ├── mount-common.c │ ├── mount-gluster-compat.h │ └── mount.c ├── fuse-util │ ├── COPYING │ ├── Makefile.am │ ├── fusermount.c │ └── mount_util.c ├── libexecinfo │ ├── execinfo.c │ └── execinfo_compat.h ├── libgen │ ├── basename_r.c │ └── dirname_r.c ├── macfuse │ ├── COPYING.txt │ ├── fuse_ioctl.h │ ├── fuse_param.h │ └── mount_darwin.c ├── mount │ ├── mntent.c │ └── mntent_compat.h ├── rbtree │ ├── rb.c │ └── rb.h ├── timer-wheel │ ├── find_last_bit.c │ ├── timer-wheel.c │ └── timer-wheel.h ├── umountd │ ├── Makefile.am │ └── umountd.c ├── userspace-rcu │ ├── rculist-extra.h │ ├── static-wfcqueue.h │ ├── static-wfstack.h │ ├── wfcqueue.h │ └── wfstack.h └── xxhash │ ├── xxhash.c │ ├── xxhash.h │ └── xxhsum.c ├── doc ├── Makefile.am ├── README.md ├── debugging │ ├── analyzing-regression-cores.md │ ├── gfid-to-path.md │ ├── mem-alloc-list.md │ ├── split-brain.md │ └── statedump.md ├── developer-guide │ ├── Language-Bindings.md │ ├── README.md │ ├── Using-Gluster-Test-Framework.md │ ├── adding-fops.md │ ├── afr-locks-evolution.md │ ├── afr-self-heal-daemon.md │ ├── afr.md │ ├── brickmux-thread-reduction.md │ ├── coding-standard.md │ ├── commit-guidelines.md │ ├── daemon-management-framework.md │ ├── datastructure-inode.md │ ├── datastructure-iobuf.md │ ├── datastructure-mem-pool.md │ ├── dirops-transactions-in-dht.md │ ├── ec-implementation.md │ ├── fuse-interrupt.md │ ├── gfapi-symbol-versions.md │ ├── identifying-resource-leaks.md │ ├── io-framework.md │ ├── logging-guidelines.md │ ├── network_compression.md │ ├── options-to-contribute.md │ ├── posix.md │ ├── rpc-for-glusterfs.changes-done.txt │ ├── rpc-for-glusterfs.new-versions.md │ ├── syncop.md │ ├── thread-naming.md │ ├── translator-development.md │ ├── unittest.md │ ├── versioning.md │ ├── write-behind.md │ ├── writing-a-cloudsync-plugin.md │ └── xlator-classification.md ├── developer-sessions │ └── README.md ├── features │ ├── ctime.md │ └── ganesha-ha.md ├── gluster.8 ├── glusterd.8 ├── glusterfs.8 ├── glusterfsd.8 └── mount.glusterfs.8 ├── events ├── Makefile.am ├── eventskeygen.py ├── src │ ├── Makefile.am │ ├── __init__.py │ ├── eventsapiconf.py.in │ ├── eventsconfig.json │ ├── gf_event.py │ ├── glustereventsd.py │ ├── handlers.py │ ├── peer_eventsapi.py │ └── utils.py └── tools │ ├── Makefile.am │ └── eventsdash.py ├── extras ├── .clang-format ├── FreeBSD │ ├── Makefile │ ├── README.FreeBSD │ ├── distinfo │ ├── pkg-descr │ └── pkg-plist ├── LinuxRPM │ ├── Makefile.am │ └── make_glusterrpms ├── Makefile.am ├── Solaris │ ├── Prototype │ ├── README.solaris │ ├── checkinstall │ └── pkginfo ├── Ubuntu │ ├── README.Ubuntu │ ├── glusterfs-server.conf │ └── mounting-glusterfs.conf ├── backend-cleanup.sh ├── backend-xattr-sanitize.sh ├── benchmarking │ ├── Makefile.am │ ├── README │ ├── glfs-bm.c │ ├── launch-script.sh │ ├── local-script.sh │ └── rdd.c ├── check_goto.pl ├── clang-checker.sh ├── clear_xattrs.sh ├── cliutils │ ├── Makefile.am │ ├── README.md │ ├── __init__.py │ └── cliutils.py ├── collect-system-stats.sh ├── command-completion │ ├── Makefile.am │ └── gluster.bash ├── control-cpu-load.sh ├── control-mem.sh ├── create_new_xlator │ ├── README.md │ ├── generate_xlator.py │ └── new-xlator.c.tmpl ├── debug │ └── gfcore.py ├── devel-tools │ ├── devel-vagrant │ │ ├── Vagrantfile │ │ ├── ansible │ │ │ ├── roles │ │ │ │ ├── cluster │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ ├── compile-gluster │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ ├── install-pkgs │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ ├── iptables │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ ├── prepare-brick │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ ├── selinux │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ └── service │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── setup.yml │ │ ├── bootstrap.sh │ │ └── up.sh │ ├── gdb_macros │ ├── print-backtrace.sh │ └── strace-brick.sh ├── disk_usage_sync.sh ├── distributed-testing │ ├── README │ ├── distributed-test-build-env │ ├── distributed-test-build.sh │ ├── distributed-test-env │ ├── distributed-test-runner.py │ └── distributed-test.sh ├── ec-heal-script │ ├── README.md │ ├── correct_pending_heals.sh │ └── gfid_needing_heal_parallel.sh ├── failed-tests.py ├── file_size_contri.sh ├── firewalld │ ├── Makefile.am │ └── glusterfs.xml ├── ganesha │ ├── Makefile.am │ ├── config │ │ ├── Makefile.am │ │ └── ganesha-ha.conf.sample │ ├── ocf │ │ ├── Makefile.am │ │ ├── ganesha_grace │ │ ├── ganesha_mon │ │ └── ganesha_nfsd │ └── scripts │ │ ├── Makefile.am │ │ ├── create-export-ganesha.sh │ │ ├── dbus-send.sh │ │ ├── ganesha-ha.sh │ │ └── generate-epoch.py ├── geo-rep │ ├── Makefile.am │ ├── generate-gfid-file.sh │ ├── get-gfid.sh │ ├── gsync-sync-gfid.c │ ├── gsync-upgrade.sh │ ├── schedule_georep.py.in │ └── secondary-upgrade.sh ├── gfid-to-dirname.sh ├── git-branch-diff.py ├── gluster-rsyslog-5.8.conf ├── gluster-rsyslog-7.2.conf ├── glusterd-sysconfig ├── glusterd.vol.in ├── glusterfs-georep-logrotate ├── glusterfs-georep-upgrade.py ├── glusterfs-logrotate ├── glusterfs-mode.el ├── glusterfs.vim ├── gnfs-loganalyse.py ├── group-db-workload ├── group-distributed-virt ├── group-gluster-block ├── group-metadata-cache ├── group-nl-cache ├── group-samba ├── group-virt.example ├── hook-scripts │ ├── Makefile.am │ ├── S40ufo-stop.py │ ├── S56glusterd-geo-rep-create-post.sh │ ├── add-brick │ │ ├── Makefile.am │ │ ├── post │ │ │ ├── Makefile.am │ │ │ ├── S10selinux-label-brick.sh │ │ │ ├── S13create-subdir-mounts.sh │ │ │ └── disabled-quota-root-xattr-heal.sh │ │ └── pre │ │ │ ├── Makefile.am │ │ │ └── S28Quota-enable-root-xattr-heal.sh │ ├── create │ │ ├── Makefile.am │ │ └── post │ │ │ ├── Makefile.am │ │ │ └── S10selinux-label-brick.sh │ ├── delete │ │ ├── Makefile.am │ │ └── pre │ │ │ ├── Makefile.am │ │ │ └── S10selinux-del-fcontext.sh │ ├── reset │ │ ├── Makefile.am │ │ ├── post │ │ │ └── Makefile.am │ │ └── pre │ │ │ └── Makefile.am │ ├── set │ │ ├── Makefile.am │ │ └── post │ │ │ ├── Makefile.am │ │ │ ├── S30samba-set.sh │ │ │ ├── S32gluster_enable_shared_storage.sh │ │ │ └── S61simple-quota.sh │ ├── start │ │ ├── Makefile.am │ │ └── post │ │ │ ├── Makefile.am │ │ │ ├── S29CTDBsetup.sh │ │ │ ├── S30samba-start.sh │ │ │ └── S31ganesha-start.sh │ └── stop │ │ ├── Makefile.am │ │ └── pre │ │ ├── Makefile.am │ │ ├── S29CTDB-teardown.sh │ │ └── S30samba-stop.sh ├── identify-hangs.sh ├── init.d │ ├── Makefile.am │ ├── glusterd-Debian.in │ ├── glusterd-FreeBSD.in │ ├── glusterd-Redhat.in │ ├── glusterd-SuSE.in │ ├── glusterd.plist.in │ ├── glustereventsd-Debian.in │ ├── glustereventsd-FreeBSD.in │ └── glustereventsd-Redhat.in ├── logger.conf.example ├── migrate-unify-to-distribute.sh ├── mount-shared-storage.sh ├── ocf │ ├── Makefile.am │ ├── glusterd.in │ └── volume.in ├── peer_add_secret_pub.in ├── post-upgrade-script-for-quota.sh ├── pre-upgrade-script-for-quota.sh ├── profiler │ └── glusterfs-profiler ├── python │ ├── Makefile.am │ └── __init__.py ├── quota │ ├── contri-add.sh │ ├── log_accounting.sh │ ├── quota_fsck.py │ ├── simple-quota.sh │ └── xattr_analysis.py ├── rebalance.py ├── rebalance │ └── directory-rebalance.py ├── run-gluster.tmpfiles.in ├── snap_scheduler │ ├── Makefile.am │ ├── README.md │ ├── conf.py.in │ ├── gcron.py │ └── snap_scheduler.py ├── specgen.scm ├── statedumpparse.rb ├── stop-all-gluster-processes.sh ├── stripe-merge.c ├── systemd │ ├── Makefile.am │ ├── gluster-ta-volume.service.in │ ├── glusterd.service.in │ ├── glustereventsd.service.in │ └── glusterfssharedstorage.service.in ├── test │ ├── bug-920583.t │ ├── gluster_commands.sh │ ├── ld-preload-test │ │ ├── Makefile │ │ ├── README │ │ ├── ld-preload-lib.c │ │ ├── ld-preload-test.c │ │ └── test-preload.sh │ ├── open-fd-tests.c │ ├── run.sh │ ├── stop_glusterd.sh │ └── test-ffop.c ├── thin-arbiter │ ├── setup-thin-arbiter.sh │ └── thin-arbiter.vol ├── volfilter.py └── who-wrote-glusterfs │ ├── gitdm.aliases │ ├── gitdm.config │ ├── gitdm.domain-map │ └── who-wrote-glusterfs.sh ├── geo-replication ├── .clang-format ├── Makefile.am ├── gsyncd.conf.in ├── setup.py ├── src │ ├── Makefile.am │ ├── gsyncd.c │ ├── gverify.sh │ ├── peer_georep-sshkey.py.in │ ├── peer_gsec_create.in │ ├── peer_mountbroker.in │ ├── peer_mountbroker.py.in │ ├── procdiggy.c │ ├── procdiggy.h │ └── set_geo_rep_pem_keys.sh ├── syncdaemon │ ├── Makefile.am │ ├── README.md │ ├── __codecheck.py │ ├── __init__.py │ ├── argsupgrade.py │ ├── conf.py.in │ ├── gsyncd.py │ ├── gsyncdconfig.py │ ├── gsyncdstatus.py │ ├── libcxattr.py │ ├── libgfchangelog.py │ ├── logutils.py │ ├── monitor.py │ ├── primary.py │ ├── py2py3.py │ ├── rconf.py │ ├── repce.py │ ├── resource.py │ ├── subcmds.py │ └── syncdutils.py ├── test-requirements.txt ├── tests │ ├── __init__.py │ └── unit │ │ ├── __init__.py │ │ ├── test_gsyncdstatus.py │ │ └── test_syncdutils.py ├── tox.ini └── unittests.sh ├── glusterfs-api.pc.in ├── glusterfs.spec.in ├── glusterfsd ├── Makefile.am └── src │ ├── Makefile.am │ ├── gf_attach.c │ ├── glusterfsd-mem-types.h │ ├── glusterfsd-messages.h │ ├── glusterfsd-mgmt.c │ ├── glusterfsd.c │ └── glusterfsd.h ├── heal ├── Makefile.am └── src │ ├── Makefile.am │ └── glfs-heal.c ├── libgfchangelog.pc.in ├── libglusterfs ├── Makefile.am └── src │ ├── Makefile.am │ ├── async.c │ ├── call-stub.c │ ├── changelog.h │ ├── checksum.c │ ├── circ-buff.c │ ├── client_t.c │ ├── cluster-syncop.c │ ├── common-utils.c │ ├── compat-errno.c │ ├── compat.c │ ├── ctx.c │ ├── daemon.c │ ├── default-args.c │ ├── defaults-tmpl.c │ ├── dict.c │ ├── event-epoll.c │ ├── event-history.c │ ├── event-poll.c │ ├── event.c │ ├── events.c │ ├── fd-lk.c │ ├── fd.c │ ├── gen-defaults.py │ ├── generator.py │ ├── gf-dirent.c │ ├── gf-io-common.c │ ├── gf-io-legacy.c │ ├── gf-io-uring.c │ ├── gf-io.c │ ├── gidcache.c │ ├── globals.c │ ├── glusterfs │ ├── async.h │ ├── atomic.h │ ├── call-stub.h │ ├── checksum.h │ ├── circ-buff.h │ ├── client_t.h │ ├── cluster-syncop.h │ ├── common-utils.h │ ├── compat-errno.h │ ├── compat-io_uring.h │ ├── compat-uuid.h │ ├── compat.h │ ├── daemon.h │ ├── default-args.h │ ├── defaults.h │ ├── dict.h │ ├── event-history.h │ ├── events.h │ ├── fd-lk.h │ ├── fd.h │ ├── gf-dirent.h │ ├── gf-event.h │ ├── gf-io-common.h │ ├── gf-io-legacy.h │ ├── gf-io-uring.h │ ├── gf-io.h │ ├── gidcache.h │ ├── glfs-message-id.h │ ├── globals.h │ ├── glusterfs-acl.h │ ├── glusterfs-fops.h │ ├── glusterfs.h │ ├── graph-utils.h │ ├── hashfn.h │ ├── iatt.h │ ├── inode.h │ ├── iobuf.h │ ├── latency.h │ ├── libglusterfs-messages.h │ ├── list.h │ ├── lkowner.h │ ├── locking.h │ ├── logging.h │ ├── lvm-defaults.h │ ├── mem-pool.h │ ├── mem-types.h │ ├── monitoring.h │ ├── options.h │ ├── parse-utils.h │ ├── quota-common-utils.h │ ├── rbthash.h │ ├── refcount.h │ ├── revision.h │ ├── rot-buffs.h │ ├── run.h │ ├── stack.h │ ├── statedump.h │ ├── store.h │ ├── strfd.h │ ├── syncop-utils.h │ ├── syncop.h │ ├── syscall.h │ ├── template-component-messages.h │ ├── throttle-tbf.h │ ├── timer.h │ ├── timespec.h │ ├── trie.h │ ├── upcall-utils.h │ └── xlator.h │ ├── graph-print.c │ ├── graph.c │ ├── graph.l │ ├── graph.y │ ├── hashfn.c │ ├── inode.c │ ├── iobuf.c │ ├── latency.c │ ├── libglusterfs.sym │ ├── logging.c │ ├── mem-pool.c │ ├── monitoring.c │ ├── options.c │ ├── parse-utils.c │ ├── quota-common-utils.c │ ├── rbthash.c │ ├── refcount.c │ ├── rot-buffs.c │ ├── run.c │ ├── run_fork.c │ ├── stack.c │ ├── statedump.c │ ├── store.c │ ├── strfd.c │ ├── syncop-utils.c │ ├── syncop.c │ ├── syscall.c │ ├── throttle-tbf.c │ ├── timer.c │ ├── timespec.c │ ├── trie.c │ ├── unittest │ ├── global_mock.c │ ├── log_mock.c │ ├── mem_pool_unittest.c │ └── unittest.h │ └── xlator.c ├── rfc.sh ├── rpc ├── Makefile.am ├── rpc-lib │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── auth-glusterfs.c │ │ ├── auth-null.c │ │ ├── auth-unix.c │ │ ├── autoscale-threads.c │ │ ├── libgfrpc.sym │ │ ├── mgmt-pmap.c │ │ ├── protocol-common.h │ │ ├── protocol-utils.h │ │ ├── rpc-clnt-ping.c │ │ ├── rpc-clnt-ping.h │ │ ├── rpc-clnt.c │ │ ├── rpc-clnt.h │ │ ├── rpc-drc.c │ │ ├── rpc-drc.h │ │ ├── rpc-lib-messages.h │ │ ├── rpc-transport.c │ │ ├── rpc-transport.h │ │ ├── rpcsvc-auth.c │ │ ├── rpcsvc-common.h │ │ ├── rpcsvc.c │ │ ├── rpcsvc.h │ │ ├── xdr-common.h │ │ ├── xdr-rpc.c │ │ ├── xdr-rpc.h │ │ ├── xdr-rpcclnt.c │ │ └── xdr-rpcclnt.h ├── rpc-transport │ ├── Makefile.am │ └── socket │ │ ├── Makefile.am │ │ └── src │ │ ├── Makefile.am │ │ ├── name.c │ │ ├── name.h │ │ ├── socket-mem-types.h │ │ ├── socket.c │ │ └── socket.h └── xdr │ ├── Makefile.am │ └── src │ ├── .gitignore │ ├── Makefile.am │ ├── acl3-xdr.x │ ├── changelog-xdr.x │ ├── cli1-xdr.x │ ├── glusterd1-xdr.x │ ├── glusterfs3.h │ ├── glusterfs4-xdr.x │ ├── libgfxdr.sym │ ├── mount3udp.x │ ├── msg-nfs3.c │ ├── msg-nfs3.h │ ├── nlm4-xdr.x │ ├── nsm-xdr.x │ ├── portmap-xdr.x │ ├── rpc-common-xdr.x │ ├── rpc-pragmas.h │ ├── xdr-custom.c │ ├── xdr-custom.h │ ├── xdr-generic.c │ ├── xdr-generic.h │ ├── xdr-nfs3.c │ └── xdr-nfs3.h ├── run-tests-in-vagrant.sh ├── run-tests.sh ├── site.h.in ├── submit-for-review.sh ├── tests ├── 00-geo-rep │ ├── 00-georep-verify-non-root-setup.t │ ├── 00-georep-verify-setup.t │ ├── 01-georep-glusterd-tests.t │ ├── bug-1600145.t │ ├── bug-1708603.t │ ├── georep-basic-dr-rsync-arbiter.t │ ├── georep-basic-dr-rsync.t │ ├── georep-basic-dr-tarssh-arbiter.t │ ├── georep-basic-dr-tarssh.t │ ├── georep-basic-rsync-ec.t │ ├── georep-basic-tarssh-ec.t │ ├── georep-config-upgrade.t │ ├── georep-stderr-hang.t │ ├── georep-upgrade.t │ └── gsyncd.conf.old ├── 000-flaky │ ├── basic_afr_split-brain-favorite-child-policy.t │ ├── basic_changelog_changelog-snapshot.t │ ├── basic_distribute_rebal-all-nodes-migrate.t │ ├── basic_ec_ec-quorum-count-partial-failure.t │ ├── basic_mount-nfs-auth.t │ ├── bugs_core_multiplex-limit-issue-151.t │ ├── bugs_distribute_bug-1117851.t │ ├── bugs_distribute_bug-1122443.t │ ├── bugs_glusterd_bug-857330 │ │ ├── common.rc │ │ ├── normal.t │ │ └── xml.t │ ├── bugs_glusterd_quorum-value-check.t │ ├── bugs_nfs_bug-1116503.t │ ├── features_copy-file-range.c │ ├── features_copy-file-range.t │ ├── features_lock-migration_lkmigration-set-option.t │ └── glusterd-restart-shd-mux.t ├── README.md ├── afr.rc ├── basic │ ├── 0symbol-check.t │ ├── acl │ │ └── acl-inherit.t │ ├── afr │ │ ├── add-brick-self-heal-non-granular.t │ │ ├── add-brick-self-heal.t │ │ ├── afr-anon-inode-no-quorum.t │ │ ├── afr-anon-inode.t │ │ ├── afr-no-fsync.t │ │ ├── afr-read-hash-mode.t │ │ ├── afr-seek.t │ │ ├── afr-up.t │ │ ├── arbiter-add-brick.t │ │ ├── arbiter-cli.t │ │ ├── arbiter-mount.t │ │ ├── arbiter-remove-brick.t │ │ ├── arbiter-statfs.t │ │ ├── arbiter.t │ │ ├── bug-1130892-non-granular.t │ │ ├── bug-1493415-gfid-heal-non-granular.t │ │ ├── bug-1722507-type-mismatch-error-handling-non-granular.t │ │ ├── bug-1749322-entry-heal-not-happening-non-granular.t │ │ ├── client-side-heal.t │ │ ├── data-self-heal.t │ │ ├── durability-off.t │ │ ├── entry-self-heal-anon-dir-off.t │ │ ├── entry-self-heal.t │ │ ├── gfid-heal.t │ │ ├── gfid-mismatch-resolution-with-cli.t │ │ ├── gfid-mismatch-resolution-with-fav-child-policy.t │ │ ├── gfid-mismatch.t │ │ ├── gfid-self-heal.t │ │ ├── granular-esh │ │ │ ├── add-brick.t │ │ │ ├── cli.t │ │ │ ├── conservative-merge.t │ │ │ ├── granular-esh.t │ │ │ ├── granular-indices-but-non-granular-heal.t │ │ │ └── replace-brick.t │ │ ├── halo.t │ │ ├── heal-info.t │ │ ├── heal-quota.t │ │ ├── inodelk.t │ │ ├── lk-quorum.t │ │ ├── metadata-self-heal.t │ │ ├── name-self-heal.t │ │ ├── quorum.t │ │ ├── read-subvol-data.t │ │ ├── read-subvol-entry.t │ │ ├── rename-data-loss.t │ │ ├── replace-brick-self-heal-non-granular.t │ │ ├── replace-brick-self-heal.t │ │ ├── resolve.t │ │ ├── root-squash-self-heal.t │ │ ├── self-heal.t │ │ ├── self-heald.t │ │ ├── sparse-file-self-heal.t │ │ ├── split-brain-favorite-child-policy-client-side-healing.t │ │ ├── split-brain-heal-info.t │ │ ├── split-brain-healing-ctime.t │ │ ├── split-brain-healing.t │ │ ├── split-brain-open.t │ │ ├── split-brain-resolution.t │ │ ├── stale-file-lookup.t │ │ ├── ta-check-locks.t │ │ ├── ta-read.t │ │ ├── ta-shd.t │ │ ├── ta-write-on-bad-brick.t │ │ ├── ta.t │ │ └── tarissue.t │ ├── all_squash.t │ ├── cdc.t │ ├── changelog │ │ ├── changelog-api.t │ │ ├── changelog-history.t │ │ ├── changelog-rename.t │ │ └── history-api.t │ ├── cloudsync-sanity.t │ ├── ctime │ │ ├── ctime-ec-heal.t │ │ ├── ctime-ec-rebalance.t │ │ ├── ctime-glfs-init.c │ │ ├── ctime-glfs-init.t │ │ ├── ctime-heal-symlinks.t │ │ ├── ctime-mdata-legacy-files.t │ │ ├── ctime-noatime.t │ │ ├── ctime-readdir.c │ │ ├── ctime-readdir.t │ │ ├── ctime-rep-heal.t │ │ ├── ctime-rep-rebalance.t │ │ └── ctime-utimesat.t │ ├── distribute │ │ ├── brick-down.t │ │ ├── bug-1265677-use-readdirp.t │ │ ├── debug-xattrs.t │ │ ├── dht_seek_test.t │ │ ├── dir-heal.t │ │ ├── directory-rebalance.t │ │ ├── file-create.t │ │ ├── file-rename.t │ │ ├── force-migration.t │ │ ├── lookup.t │ │ ├── manual-rebalance.t │ │ ├── migration-fsync.t │ │ ├── non-root-unlink-stale-linkto.t │ │ ├── phase1-migration-fops.t │ │ ├── sparse_file_rebalance.t │ │ └── throttle-rebal.t │ ├── ec │ │ ├── dht-rename.t │ │ ├── ec-1468261.t │ │ ├── ec-3-1.t │ │ ├── ec-4-1.t │ │ ├── ec-5-2.t │ │ ├── ec-6-2.t │ │ ├── ec-anonymous-fd.t │ │ ├── ec-background-heals.t │ │ ├── ec-badfd.c │ │ ├── ec-badfd.t │ │ ├── ec-common │ │ ├── ec-cpu-extensions.t │ │ ├── ec-data-heal.t │ │ ├── ec-dirty-flags.t │ │ ├── ec-discard.t │ │ ├── ec-fallocate.t │ │ ├── ec-fast-fgetxattr.c │ │ ├── ec-fast-fgetxattr.t │ │ ├── ec-fix-openfd.t │ │ ├── ec-inode-read-mask.t │ │ ├── ec-internal-xattrs.t │ │ ├── ec-new-entry.t │ │ ├── ec-notify.t │ │ ├── ec-optimistic-changelog.t │ │ ├── ec-quorum-count.t │ │ ├── ec-read-mask.t │ │ ├── ec-read-policy.t │ │ ├── ec-readdir.t │ │ ├── ec-rebalance.t │ │ ├── ec-reset-brick.t │ │ ├── ec-root-heal.t │ │ ├── ec-seek.t │ │ ├── ec-stripe.t │ │ ├── ec-up.t │ │ ├── ec.t │ │ ├── gfapi-ec-open-truncate.c │ │ ├── gfapi-ec-open-truncate.t │ │ ├── heal-info.t │ │ ├── lock-contention.t │ │ ├── nfs.t │ │ ├── quota.t │ │ ├── self-heal-read-write-fail.t │ │ ├── self-heal.t │ │ └── statedump.t │ ├── exports_parsing.t │ ├── fencing │ │ ├── afr-lock-heal-advanced.c │ │ ├── afr-lock-heal-advanced.t │ │ ├── afr-lock-heal-basic.c │ │ ├── afr-lock-heal-basic.t │ │ ├── fence-basic.c │ │ ├── fence-basic.t │ │ ├── fencing-crash-conistency.t │ │ └── test-fence-option.t │ ├── fop-sampling.t │ ├── fops-sanity.c │ ├── fops-sanity.t │ ├── fuse │ │ ├── Makefile │ │ ├── active-io-graph-switch.t │ │ └── seek.c │ ├── geo-replication │ │ └── marker-xattrs.t │ ├── gfapi │ │ ├── Makefile │ │ ├── anonymous_fd.t │ │ ├── anonymous_fd_read_write.c │ │ ├── bug-1241104.c │ │ ├── bug-1241104.t │ │ ├── bug-1507896.c │ │ ├── bug-1507896.t │ │ ├── bug1283983.c │ │ ├── bug1283983.sh │ │ ├── bug1291259.c │ │ ├── bug1291259.t │ │ ├── bug1613098.c │ │ ├── bug1613098.t │ │ ├── gfapi-async-calls-test.c │ │ ├── gfapi-async-calls-test.t │ │ ├── gfapi-copy-file-range.t │ │ ├── gfapi-dup.c │ │ ├── gfapi-dup.t │ │ ├── gfapi-graph-switch-open-fd.t │ │ ├── gfapi-keep-writing.c │ │ ├── gfapi-load-volfile.c │ │ ├── gfapi-load-volfile.t │ │ ├── gfapi-o-path.c │ │ ├── gfapi-o-path.t │ │ ├── gfapi-o-path_v1.c │ │ ├── gfapi-o-path_v1.t │ │ ├── gfapi-ssl-load-volfile-test.c │ │ ├── gfapi-ssl-load-volfile-test.t │ │ ├── gfapi-ssl-test.c │ │ ├── gfapi-ssl-test.t │ │ ├── gfapi-statx-basic.c │ │ ├── gfapi-statx-basic.t │ │ ├── gfapi-trunc.c │ │ ├── gfapi-trunc.t │ │ ├── glfd-lkowner.c │ │ ├── glfd-lkowner.t │ │ ├── glfs-copy-file-range.c │ │ ├── glfs_h_creat_open.c │ │ ├── glfs_h_creat_open.t │ │ ├── glfs_sysrq.c │ │ ├── glfs_sysrq.t │ │ ├── glfs_xreaddirplus_r.c │ │ ├── glfs_xreaddirplus_r.t │ │ ├── glfsxmp-coverage.c │ │ ├── glfsxmp.t │ │ ├── libgfapi-fini-hang.c │ │ ├── libgfapi-fini-hang.t │ │ ├── mandatory-lock-optimal.c │ │ ├── mandatory-lock-optimal.t │ │ ├── protocol-client-ssl.vol.in │ │ ├── protocol-client.vol.in │ │ ├── seek.c │ │ ├── sink.t │ │ ├── sink.vol │ │ ├── upcall-cache-invalidate.c │ │ ├── upcall-cache-invalidate.t │ │ ├── upcall-register-api.c │ │ └── upcall-register-api.t │ ├── gfid-access.t │ ├── gfproxy.t │ ├── global-threading.t │ ├── glusterd │ │ ├── arbiter-volume-probe.t │ │ ├── check-cloudsync-ancestry.t │ │ ├── disperse-create.t │ │ ├── heald.t │ │ ├── thin-arbiter-volume-probe.t │ │ ├── thin-arbiter-volume.t │ │ ├── volfile_server_switch.t │ │ └── volume-brick-count.t │ ├── glusterfsd-args.t │ ├── graph-cleanup-brick-down-shd-mux.t │ ├── hardlink-limit.t │ ├── inode-leak.t │ ├── inode-namespace.t │ ├── inode-quota-enforcing.t │ ├── ios-dump.t │ ├── logchecks-messages.h │ ├── logchecks.c │ ├── md-cache │ │ ├── bug-1317785.t │ │ └── bug-1418249.t │ ├── meta.t │ ├── metadisp │ │ ├── fsyncdir.c │ │ ├── ftruncate.c │ │ ├── fxattr.c │ │ ├── gfs-fsetxattr.c │ │ ├── metadisp.t │ │ └── metadisp.vol │ ├── mgmt_v3-locks.t │ ├── mount-options.disabled │ ├── mount.t │ ├── mpx-compat.t │ ├── multiple-volume-shd-mux.t │ ├── multiplex.t │ ├── namespace.t │ ├── netgroup_parsing.t │ ├── nl-cache.t │ ├── nufa.t │ ├── op_errnos.t │ ├── open-behind │ │ ├── open-behind.t │ │ ├── tester-fd.c │ │ ├── tester.c │ │ └── tester.h │ ├── open-fd-snap-delete.t │ ├── peer-parsing.t │ ├── pgfid-feat.t │ ├── playground │ │ └── template-xlator-sanity.t │ ├── posix │ │ ├── shared-statfs.t │ │ ├── zero-fill-enospace.c │ │ └── zero-fill-enospace.t │ ├── posixonly.t │ ├── quick-read-with-upcall.t │ ├── quota-ancestry-building.t │ ├── quota-anon-fd-nfs.t │ ├── quota-nfs.t │ ├── quota-rename.t │ ├── quota.c │ ├── quota.t │ ├── quota_aux_mount.t │ ├── rpc-coverage.sh │ ├── rpc-coverage.t │ ├── sdfs-sanity.t │ ├── seek.c │ ├── shd-mux-afr.t │ ├── shd-mux-ec.t │ ├── stats-dump.t │ ├── symbol-check.sh │ ├── trace.t │ ├── user-xlator.t │ ├── uss.t │ ├── volfile-sanity.t │ ├── volume-scale-shd-mux.t │ ├── volume-snap-scheduler.t │ ├── volume-snapshot-clone-zfs.t │ ├── volume-snapshot-clone.t │ ├── volume-snapshot-xml-zfs.t │ ├── volume-snapshot-xml.t │ ├── volume-snapshot-zfs.t │ ├── volume-snapshot.t │ ├── volume-status.t │ ├── volume.t │ └── xlator-pass-through-sanity.t ├── bitrot │ ├── br-signer-threads-config-1797869.t │ ├── br-state-check.t │ ├── br-stub.c │ ├── br-stub.t │ ├── bug-1207627-bitrot-scrub-status.t │ ├── bug-1221914.t │ ├── bug-1244613.t │ ├── bug-1294786.t │ ├── bug-1373520.t │ ├── bug-1700078.t │ └── bug-internal-xattrs-check-1243391.t ├── bugs │ ├── access-control │ │ ├── bug-1051896.c │ │ ├── bug-1051896.t │ │ ├── bug-1387241.c │ │ ├── bug-1387241.t │ │ ├── bug-887098-gmount-crash.t │ │ └── bug-958691.t │ ├── bitrot │ │ ├── 1207029-bitrot-daemon-should-start-on-valid-node.t │ │ ├── 1209751-bitrot-scrub-tunable-reset.t │ │ ├── 1209752-volume-status-should-show-bitrot-scrub-info.t │ │ ├── 1209818-vol-info-show-scrub-process-properly.t │ │ ├── bug-1210684-scrub-pause-resume-error-handling.t │ │ ├── bug-1227996.t │ │ ├── bug-1228680.t │ │ ├── bug-1229134-bitd-not-support-vol-set.t │ │ ├── bug-1245981.t │ │ └── bug-1288490.t │ ├── bug-1064147.t │ ├── bug-1110262.t │ ├── bug-1138841.t │ ├── bug-1258069.t │ ├── bug-1368312.t │ ├── bug-1371806.t │ ├── bug-1371806_1.t │ ├── bug-1371806_2.t │ ├── bug-1371806_3.t │ ├── bug-1371806_acl.t │ ├── bug-1584517.t │ ├── bug-1620580.t │ ├── bug-1694920.t │ ├── bug-1702299.t │ ├── changelog │ │ ├── bug-1208470.t │ │ ├── bug-1211327.t │ │ ├── bug-1225542.t │ │ └── bug-1321955.t │ ├── cidr-bug-4108.t │ ├── cli │ │ ├── bug-1004218.t │ │ ├── bug-1022905.t │ │ ├── bug-1030580.t │ │ ├── bug-1047378.t │ │ ├── bug-1047416.t │ │ ├── bug-1077682.t │ │ ├── bug-1087487.t │ │ ├── bug-1113476.t │ │ ├── bug-1169302.c │ │ ├── bug-1169302.t │ │ ├── bug-1320388.t │ │ ├── bug-1353156-get-state-cli-validations.t │ │ ├── bug-1378842-volume-get-all.t │ │ ├── bug-764638.t │ │ ├── bug-822830.t │ │ ├── bug-867252.t │ │ ├── bug-921215.t │ │ ├── bug-949298.t │ │ ├── bug-961307.t │ │ ├── bug-969193.t │ │ ├── bug-977246.t │ │ ├── bug-982174.t │ │ └── bug-983317-volume-get.t │ ├── core │ │ ├── 949327.t │ │ ├── brick-mux-fd-cleanup.t │ │ ├── bug-1110917.t │ │ ├── bug-1111557.t │ │ ├── bug-1117951.t │ │ ├── bug-1119582.t │ │ ├── bug-1135514-allow-setxattr-with-null-value.t │ │ ├── bug-1168803-snapd-option-validation-fix.t │ │ ├── bug-1402841.t-mt-dir-scan-race.t │ │ ├── bug-1421721-mpx-toggle.t │ │ ├── bug-1432542-mpx-restart-crash.t │ │ ├── bug-1650403.t │ │ ├── bug-1699025-brick-mux-detach-brick-fd-issue.t │ │ ├── bug-834465.c │ │ ├── bug-834465.t │ │ ├── bug-845213.t │ │ ├── bug-903336.t │ │ ├── bug-908146.t │ │ ├── bug-913544.t │ │ ├── bug-924075.t │ │ ├── bug-927616.t │ │ ├── bug-949242.t │ │ ├── bug-986429.t │ │ ├── io-stats-1322825.t │ │ └── log-bug-1362520.t │ ├── ctime │ │ └── issue-832.t │ ├── distribute │ │ ├── bug-1042725.t │ │ ├── bug-1066798.t │ │ ├── bug-1086228.t │ │ ├── bug-1088231.t │ │ ├── bug-1099890.t │ │ ├── bug-1125824.t │ │ ├── bug-1161156.t │ │ ├── bug-1161311.t │ │ ├── bug-1190734.t │ │ ├── bug-1193636.c │ │ ├── bug-1193636.t │ │ ├── bug-1204140.t │ │ ├── bug-1247563.t │ │ ├── bug-1286171.t │ │ ├── bug-1368012.t │ │ ├── bug-1389697.t │ │ ├── bug-1543279.t │ │ ├── bug-1600379.t │ │ ├── bug-1667804.t │ │ ├── bug-1786679.t │ │ ├── bug-853258.t │ │ ├── bug-860663.c │ │ ├── bug-860663.t │ │ ├── bug-862967.t │ │ ├── bug-882278.t │ │ ├── bug-884455.t │ │ ├── bug-884597.t │ │ ├── bug-907072.t │ │ ├── bug-912564.t │ │ ├── bug-915554.t │ │ ├── bug-921408.t │ │ ├── bug-924265.t │ │ ├── bug-961615.t │ │ ├── bug-973073.t │ │ ├── disallow-fixlayout-on-files.t │ │ ├── issue-1327.t │ │ ├── issue-2169.t │ │ ├── issue-2317.t │ │ ├── missing-files-rebalance.t │ │ └── overlap.py │ ├── ec │ │ ├── bug-1161621.t │ │ ├── bug-1161886.c │ │ ├── bug-1161886.t │ │ ├── bug-1179050.t │ │ ├── bug-1187474.t │ │ ├── bug-1188145.t │ │ ├── bug-1227869.t │ │ ├── bug-1236065.t │ │ ├── bug-1251446.t │ │ ├── bug-1304988.t │ │ ├── bug-1547662.t │ │ ├── bug-1699866-check-reopen-fd.t │ │ └── bug-1708156-honor-inodelk-contention-notify-on-partial-locks.t │ ├── error-gen │ │ └── bug-767095.t │ ├── fuse │ │ ├── bug-1030208.t │ │ ├── bug-1126048.c │ │ ├── bug-1126048.t │ │ ├── bug-1283103.t │ │ ├── bug-1309462.t │ │ ├── bug-1336818.t │ │ ├── bug-858215.t │ │ ├── bug-858488-min-free-disk.t │ │ ├── bug-924726.t │ │ ├── bug-963678.t │ │ ├── bug-983477.t │ │ ├── bug-985074.t │ │ ├── many-groups-for-acl.t │ │ ├── setup.sh │ │ └── teardown.sh │ ├── geo-replication │ │ ├── bug-1111490.t │ │ ├── bug-1296496.t │ │ └── bug-877293.t │ ├── gfapi │ │ ├── bug-1032894.t │ │ ├── bug-1093594.c │ │ ├── bug-1093594.t │ │ ├── bug-1319374-THIS-crash.t │ │ ├── bug-1319374.c │ │ ├── bug-1447266 │ │ │ ├── 1460514.c │ │ │ ├── 1460514.t │ │ │ ├── bug-1447266.c │ │ │ └── bug-1447266.t │ │ ├── bug-1630804 │ │ │ ├── gfapi-bz1630804.c │ │ │ └── gfapi-bz1630804.t │ │ ├── glfs_vol_set_IO_ERR.c │ │ └── glfs_vol_set_IO_ERR.t │ ├── glusterd │ │ ├── 859927 │ │ │ └── repl.t │ │ ├── add-brick-and-validate-replicated-volume-options.t │ │ ├── brick-mux-validation-in-cluster.t │ │ ├── brick-mux-validation.t │ │ ├── brick-mux.t │ │ ├── brick-order-check-add-brick.t │ │ ├── bug-1070734.t │ │ ├── bug-1085330-and-bug-916549.t │ │ ├── bug-1091935-brick-order-check-from-cli-to-glusterd.t │ │ ├── bug-1238706-daemons-stop-on-peer-cleanup.t │ │ ├── bug-1242875-do-not-pass-volinfo-quota.t │ │ ├── bug-1482906-peer-file-blank-line.t │ │ ├── bug-1595320.t │ │ ├── bug-1696046.t │ │ ├── bug-1699339.t │ │ ├── bug-1720566.t │ │ ├── bug-824753-file-locker.c │ │ ├── bug-824753.t │ │ ├── bug-948729 │ │ │ ├── bug-948729-force.t │ │ │ ├── bug-948729-mode-script.t │ │ │ └── bug-948729.t │ │ ├── bug-949930.t │ │ ├── check_elastic_server.t │ │ ├── daemon-log-level-option.t │ │ ├── df-results-post-replace-brick-operations.t │ │ ├── issue-3781.t │ │ ├── mgmt-handshake-and-volume-sync-post-glusterd-restart.t │ │ ├── optimized-basic-testcases-in-cluster.t │ │ ├── optimized-basic-testcases.t │ │ ├── quorum-validation.t │ │ ├── rebalance-in-cluster.t │ │ ├── rebalance-operations-in-single-node.t │ │ ├── remove-brick-in-cluster.t │ │ ├── remove-brick-testcases.t │ │ ├── remove-brick-validation.t │ │ ├── removing-multiple-bricks-in-single-remove-brick-command.t │ │ ├── replace-brick-operations.t │ │ ├── reset-brick-and-daemons-follow-quorum.t │ │ ├── reset-rebalance-state.t │ │ ├── serialize-shd-manager-glusterd-restart.t │ │ ├── snapshot-operations.t │ │ ├── sync-post-glusterd-restart.t │ │ ├── validating-options-for-replicated-volume.t │ │ └── validating-server-quorum.t │ ├── glusterfs-server │ │ ├── bug-852147.t │ │ ├── bug-861542.t │ │ ├── bug-864222.t │ │ ├── bug-873549.t │ │ ├── bug-877992.t │ │ ├── bug-887145.t │ │ ├── bug-889996.t │ │ ├── bug-904300.t │ │ ├── bug-905864.c │ │ ├── bug-905864.t │ │ └── bug-912297.t │ ├── glusterfs │ │ ├── bug-1482528.t │ │ ├── bug-811493.t │ │ ├── bug-844688.t │ │ ├── bug-848251.t │ │ ├── bug-853690.t │ │ ├── bug-856455.t │ │ ├── bug-860297.t │ │ ├── bug-861015-index.t │ │ ├── bug-861015-log.t │ │ ├── bug-866459.t │ │ ├── bug-867253.t │ │ ├── bug-869724.t │ │ ├── bug-872923.t │ │ ├── bug-873962-spb.t │ │ ├── bug-873962.t │ │ ├── bug-879490.t │ │ ├── bug-879494.t │ │ ├── bug-892730.t │ │ ├── bug-893338.t │ │ ├── bug-893378.t │ │ ├── bug-895235.t │ │ ├── bug-896431.t │ │ ├── bug-902610.t │ │ ├── bug-906646.t │ │ └── getlk_owner.c │ ├── heal-symlinks.t │ ├── index │ │ └── bug-1559004-EMLINK-handling.t │ ├── io-cache │ │ ├── bug-858242.c │ │ ├── bug-858242.t │ │ ├── bug-read-hang.c │ │ └── bug-read-hang.t │ ├── io-stats │ │ └── bug-1598548.t │ ├── locks │ │ ├── issue-2443-crash.c │ │ ├── issue-2443-crash.t │ │ └── issue-2551.t │ ├── logging │ │ └── bug-823081.t │ ├── md-cache │ │ ├── afr-stale-read.t │ │ ├── bug-1211863.t │ │ ├── bug-1211863_unlink.t │ │ ├── bug-1476324.t │ │ ├── bug-1632503.t │ │ ├── bug-1726205.t │ │ └── setxattr-prepoststat.t │ ├── nfs │ │ ├── bug-1053579.t │ │ ├── bug-1143880-fix-gNFSd-auth-crash.t │ │ ├── bug-1157223-symlink-mounting.t │ │ ├── bug-1161092-nfs-acls.t │ │ ├── bug-1166862.t │ │ ├── bug-1210338.c │ │ ├── bug-1210338.t │ │ ├── bug-1302948.t │ │ ├── bug-847622.t │ │ ├── bug-877885.t │ │ ├── bug-904065.t │ │ ├── bug-915280.t │ │ ├── bug-970070.t │ │ ├── bug-974972.t │ │ ├── showmount-many-clients.t │ │ ├── socket-as-fifo.py │ │ ├── socket-as-fifo.t │ │ ├── subdir-trailing-slash.t │ │ └── zero-atime.t │ ├── nl-cache │ │ └── bug-1451588.t │ ├── posix │ │ ├── bug-1034716.t │ │ ├── bug-1040275-brick-uid-reset-on-volume-restart.t │ │ ├── bug-1113960.t │ │ ├── bug-1122028.t │ │ ├── bug-1175711.c │ │ ├── bug-1175711.t │ │ ├── bug-1360679.t │ │ ├── bug-1619720.t │ │ ├── bug-1651445.t │ │ ├── bug-765380.t │ │ ├── bug-990028.t │ │ ├── bug-gfid-path.t │ │ ├── disallow-gfid-volumeid-fremovexattr.c │ │ ├── disallow-gfid-volumeid-fremovexattr.t │ │ ├── disallow-gfid-volumeid-removexattr.t │ │ ├── issue-2752.t │ │ └── posix-reconfigure-uring-crash.t │ ├── protocol │ │ ├── bug-1321578.t │ │ ├── bug-1390914.t │ │ ├── bug-1433815-auth-allow.t │ │ ├── bug-762989.t │ │ ├── bug-808400-dist.t │ │ ├── bug-808400-fcntl.c │ │ ├── bug-808400-flock.c │ │ ├── bug-808400-repl.t │ │ └── bug-808400.t │ ├── quick-read │ │ ├── bug-846240.t │ │ └── bz1523599 │ │ │ ├── bz1523599.t │ │ │ └── test_bz1523599.c │ ├── quota │ │ ├── afr-quota-xattr-mdata-heal.t │ │ ├── bug-1035576.t │ │ ├── bug-1038598.t │ │ ├── bug-1087198.t │ │ ├── bug-1104692.t │ │ ├── bug-1153964.t │ │ ├── bug-1178130.t │ │ ├── bug-1235182.t │ │ ├── bug-1243798.t │ │ ├── bug-1250582-volume-reset-should-not-remove-quota-quota-deem-statfs.t │ │ ├── bug-1260545.t │ │ ├── bug-1287996.t │ │ ├── bug-1292020.t │ │ └── bug-1293601.t │ ├── read-only │ │ └── bug-1134822-read-only-default-in-graph.t │ ├── readdir-ahead │ │ ├── bug-1390050.c │ │ ├── bug-1390050.t │ │ ├── bug-1436090.t │ │ ├── bug-1439640.t │ │ ├── bug-1446516.t │ │ ├── bug-1512437.t │ │ └── bug-1670253-consistent-metadata.t │ ├── replicate │ │ ├── 886998 │ │ │ └── strict-readdir.t │ │ ├── bug-1015990-rep.t │ │ ├── bug-1015990.t │ │ ├── bug-1032927.t │ │ ├── bug-1037501.t │ │ ├── bug-1046624.t │ │ ├── bug-1058797.t │ │ ├── bug-1101647.t │ │ ├── bug-1130892.t │ │ ├── bug-1132102.t │ │ ├── bug-1134691-afr-lookup-metadata-heal.t │ │ ├── bug-1139230.t │ │ ├── bug-1180545.t │ │ ├── bug-1190069-afr-stale-index-entries.t │ │ ├── bug-1221481-allow-fops-on-dir-split-brain.t │ │ ├── bug-1238398-split-brain-resolution.t │ │ ├── bug-1238508-self-heal.t │ │ ├── bug-1250170-fsync.c │ │ ├── bug-1250170-fsync.t │ │ ├── bug-1266876-allow-reset-brick-for-same-path.t │ │ ├── bug-1292379.t │ │ ├── bug-1297695.t │ │ ├── bug-1305031-block-reads-on-metadata-sbrain.t │ │ ├── bug-1325792.t │ │ ├── bug-1335652.t │ │ ├── bug-1340623-mkdir-fails-remove-brick-started.t │ │ ├── bug-1341650.t │ │ ├── bug-1363721.t │ │ ├── bug-1365455.t │ │ ├── bug-1386188-sbrain-fav-child.t │ │ ├── bug-1402730.t │ │ ├── bug-1408712.t │ │ ├── bug-1417522-block-split-brain-resolution.t │ │ ├── bug-1433571-undo-pending-only-on-up-bricks.t │ │ ├── bug-1438255-do-not-mark-self-accusing-xattrs.t │ │ ├── bug-1448804-check-quorum-type-values.t │ │ ├── bug-1473026.t │ │ ├── bug-1477169-entry-selfheal-rename.t │ │ ├── bug-1480525.t │ │ ├── bug-1493415-gfid-heal.t │ │ ├── bug-1498570-client-iot-graph-check.t │ │ ├── bug-1539358-split-brain-detection.t │ │ ├── bug-1561129-enospc.t │ │ ├── bug-1586020-mark-dirty-for-entry-txn-on-quorum-failure.t │ │ ├── bug-1591193-assign-gfid-and-heal.t │ │ ├── bug-1626994-info-split-brain.t │ │ ├── bug-1637249-gfid-heal.t │ │ ├── bug-1637802-arbiter-stale-data-heal-lock.t │ │ ├── bug-1655050-dir-sbrain-size-policy.t │ │ ├── bug-1655052-sbrain-policy-same-size.t │ │ ├── bug-1655854-support-dist-to-rep3-arb-conversion.t │ │ ├── bug-1657783-do-not-update-read-subvol-on-rename-link.t │ │ ├── bug-1686568-send-truncate-on-arbiter-from-shd.t │ │ ├── bug-1696599-io-hang.t │ │ ├── bug-1717819-metadata-split-brain-detection.t │ │ ├── bug-1722507-type-mismatch-error-handling.t │ │ ├── bug-1728770-pass-xattrs.t │ │ ├── bug-1734370-entry-heal-restore-time.t │ │ ├── bug-1744548-heal-timeout.t │ │ ├── bug-1749322-entry-heal-not-happening.t │ │ ├── bug-1756938-replica-3-sbrain-cli.t │ │ ├── bug-1761531-metadata-heal-restore-time.t │ │ ├── bug-1801624-entry-heal.t │ │ ├── bug-765564.t │ │ ├── bug-767585-gfid.t │ │ ├── bug-802417.t │ │ ├── bug-821056.t │ │ ├── bug-830665.t │ │ ├── bug-859581.t │ │ ├── bug-865825.t │ │ ├── bug-880898.t │ │ ├── bug-884328.t │ │ ├── bug-886998.t │ │ ├── bug-888174.t │ │ ├── bug-913051.t │ │ ├── bug-916226.t │ │ ├── bug-918437-sh-mtime.t │ │ ├── bug-921231.t │ │ ├── bug-957877.t │ │ ├── bug-976800.t │ │ ├── bug-977797.t │ │ ├── bug-978794.t │ │ ├── bug-979365.t │ │ ├── bug-986905.t │ │ ├── do-not-reopen-fd.t │ │ ├── issue-1254-prioritize-enospc.t │ │ ├── issue-2232.c │ │ ├── issue-2232.t │ │ ├── issue-3238-mdata-unnecessary-heal.t │ │ ├── issue-3288-dir-gfid-mismatch-heal-option.t │ │ ├── issue-4064-softlink-entry-recreation.t │ │ ├── mdata-heal-no-xattrs.t │ │ └── ta-inode-refresh-read.t │ ├── rpc │ │ ├── bug-1043886.t │ │ ├── bug-847624.t │ │ ├── bug-884452.t │ │ ├── bug-921072.t │ │ └── bug-954057.t │ ├── shard │ │ ├── bug-1245547.t │ │ ├── bug-1248887.t │ │ ├── bug-1250855.t │ │ ├── bug-1251824.t │ │ ├── bug-1256580.t │ │ ├── bug-1258334.t │ │ ├── bug-1259651.t │ │ ├── bug-1260637.t │ │ ├── bug-1261773.t │ │ ├── bug-1272986.t │ │ ├── bug-1342298.t │ │ ├── bug-1468483.t │ │ ├── bug-1488546.t │ │ ├── bug-1568521-EEXIST.t │ │ ├── bug-1568521.t │ │ ├── bug-1605056-2.t │ │ ├── bug-1605056.t │ │ ├── bug-1669077.t │ │ ├── bug-1696136-lru-limit-equals-deletion-rate.t │ │ ├── bug-1696136.c │ │ ├── bug-1696136.t │ │ ├── bug-1705884.t │ │ ├── bug-1738419.t │ │ ├── bug-shard-discard.c │ │ ├── bug-shard-discard.t │ │ ├── bug-shard-zerofill.c │ │ ├── bug-shard-zerofill.t │ │ ├── configure-lru-limit.t │ │ ├── issue-1243.t │ │ ├── issue-1281.t │ │ ├── issue-1358.t │ │ ├── issue-1384.t │ │ ├── issue-1425.t │ │ ├── issue-2038.t │ │ ├── parallel-truncate-read.t │ │ ├── shard-append-test.c │ │ ├── shard-append-test.t │ │ ├── shard-fallocate.c │ │ ├── shard-inode-refcount-test.t │ │ ├── unlinks-and-renames.t │ │ └── zero-flag.t │ ├── snapshot │ │ ├── bug-1045333-zfs.t │ │ ├── bug-1045333.t │ │ ├── bug-1049834-zfs.t │ │ ├── bug-1049834.t │ │ ├── bug-1064768.t │ │ ├── bug-1087203-zfs.t │ │ ├── bug-1087203.t │ │ ├── bug-1090042-zfs.t │ │ ├── bug-1090042.t │ │ ├── bug-1109770-zfs.t │ │ ├── bug-1109770.t │ │ ├── bug-1109889-zfs.t │ │ ├── bug-1109889.t │ │ ├── bug-1111041.t │ │ ├── bug-1112613-zfs.t │ │ ├── bug-1112613.t │ │ ├── bug-1113975-zfs.t │ │ ├── bug-1113975.t │ │ ├── bug-1155042-dont-display-deactivated-snapshots-zfs.t │ │ ├── bug-1155042-dont-display-deactivated-snapshots.t │ │ ├── bug-1157991-zfs.t │ │ ├── bug-1157991.t │ │ ├── bug-1162462-zfs.t │ │ ├── bug-1162462.t │ │ ├── bug-1162498-zfs.t │ │ ├── bug-1162498.t │ │ ├── bug-1166197-zfs.t │ │ ├── bug-1166197.t │ │ ├── bug-1167580-set-proper-uid-and-gid-during-nfs-access-zfs.t │ │ ├── bug-1167580-set-proper-uid-and-gid-during-nfs-access.t │ │ ├── bug-1168875-zfs.t │ │ ├── bug-1168875.t │ │ ├── bug-1178079.t │ │ ├── bug-1202436-calculate-quota-cksum-during-snap-restore-zfs.t │ │ ├── bug-1202436-calculate-quota-cksum-during-snap-restore.t │ │ ├── bug-1205592-zfs.t │ │ ├── bug-1205592.t │ │ ├── bug-1227646-zfs.t │ │ ├── bug-1227646.t │ │ ├── bug-1232430-zfs.t │ │ ├── bug-1232430.t │ │ ├── bug-1250387-zfs.t │ │ ├── bug-1250387.t │ │ ├── bug-1260848.t │ │ ├── bug-1275616-zfs.t │ │ ├── bug-1275616.t │ │ ├── bug-1279327-zfs.t │ │ ├── bug-1279327.t │ │ ├── bug-1316437-zfs.t │ │ ├── bug-1316437.t │ │ ├── bug-1322772-real-path-fix-for-snapshot-zfs.t │ │ ├── bug-1322772-real-path-fix-for-snapshot.t │ │ ├── bug-1399598-uss-with-ssl-zfs.t │ │ ├── bug-1399598-uss-with-ssl.t │ │ ├── bug-1482023-snpashot-issue-with-other-processes-accessing-mounted-path-zfs.t │ │ ├── bug-1482023-snpashot-issue-with-other-processes-accessing-mounted-path.t │ │ ├── bug-1512451-snapshot-creation-failed-after-brick-reset-zfs.t │ │ ├── bug-1512451-snapshot-creation-failed-after-brick-reset.t │ │ ├── bug-1597662-zfs.t │ │ ├── bug-1597662.t │ │ ├── bug-1618004-fix-memory-corruption-in-snap-import-zfs.t │ │ └── bug-1618004-fix-memory-corruption-in-snap-import.t │ ├── trace │ │ └── bug-797171.t │ ├── transport │ │ └── bug-873367.t │ ├── unclassified │ │ ├── bug-1034085.t │ │ ├── bug-1357397.t │ │ ├── bug-874498.t │ │ └── bug-991622.t │ ├── upcall │ │ ├── bug-1227204.t │ │ ├── bug-1369430.t │ │ ├── bug-1394131.t │ │ ├── bug-1422776.t │ │ ├── bug-1458127.t │ │ └── bug-upcall-stat.t │ └── write-behind │ │ ├── bug-1058663.c │ │ ├── bug-1058663.t │ │ ├── bug-1279730.c │ │ ├── bug-1279730.t │ │ ├── issue-884.c │ │ └── issue-884.t ├── changelog.rc ├── cleanup.sh ├── cluster.rc ├── common-utils.rc ├── configfiles │ ├── bad_exports │ ├── bad_netgroups │ ├── big_exports │ ├── exports │ ├── exports-v6 │ ├── exports_bad_opt │ └── netgroups ├── dht.rc ├── ec.rc ├── env.rc.in ├── experimental │ └── .gitignore ├── fallocate.rc ├── features │ ├── delay-gen.t │ ├── dh1024.pem │ ├── flock_interrupt.t │ ├── fuse-lru-limit.t │ ├── glfs-lease-recall.c │ ├── glfs-lease.c │ ├── glfs-lease.t │ ├── index │ │ └── index-link-count-lifecycle.t │ ├── interrupt.t │ ├── ipc.t │ ├── ipctest.py │ ├── lock_revocation.t │ ├── mandatory-lock-forced.c │ ├── mandatory-lock-forced.t │ ├── nuke.t │ ├── open_and_sleep.c │ ├── openssl.cnf.in │ ├── readdir-ahead.t │ ├── simple-quota-dht.t │ ├── simple-quota.t │ ├── ssl-authz.t │ ├── ssl-ciphers.t │ ├── subdir-mount.t │ ├── trash.t │ ├── unhashed-auto.t │ ├── volspec │ │ ├── brick.vol │ │ ├── client.vol │ │ └── test.t │ ├── weighted-rebalance.t │ ├── worm.t │ └── worm_sh.t ├── fileio.rc ├── geo-rep.rc ├── gfid2path │ ├── block-mount-access.t │ ├── get-gfid-to-path.t │ ├── gfid2path_fuse.t │ └── gfid2path_nfs.t ├── glusterfind │ └── glusterfind-basic.t ├── include.rc ├── line-coverage │ ├── afr-heal-info.t │ ├── arbiter-coverage.t │ ├── cli-negative-case-and-function-coverage.t │ ├── cli-peer-and-volume-operations.t │ ├── cli-volume-top-profile-coverage.t │ ├── errorgen-coverage.t │ ├── glusterd-coverage.t │ ├── log-and-brick-ops-negative-case.t │ ├── meta-max-coverage.t │ ├── namespace-linecoverage.t │ ├── quiesce-coverage.t │ ├── shard-coverage.t │ ├── some-features-in-libglusterfs.t │ └── volfile-with-all-graph-syntax.t ├── nfs.rc ├── performance │ ├── open-behind.t │ └── quick-read.t ├── snapshot.rc ├── snapshot_zfs.rc ├── ssl.rc ├── thin-arbiter.rc ├── traps.rc ├── utils │ ├── arequal-checksum.c │ ├── changelog │ │ ├── changelog.h │ │ ├── get-history.c │ │ ├── test-changelog-api.c │ │ └── test-history-api.c │ ├── changelogparser.py │ ├── create-files.py │ ├── get-mdata-xattr.c │ ├── getfattr.py │ ├── gfid-access.py │ ├── ip-in-cidr.c │ ├── libcxattr.py │ ├── pidof.py │ ├── py2py3.py │ ├── setfattr.py │ └── testn.sh ├── vagrant │ ├── vagrant-template-centos6 │ │ ├── Vagrantfile │ │ ├── roles │ │ │ ├── daemon-services │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── fix-localhost │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── install-pkgs │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── iptables │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── mock-user │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── prepare-brick │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── remove-gluster-pkgs │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ └── setup.yml │ └── vagrant-template-fedora │ │ ├── Vagrantfile │ │ ├── roles │ │ ├── daemon-services │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── fix-localhost │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── install-pkgs │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── iptables │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── mock-user │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── prepare-brick │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── remove-gluster-pkgs │ │ │ └── tasks │ │ │ │ └── main.yml │ │ └── selinux │ │ │ └── tasks │ │ │ └── main.yml │ │ └── setup.yml └── volume.rc ├── tools ├── .clang-format ├── Makefile.am ├── gfind_missing_files │ ├── Makefile.am │ ├── gcrawler.c │ ├── gfid_to_path.py │ ├── gfid_to_path.sh │ └── gfind_missing_files.sh ├── glusterfind │ ├── Makefile.am │ ├── S57glusterfind-delete-post.py │ ├── glusterfind.in │ └── src │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── brickfind.py │ │ ├── changelog.py │ │ ├── changelogdata.py │ │ ├── conf.py │ │ ├── gfind_py2py3.py │ │ ├── libgfchangelog.py │ │ ├── main.py │ │ ├── nodeagent.py │ │ ├── tool.conf.in │ │ └── utils.py ├── setgfid2path │ ├── Makefile.am │ ├── gluster-setgfid2path.8 │ └── src │ │ ├── Makefile.am │ │ └── main.c └── tests │ ├── centos7 │ ├── config │ ├── domain.xml │ ├── gf-builder │ ├── gf-testing │ ├── meta-data │ ├── user-data │ ├── user-data-prepare │ └── user-data-settings │ ├── gftest │ ├── prove_run │ └── regression └── xlators ├── Makefile.am ├── cluster ├── Makefile.am ├── afr │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── afr-common.c │ │ ├── afr-dir-read.c │ │ ├── afr-dir-read.h │ │ ├── afr-dir-write.c │ │ ├── afr-dir-write.h │ │ ├── afr-inode-read.c │ │ ├── afr-inode-read.h │ │ ├── afr-inode-write.c │ │ ├── afr-inode-write.h │ │ ├── afr-lk-common.c │ │ ├── afr-mem-types.h │ │ ├── afr-messages.h │ │ ├── afr-open.c │ │ ├── afr-read-txn.c │ │ ├── afr-self-heal-common.c │ │ ├── afr-self-heal-data.c │ │ ├── afr-self-heal-entry.c │ │ ├── afr-self-heal-metadata.c │ │ ├── afr-self-heal-name.c │ │ ├── afr-self-heal.h │ │ ├── afr-self-heald.c │ │ ├── afr-self-heald.h │ │ ├── afr-transaction.c │ │ ├── afr-transaction.h │ │ ├── afr.c │ │ └── afr.h ├── dht │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── dht-common.c │ │ ├── dht-common.h │ │ ├── dht-diskusage.c │ │ ├── dht-hashfn.c │ │ ├── dht-helper.c │ │ ├── dht-inode-read.c │ │ ├── dht-inode-write.c │ │ ├── dht-layout.c │ │ ├── dht-linkfile.c │ │ ├── dht-lock.c │ │ ├── dht-lock.h │ │ ├── dht-mem-types.h │ │ ├── dht-messages.h │ │ ├── dht-rebalance.c │ │ ├── dht-rename.c │ │ ├── dht-selfheal.c │ │ ├── dht-shared.c │ │ ├── dht.c │ │ ├── nufa.c │ │ ├── switch.c │ │ └── unittest │ │ ├── dht_layout_mock.c │ │ └── dht_layout_unittest.c └── ec │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── ec-code-avx.c │ ├── ec-code-avx.h │ ├── ec-code-c.c │ ├── ec-code-c.h │ ├── ec-code-intel.c │ ├── ec-code-intel.h │ ├── ec-code-sse.c │ ├── ec-code-sse.h │ ├── ec-code-x64.c │ ├── ec-code-x64.h │ ├── ec-code.c │ ├── ec-code.h │ ├── ec-combine.c │ ├── ec-combine.h │ ├── ec-common.c │ ├── ec-common.h │ ├── ec-data.c │ ├── ec-data.h │ ├── ec-dir-read.c │ ├── ec-dir-write.c │ ├── ec-fops.h │ ├── ec-galois.c │ ├── ec-galois.h │ ├── ec-generic.c │ ├── ec-gf8.c │ ├── ec-gf8.h │ ├── ec-heal.c │ ├── ec-heald.c │ ├── ec-heald.h │ ├── ec-helpers.c │ ├── ec-helpers.h │ ├── ec-inode-read.c │ ├── ec-inode-write.c │ ├── ec-locks.c │ ├── ec-mem-types.h │ ├── ec-messages.h │ ├── ec-method.c │ ├── ec-method.h │ ├── ec-types.h │ ├── ec.c │ └── ec.h ├── debug ├── Makefile.am ├── delay-gen │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── delay-gen-mem-types.h │ │ ├── delay-gen-messages.h │ │ ├── delay-gen.c │ │ └── delay-gen.h ├── error-gen │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── error-gen-mem-types.h │ │ ├── error-gen.c │ │ └── error-gen.h ├── io-stats │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── io-stats-mem-types.h │ │ └── io-stats.c ├── sink │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ └── sink.c └── trace │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── trace-mem-types.h │ ├── trace.c │ └── trace.h ├── features ├── Makefile.am ├── arbiter │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── arbiter-mem-types.h │ │ ├── arbiter.c │ │ └── arbiter.h ├── barrier │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── barrier-mem-types.h │ │ ├── barrier.c │ │ └── barrier.h ├── bit-rot │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── bitd │ │ ├── Makefile.am │ │ ├── bit-rot-bitd-messages.h │ │ ├── bit-rot-scrub-status.c │ │ ├── bit-rot-scrub-status.h │ │ ├── bit-rot-scrub.c │ │ ├── bit-rot-scrub.h │ │ ├── bit-rot-ssm.c │ │ ├── bit-rot-ssm.h │ │ ├── bit-rot.c │ │ └── bit-rot.h │ │ └── stub │ │ ├── Makefile.am │ │ ├── bit-rot-common.h │ │ ├── bit-rot-object-version.h │ │ ├── bit-rot-stub-helpers.c │ │ ├── bit-rot-stub-mem-types.h │ │ ├── bit-rot-stub-messages.h │ │ ├── bit-rot-stub.c │ │ └── bit-rot-stub.h ├── changelog │ ├── Makefile.am │ ├── lib │ │ ├── Makefile.am │ │ ├── examples │ │ │ ├── c │ │ │ │ ├── get-changes-multi.c │ │ │ │ ├── get-changes.c │ │ │ │ └── get-history.c │ │ │ └── python │ │ │ │ ├── changes.py │ │ │ │ └── libgfchangelog.py │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── changelog-lib-messages.h │ │ │ ├── gf-changelog-api.c │ │ │ ├── gf-changelog-helpers.c │ │ │ ├── gf-changelog-helpers.h │ │ │ ├── gf-changelog-journal-handler.c │ │ │ ├── gf-changelog-journal.h │ │ │ ├── gf-changelog-reborp.c │ │ │ ├── gf-changelog-rpc.c │ │ │ ├── gf-changelog-rpc.h │ │ │ ├── gf-changelog.c │ │ │ └── gf-history-changelog.c │ └── src │ │ ├── Makefile.am │ │ ├── changelog-barrier.c │ │ ├── changelog-encoders.c │ │ ├── changelog-encoders.h │ │ ├── changelog-ev-handle.c │ │ ├── changelog-ev-handle.h │ │ ├── changelog-helpers.c │ │ ├── changelog-helpers.h │ │ ├── changelog-mem-types.h │ │ ├── changelog-messages.h │ │ ├── changelog-misc.h │ │ ├── changelog-rpc-common.c │ │ ├── changelog-rpc-common.h │ │ ├── changelog-rpc.c │ │ ├── changelog-rpc.h │ │ ├── changelog-rt.c │ │ ├── changelog-rt.h │ │ └── changelog.c ├── cloudsync │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── cloudsync-autogen-fops-tmpl.c │ │ ├── cloudsync-autogen-fops-tmpl.h │ │ ├── cloudsync-common.c │ │ ├── cloudsync-common.h │ │ ├── cloudsync-fops-c.py │ │ ├── cloudsync-fops-h.py │ │ ├── cloudsync-mem-types.h │ │ ├── cloudsync-messages.h │ │ ├── cloudsync-plugins │ │ ├── Makefile.am │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── cloudsyncs3 │ │ │ ├── Makefile.am │ │ │ └── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── libcloudsyncs3-mem-types.h │ │ │ │ ├── libcloudsyncs3.c │ │ │ │ ├── libcloudsyncs3.h │ │ │ │ └── libcloudsyncs3.sym │ │ │ └── cvlt │ │ │ ├── Makefile.am │ │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── archivestore.h │ │ │ ├── cvlt-messages.h │ │ │ ├── libcloudsynccvlt.sym │ │ │ ├── libcvlt-mem-types.h │ │ │ ├── libcvlt.c │ │ │ └── libcvlt.h │ │ ├── cloudsync.c │ │ └── cloudsync.h ├── compress │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── cdc-helper.c │ │ ├── cdc-mem-types.h │ │ ├── cdc.c │ │ └── cdc.h ├── gfid-access │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── gfid-access-mem-types.h │ │ ├── gfid-access.c │ │ └── gfid-access.h ├── index │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── index-mem-types.h │ │ ├── index-messages.h │ │ ├── index.c │ │ └── index.h ├── leases │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── leases-internal.c │ │ ├── leases-mem-types.h │ │ ├── leases-messages.h │ │ ├── leases.c │ │ └── leases.h ├── locks │ ├── Makefile.am │ ├── src │ │ ├── Makefile.am │ │ ├── clear.c │ │ ├── clear.h │ │ ├── common.c │ │ ├── common.h │ │ ├── entrylk.c │ │ ├── inodelk.c │ │ ├── locks-mem-types.h │ │ ├── locks.h │ │ ├── pl-messages.h │ │ ├── posix.c │ │ └── reservelk.c │ └── tests │ │ └── unit-test.c ├── marker │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── marker-common.c │ │ ├── marker-common.h │ │ ├── marker-mem-types.h │ │ ├── marker-quota-helper.c │ │ ├── marker-quota-helper.h │ │ ├── marker-quota.c │ │ ├── marker-quota.h │ │ ├── marker.c │ │ └── marker.h ├── metadisp │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── backend.c │ │ ├── fops-tmpl.c │ │ ├── gen-fops.py │ │ ├── metadisp-create.c │ │ ├── metadisp-fops.h │ │ ├── metadisp-fsync.c │ │ ├── metadisp-lookup.c │ │ ├── metadisp-open.c │ │ ├── metadisp-readdir.c │ │ ├── metadisp-setattr.c │ │ ├── metadisp-stat.c │ │ ├── metadisp-unlink.c │ │ ├── metadisp.c │ │ └── metadisp.h ├── namespace │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── namespace.c │ │ └── namespace.h ├── quiesce │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── quiesce-mem-types.h │ │ ├── quiesce-messages.h │ │ ├── quiesce.c │ │ └── quiesce.h ├── quota │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── quota-enforcer-client.c │ │ ├── quota-mem-types.h │ │ ├── quota-messages.h │ │ ├── quota.c │ │ ├── quota.h │ │ ├── quotad-aggregator.c │ │ ├── quotad-aggregator.h │ │ ├── quotad-helpers.c │ │ ├── quotad-helpers.h │ │ └── quotad.c ├── read-only │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── read-only-common.c │ │ ├── read-only-common.h │ │ ├── read-only-mem-types.h │ │ ├── read-only.c │ │ ├── read-only.h │ │ ├── worm-helper.c │ │ ├── worm-helper.h │ │ └── worm.c ├── sdfs │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── sdfs-messages.h │ │ ├── sdfs.c │ │ └── sdfs.h ├── selinux │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── selinux-mem-types.h │ │ ├── selinux-messages.h │ │ ├── selinux.c │ │ └── selinux.h ├── shard │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── shard-mem-types.h │ │ ├── shard-messages.h │ │ ├── shard.c │ │ └── shard.h ├── simple-quota │ ├── Makefile.am │ ├── README.md │ └── src │ │ ├── Makefile.am │ │ ├── simple-quota.c │ │ └── simple-quota.h ├── snapview-client │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── snapview-client-mem-types.h │ │ ├── snapview-client-messages.h │ │ ├── snapview-client.c │ │ └── snapview-client.h ├── snapview-server │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── snapview-server-helpers.c │ │ ├── snapview-server-mem-types.h │ │ ├── snapview-server-messages.h │ │ ├── snapview-server-mgmt.c │ │ ├── snapview-server.c │ │ └── snapview-server.h ├── thin-arbiter │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── thin-arbiter-mem-types.h │ │ ├── thin-arbiter-messages.h │ │ ├── thin-arbiter.c │ │ └── thin-arbiter.h ├── trash │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── trash-mem-types.h │ │ ├── trash.c │ │ └── trash.h ├── upcall │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── upcall-cache-invalidation.h │ │ ├── upcall-internal.c │ │ ├── upcall-mem-types.h │ │ ├── upcall-messages.h │ │ ├── upcall.c │ │ └── upcall.h └── utime │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── utime-autogen-fops-tmpl.c │ ├── utime-autogen-fops-tmpl.h │ ├── utime-gen-fops-c.py │ ├── utime-gen-fops-h.py │ ├── utime-helpers.c │ ├── utime-helpers.h │ ├── utime-mem-types.h │ ├── utime-messages.h │ ├── utime.c │ └── utime.h ├── lib └── src │ ├── libxlator.c │ └── libxlator.h ├── meta ├── Makefile.am └── src │ ├── Makefile.am │ ├── active-link.c │ ├── cmdline-file.c │ ├── frames-file.c │ ├── graph-dir.c │ ├── graphs-dir.c │ ├── history-file.c │ ├── logfile-link.c │ ├── logging-dir.c │ ├── loglevel-file.c │ ├── mallinfo-file.c │ ├── measure-file.c │ ├── meminfo-file.c │ ├── meta-defaults.c │ ├── meta-helpers.c │ ├── meta-hooks.h │ ├── meta-mem-types.h │ ├── meta.c │ ├── meta.h │ ├── name-file.c │ ├── option-file.c │ ├── options-dir.c │ ├── private-file.c │ ├── process_uuid-file.c │ ├── profile-file.c │ ├── root-dir.c │ ├── subvolume-link.c │ ├── subvolumes-dir.c │ ├── top-link.c │ ├── type-file.c │ ├── version-file.c │ ├── view-dir.c │ ├── volfile-file.c │ └── xlator-dir.c ├── mgmt ├── Makefile.am └── glusterd │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── glusterd-bitd-svc.c │ ├── glusterd-bitd-svc.h │ ├── glusterd-bitrot.c │ ├── glusterd-brick-ops.c │ ├── glusterd-conn-helper.c │ ├── glusterd-conn-helper.h │ ├── glusterd-conn-mgmt.c │ ├── glusterd-conn-mgmt.h │ ├── glusterd-errno.h │ ├── glusterd-ganesha.c │ ├── glusterd-geo-rep.c │ ├── glusterd-geo-rep.h │ ├── glusterd-gfproxyd-svc-helper.c │ ├── glusterd-gfproxyd-svc-helper.h │ ├── glusterd-gfproxyd-svc.c │ ├── glusterd-gfproxyd-svc.h │ ├── glusterd-handler.c │ ├── glusterd-handshake.c │ ├── glusterd-hooks.c │ ├── glusterd-hooks.h │ ├── glusterd-locks.c │ ├── glusterd-locks.h │ ├── glusterd-log-ops.c │ ├── glusterd-mem-types.h │ ├── glusterd-messages.h │ ├── glusterd-mgmt-handler.c │ ├── glusterd-mgmt.c │ ├── glusterd-mgmt.h │ ├── glusterd-mountbroker.c │ ├── glusterd-mountbroker.h │ ├── glusterd-nfs-svc.c │ ├── glusterd-nfs-svc.h │ ├── glusterd-op-sm.c │ ├── glusterd-op-sm.h │ ├── glusterd-peer-utils.c │ ├── glusterd-peer-utils.h │ ├── glusterd-pmap.c │ ├── glusterd-pmap.h │ ├── glusterd-proc-mgmt.c │ ├── glusterd-proc-mgmt.h │ ├── glusterd-quota.c │ ├── glusterd-quota.h │ ├── glusterd-quotad-svc.c │ ├── glusterd-quotad-svc.h │ ├── glusterd-rcu.h │ ├── glusterd-rebalance.c │ ├── glusterd-replace-brick.c │ ├── glusterd-reset-brick.c │ ├── glusterd-rpc-ops.c │ ├── glusterd-scrub-svc.c │ ├── glusterd-scrub-svc.h │ ├── glusterd-server-quorum.c │ ├── glusterd-server-quorum.h │ ├── glusterd-shd-svc-helper.c │ ├── glusterd-shd-svc-helper.h │ ├── glusterd-shd-svc.c │ ├── glusterd-shd-svc.h │ ├── glusterd-sm.c │ ├── glusterd-sm.h │ ├── glusterd-snapd-svc-helper.c │ ├── glusterd-snapd-svc-helper.h │ ├── glusterd-snapd-svc.c │ ├── glusterd-snapd-svc.h │ ├── glusterd-snapshot-utils.c │ ├── glusterd-snapshot-utils.h │ ├── glusterd-snapshot.c │ ├── glusterd-statedump.c │ ├── glusterd-statedump.h │ ├── glusterd-store.c │ ├── glusterd-store.h │ ├── glusterd-svc-helper.c │ ├── glusterd-svc-helper.h │ ├── glusterd-svc-mgmt.c │ ├── glusterd-svc-mgmt.h │ ├── glusterd-syncop.c │ ├── glusterd-syncop.h │ ├── glusterd-tierd-svc-helper.c │ ├── glusterd-utils.c │ ├── glusterd-utils.h │ ├── glusterd-volgen.c │ ├── glusterd-volgen.h │ ├── glusterd-volume-ops.c │ ├── glusterd-volume-set.c │ ├── glusterd.c │ ├── glusterd.h │ └── snapshot │ ├── glusterd-lvm-snapshot.c │ └── glusterd-zfs-snapshot.c ├── mount ├── Makefile.am └── fuse │ ├── Makefile.am │ ├── src │ ├── Makefile.am │ ├── fuse-bridge.c │ ├── fuse-bridge.h │ ├── fuse-helpers.c │ ├── fuse-mem-types.h │ └── fuse-resolve.c │ └── utils │ ├── Makefile.am │ ├── mount.glusterfs.in │ └── mount_glusterfs.in ├── nfs ├── Makefile.am └── server │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── acl3.c │ ├── acl3.h │ ├── auth-cache.c │ ├── auth-cache.h │ ├── exports.c │ ├── exports.h │ ├── mount3-auth.c │ ├── mount3-auth.h │ ├── mount3.c │ ├── mount3.h │ ├── mount3udp_svc.c │ ├── netgroups.c │ ├── netgroups.h │ ├── nfs-common.c │ ├── nfs-common.h │ ├── nfs-fops.c │ ├── nfs-fops.h │ ├── nfs-generics.c │ ├── nfs-generics.h │ ├── nfs-inodes.c │ ├── nfs-inodes.h │ ├── nfs-mem-types.h │ ├── nfs-messages.h │ ├── nfs.c │ ├── nfs.h │ ├── nfs3-fh.c │ ├── nfs3-fh.h │ ├── nfs3-helpers.c │ ├── nfs3-helpers.h │ ├── nfs3.c │ ├── nfs3.h │ ├── nfsserver.sym │ ├── nlm4.c │ ├── nlm4.h │ └── nlmcbk_svc.c ├── performance ├── Makefile.am ├── io-cache │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── io-cache-messages.h │ │ ├── io-cache.c │ │ ├── io-cache.h │ │ ├── ioc-inode.c │ │ ├── ioc-mem-types.h │ │ └── page.c ├── io-threads │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── io-threads-messages.h │ │ ├── io-threads.c │ │ ├── io-threads.h │ │ └── iot-mem-types.h ├── md-cache │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── md-cache-mem-types.h │ │ ├── md-cache-messages.h │ │ └── md-cache.c ├── nl-cache │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── nl-cache-helper.c │ │ ├── nl-cache-mem-types.h │ │ ├── nl-cache-messages.h │ │ ├── nl-cache.c │ │ └── nl-cache.h ├── open-behind │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── open-behind-mem-types.h │ │ ├── open-behind-messages.h │ │ └── open-behind.c ├── quick-read │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── quick-read-mem-types.h │ │ ├── quick-read-messages.h │ │ ├── quick-read.c │ │ └── quick-read.h ├── read-ahead │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── page.c │ │ ├── read-ahead-mem-types.h │ │ ├── read-ahead-messages.h │ │ ├── read-ahead.c │ │ └── read-ahead.h ├── readdir-ahead │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── readdir-ahead-mem-types.h │ │ ├── readdir-ahead-messages.h │ │ ├── readdir-ahead.c │ │ └── readdir-ahead.h └── write-behind │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── write-behind-mem-types.h │ ├── write-behind-messages.h │ └── write-behind.c ├── playground ├── Makefile.am ├── rot-13 │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── rot-13.c │ │ └── rot-13.h └── template │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── template.c │ └── template.h ├── protocol ├── Makefile.am ├── auth │ ├── Makefile.am │ ├── addr │ │ ├── Makefile.am │ │ └── src │ │ │ ├── Makefile.am │ │ │ └── addr.c │ └── login │ │ ├── Makefile.am │ │ └── src │ │ ├── Makefile.am │ │ └── login.c ├── client │ ├── Makefile.am │ └── src │ │ ├── Makefile.am │ │ ├── client-callback.c │ │ ├── client-common.c │ │ ├── client-common.h │ │ ├── client-handshake.c │ │ ├── client-helpers.c │ │ ├── client-mem-types.h │ │ ├── client-messages.h │ │ ├── client-rpc-fops_v2.c │ │ ├── client.c │ │ └── client.h └── server │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── authenticate.c │ ├── authenticate.h │ ├── server-common.c │ ├── server-common.h │ ├── server-handshake.c │ ├── server-helpers.c │ ├── server-helpers.h │ ├── server-mem-types.h │ ├── server-messages.h │ ├── server-resolve.c │ ├── server-rpc-fops_v2.c │ ├── server.c │ └── server.h ├── storage ├── Makefile.am └── posix │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── posix-aio.c │ ├── posix-aio.h │ ├── posix-common.c │ ├── posix-entry-ops.c │ ├── posix-gfid-path.c │ ├── posix-gfid-path.h │ ├── posix-handle.c │ ├── posix-handle.h │ ├── posix-helpers.c │ ├── posix-inode-fd-ops.c │ ├── posix-inode-handle.h │ ├── posix-io-uring.c │ ├── posix-io-uring.h │ ├── posix-mem-types.h │ ├── posix-messages.h │ ├── posix-metadata-disk.h │ ├── posix-metadata.c │ ├── posix-metadata.h │ ├── posix.c │ └── posix.h ├── system ├── Makefile.am └── posix-acl │ ├── Makefile.am │ └── src │ ├── Makefile.am │ ├── posix-acl-mem-types.h │ ├── posix-acl-messages.h │ ├── posix-acl-xattr.c │ ├── posix-acl-xattr.h │ ├── posix-acl.c │ └── posix-acl.h └── xlator.sym /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/RELEASE_TRACKER_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/.github/RELEASE_TRACKER_TEMPLATE -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/.mailmap -------------------------------------------------------------------------------- /.testignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/.testignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COMMITMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/COMMITMENT -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING-GPLV2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/COPYING-GPLV2 -------------------------------------------------------------------------------- /COPYING-LGPLV3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/COPYING-LGPLV3 -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | ChangeLog is maintained by "git log". 2 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/INSTALL -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | Gluster moves to Gerrit. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/THANKS -------------------------------------------------------------------------------- /api/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src examples 2 | -------------------------------------------------------------------------------- /api/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/examples/Makefile.am -------------------------------------------------------------------------------- /api/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/examples/README -------------------------------------------------------------------------------- /api/examples/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/examples/autogen.sh -------------------------------------------------------------------------------- /api/examples/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/examples/configure.ac -------------------------------------------------------------------------------- /api/examples/getvolfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/examples/getvolfile.py -------------------------------------------------------------------------------- /api/examples/glfsxmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/examples/glfsxmp.c -------------------------------------------------------------------------------- /api/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/Makefile.am -------------------------------------------------------------------------------- /api/src/README.Symbol_Versions: -------------------------------------------------------------------------------- 1 | 2 | See ../../doc/developer-guide/gfapi-symbol-versions.md 3 | 4 | -------------------------------------------------------------------------------- /api/src/gfapi-messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/gfapi-messages.h -------------------------------------------------------------------------------- /api/src/gfapi.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/gfapi.aliases -------------------------------------------------------------------------------- /api/src/gfapi.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/gfapi.map -------------------------------------------------------------------------------- /api/src/glfs-fops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs-fops.c -------------------------------------------------------------------------------- /api/src/glfs-handleops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs-handleops.c -------------------------------------------------------------------------------- /api/src/glfs-handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs-handles.h -------------------------------------------------------------------------------- /api/src/glfs-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs-internal.h -------------------------------------------------------------------------------- /api/src/glfs-mem-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs-mem-types.h -------------------------------------------------------------------------------- /api/src/glfs-mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs-mgmt.c -------------------------------------------------------------------------------- /api/src/glfs-primary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs-primary.c -------------------------------------------------------------------------------- /api/src/glfs-resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs-resolve.c -------------------------------------------------------------------------------- /api/src/glfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs.c -------------------------------------------------------------------------------- /api/src/glfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/api/src/glfs.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/autogen.sh -------------------------------------------------------------------------------- /cli/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /cli/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/Makefile.am -------------------------------------------------------------------------------- /cli/src/cli-cmd-global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-cmd-global.c -------------------------------------------------------------------------------- /cli/src/cli-cmd-misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-cmd-misc.c -------------------------------------------------------------------------------- /cli/src/cli-cmd-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-cmd-parser.c -------------------------------------------------------------------------------- /cli/src/cli-cmd-peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-cmd-peer.c -------------------------------------------------------------------------------- /cli/src/cli-cmd-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-cmd-snapshot.c -------------------------------------------------------------------------------- /cli/src/cli-cmd-system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-cmd-system.c -------------------------------------------------------------------------------- /cli/src/cli-cmd-volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-cmd-volume.c -------------------------------------------------------------------------------- /cli/src/cli-cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-cmd.c -------------------------------------------------------------------------------- /cli/src/cli-cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-cmd.h -------------------------------------------------------------------------------- /cli/src/cli-mem-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-mem-types.h -------------------------------------------------------------------------------- /cli/src/cli-quotad-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-quotad-client.c -------------------------------------------------------------------------------- /cli/src/cli-quotad-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-quotad-client.h -------------------------------------------------------------------------------- /cli/src/cli-rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-rl.c -------------------------------------------------------------------------------- /cli/src/cli-rpc-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-rpc-ops.c -------------------------------------------------------------------------------- /cli/src/cli-xml-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli-xml-output.c -------------------------------------------------------------------------------- /cli/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli.c -------------------------------------------------------------------------------- /cli/src/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/cli.h -------------------------------------------------------------------------------- /cli/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/input.c -------------------------------------------------------------------------------- /cli/src/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/cli/src/registry.c -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/aclocal/mkdirp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/aclocal/mkdirp.m4 -------------------------------------------------------------------------------- /contrib/aclocal/python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/aclocal/python.m4 -------------------------------------------------------------------------------- /contrib/fuse-include/fuse-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/fuse-include/fuse-misc.h -------------------------------------------------------------------------------- /contrib/fuse-lib/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/fuse-lib/COPYING.LIB -------------------------------------------------------------------------------- /contrib/fuse-lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/fuse-lib/misc.c -------------------------------------------------------------------------------- /contrib/fuse-lib/mount-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/fuse-lib/mount-common.c -------------------------------------------------------------------------------- /contrib/fuse-lib/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/fuse-lib/mount.c -------------------------------------------------------------------------------- /contrib/fuse-util/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/fuse-util/COPYING -------------------------------------------------------------------------------- /contrib/fuse-util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/fuse-util/Makefile.am -------------------------------------------------------------------------------- /contrib/fuse-util/fusermount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/fuse-util/fusermount.c -------------------------------------------------------------------------------- /contrib/fuse-util/mount_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/fuse-util/mount_util.c -------------------------------------------------------------------------------- /contrib/libexecinfo/execinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/libexecinfo/execinfo.c -------------------------------------------------------------------------------- /contrib/libgen/basename_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/libgen/basename_r.c -------------------------------------------------------------------------------- /contrib/libgen/dirname_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/libgen/dirname_r.c -------------------------------------------------------------------------------- /contrib/macfuse/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/macfuse/COPYING.txt -------------------------------------------------------------------------------- /contrib/macfuse/fuse_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/macfuse/fuse_ioctl.h -------------------------------------------------------------------------------- /contrib/macfuse/fuse_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/macfuse/fuse_param.h -------------------------------------------------------------------------------- /contrib/macfuse/mount_darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/macfuse/mount_darwin.c -------------------------------------------------------------------------------- /contrib/mount/mntent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/mount/mntent.c -------------------------------------------------------------------------------- /contrib/mount/mntent_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/mount/mntent_compat.h -------------------------------------------------------------------------------- /contrib/rbtree/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/rbtree/rb.c -------------------------------------------------------------------------------- /contrib/rbtree/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/rbtree/rb.h -------------------------------------------------------------------------------- /contrib/umountd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/umountd/Makefile.am -------------------------------------------------------------------------------- /contrib/umountd/umountd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/umountd/umountd.c -------------------------------------------------------------------------------- /contrib/userspace-rcu/wfcqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/userspace-rcu/wfcqueue.h -------------------------------------------------------------------------------- /contrib/userspace-rcu/wfstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/userspace-rcu/wfstack.h -------------------------------------------------------------------------------- /contrib/xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/xxhash/xxhash.c -------------------------------------------------------------------------------- /contrib/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/xxhash/xxhash.h -------------------------------------------------------------------------------- /contrib/xxhash/xxhsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/contrib/xxhash/xxhsum.c -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/debugging/gfid-to-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/debugging/gfid-to-path.md -------------------------------------------------------------------------------- /doc/debugging/mem-alloc-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/debugging/mem-alloc-list.md -------------------------------------------------------------------------------- /doc/debugging/split-brain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/debugging/split-brain.md -------------------------------------------------------------------------------- /doc/debugging/statedump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/debugging/statedump.md -------------------------------------------------------------------------------- /doc/developer-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/developer-guide/README.md -------------------------------------------------------------------------------- /doc/developer-guide/afr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/developer-guide/afr.md -------------------------------------------------------------------------------- /doc/developer-guide/posix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/developer-guide/posix.md -------------------------------------------------------------------------------- /doc/developer-guide/syncop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/developer-guide/syncop.md -------------------------------------------------------------------------------- /doc/developer-guide/unittest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/developer-guide/unittest.md -------------------------------------------------------------------------------- /doc/developer-sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/developer-sessions/README.md -------------------------------------------------------------------------------- /doc/features/ctime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/features/ctime.md -------------------------------------------------------------------------------- /doc/features/ganesha-ha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/features/ganesha-ha.md -------------------------------------------------------------------------------- /doc/gluster.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/gluster.8 -------------------------------------------------------------------------------- /doc/glusterd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/glusterd.8 -------------------------------------------------------------------------------- /doc/glusterfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/glusterfs.8 -------------------------------------------------------------------------------- /doc/glusterfsd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/glusterfsd.8 -------------------------------------------------------------------------------- /doc/mount.glusterfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/doc/mount.glusterfs.8 -------------------------------------------------------------------------------- /events/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/Makefile.am -------------------------------------------------------------------------------- /events/eventskeygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/eventskeygen.py -------------------------------------------------------------------------------- /events/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/src/Makefile.am -------------------------------------------------------------------------------- /events/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/src/__init__.py -------------------------------------------------------------------------------- /events/src/eventsapiconf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/src/eventsapiconf.py.in -------------------------------------------------------------------------------- /events/src/eventsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/src/eventsconfig.json -------------------------------------------------------------------------------- /events/src/gf_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/src/gf_event.py -------------------------------------------------------------------------------- /events/src/glustereventsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/src/glustereventsd.py -------------------------------------------------------------------------------- /events/src/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/src/handlers.py -------------------------------------------------------------------------------- /events/src/peer_eventsapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/src/peer_eventsapi.py -------------------------------------------------------------------------------- /events/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/src/utils.py -------------------------------------------------------------------------------- /events/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/tools/Makefile.am -------------------------------------------------------------------------------- /events/tools/eventsdash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/events/tools/eventsdash.py -------------------------------------------------------------------------------- /extras/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | -------------------------------------------------------------------------------- /extras/FreeBSD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/FreeBSD/Makefile -------------------------------------------------------------------------------- /extras/FreeBSD/README.FreeBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/FreeBSD/README.FreeBSD -------------------------------------------------------------------------------- /extras/FreeBSD/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/FreeBSD/distinfo -------------------------------------------------------------------------------- /extras/FreeBSD/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/FreeBSD/pkg-descr -------------------------------------------------------------------------------- /extras/FreeBSD/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/FreeBSD/pkg-plist -------------------------------------------------------------------------------- /extras/LinuxRPM/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/LinuxRPM/Makefile.am -------------------------------------------------------------------------------- /extras/LinuxRPM/make_glusterrpms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/LinuxRPM/make_glusterrpms -------------------------------------------------------------------------------- /extras/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/Makefile.am -------------------------------------------------------------------------------- /extras/Solaris/Prototype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/Solaris/Prototype -------------------------------------------------------------------------------- /extras/Solaris/README.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/Solaris/README.solaris -------------------------------------------------------------------------------- /extras/Solaris/checkinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/Solaris/checkinstall -------------------------------------------------------------------------------- /extras/Solaris/pkginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/Solaris/pkginfo -------------------------------------------------------------------------------- /extras/Ubuntu/README.Ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/Ubuntu/README.Ubuntu -------------------------------------------------------------------------------- /extras/backend-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/backend-cleanup.sh -------------------------------------------------------------------------------- /extras/backend-xattr-sanitize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/backend-xattr-sanitize.sh -------------------------------------------------------------------------------- /extras/benchmarking/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/benchmarking/Makefile.am -------------------------------------------------------------------------------- /extras/benchmarking/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/benchmarking/README -------------------------------------------------------------------------------- /extras/benchmarking/glfs-bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/benchmarking/glfs-bm.c -------------------------------------------------------------------------------- /extras/benchmarking/rdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/benchmarking/rdd.c -------------------------------------------------------------------------------- /extras/check_goto.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/check_goto.pl -------------------------------------------------------------------------------- /extras/clang-checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/clang-checker.sh -------------------------------------------------------------------------------- /extras/clear_xattrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/clear_xattrs.sh -------------------------------------------------------------------------------- /extras/cliutils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/cliutils/Makefile.am -------------------------------------------------------------------------------- /extras/cliutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/cliutils/README.md -------------------------------------------------------------------------------- /extras/cliutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/cliutils/__init__.py -------------------------------------------------------------------------------- /extras/cliutils/cliutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/cliutils/cliutils.py -------------------------------------------------------------------------------- /extras/collect-system-stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/collect-system-stats.sh -------------------------------------------------------------------------------- /extras/control-cpu-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/control-cpu-load.sh -------------------------------------------------------------------------------- /extras/control-mem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/control-mem.sh -------------------------------------------------------------------------------- /extras/debug/gfcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/debug/gfcore.py -------------------------------------------------------------------------------- /extras/devel-tools/gdb_macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/devel-tools/gdb_macros -------------------------------------------------------------------------------- /extras/disk_usage_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/disk_usage_sync.sh -------------------------------------------------------------------------------- /extras/ec-heal-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/ec-heal-script/README.md -------------------------------------------------------------------------------- /extras/failed-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/failed-tests.py -------------------------------------------------------------------------------- /extras/file_size_contri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/file_size_contri.sh -------------------------------------------------------------------------------- /extras/firewalld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/firewalld/Makefile.am -------------------------------------------------------------------------------- /extras/firewalld/glusterfs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/firewalld/glusterfs.xml -------------------------------------------------------------------------------- /extras/ganesha/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = scripts config ocf 2 | CLEANFILES = 3 | -------------------------------------------------------------------------------- /extras/ganesha/ocf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/ganesha/ocf/Makefile.am -------------------------------------------------------------------------------- /extras/ganesha/ocf/ganesha_grace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/ganesha/ocf/ganesha_grace -------------------------------------------------------------------------------- /extras/ganesha/ocf/ganesha_mon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/ganesha/ocf/ganesha_mon -------------------------------------------------------------------------------- /extras/ganesha/ocf/ganesha_nfsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/ganesha/ocf/ganesha_nfsd -------------------------------------------------------------------------------- /extras/geo-rep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/geo-rep/Makefile.am -------------------------------------------------------------------------------- /extras/geo-rep/get-gfid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/geo-rep/get-gfid.sh -------------------------------------------------------------------------------- /extras/geo-rep/gsync-sync-gfid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/geo-rep/gsync-sync-gfid.c -------------------------------------------------------------------------------- /extras/geo-rep/gsync-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/geo-rep/gsync-upgrade.sh -------------------------------------------------------------------------------- /extras/gfid-to-dirname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/gfid-to-dirname.sh -------------------------------------------------------------------------------- /extras/git-branch-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/git-branch-diff.py -------------------------------------------------------------------------------- /extras/gluster-rsyslog-5.8.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/gluster-rsyslog-5.8.conf -------------------------------------------------------------------------------- /extras/gluster-rsyslog-7.2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/gluster-rsyslog-7.2.conf -------------------------------------------------------------------------------- /extras/glusterd-sysconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/glusterd-sysconfig -------------------------------------------------------------------------------- /extras/glusterd.vol.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/glusterd.vol.in -------------------------------------------------------------------------------- /extras/glusterfs-logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/glusterfs-logrotate -------------------------------------------------------------------------------- /extras/glusterfs-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/glusterfs-mode.el -------------------------------------------------------------------------------- /extras/glusterfs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/glusterfs.vim -------------------------------------------------------------------------------- /extras/gnfs-loganalyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/gnfs-loganalyse.py -------------------------------------------------------------------------------- /extras/group-db-workload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/group-db-workload -------------------------------------------------------------------------------- /extras/group-distributed-virt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/group-distributed-virt -------------------------------------------------------------------------------- /extras/group-gluster-block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/group-gluster-block -------------------------------------------------------------------------------- /extras/group-metadata-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/group-metadata-cache -------------------------------------------------------------------------------- /extras/group-nl-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/group-nl-cache -------------------------------------------------------------------------------- /extras/group-samba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/group-samba -------------------------------------------------------------------------------- /extras/group-virt.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/group-virt.example -------------------------------------------------------------------------------- /extras/hook-scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/hook-scripts/Makefile.am -------------------------------------------------------------------------------- /extras/hook-scripts/add-brick/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = post pre 2 | CLEANFILES = 3 | -------------------------------------------------------------------------------- /extras/hook-scripts/create/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = post 2 | -------------------------------------------------------------------------------- /extras/hook-scripts/delete/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = pre 2 | -------------------------------------------------------------------------------- /extras/hook-scripts/reset/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = post pre 2 | CLEANFILES = 3 | -------------------------------------------------------------------------------- /extras/hook-scripts/reset/post/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = 2 | -------------------------------------------------------------------------------- /extras/hook-scripts/reset/pre/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = 2 | -------------------------------------------------------------------------------- /extras/hook-scripts/set/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = post 2 | CLEANFILES = 3 | -------------------------------------------------------------------------------- /extras/hook-scripts/start/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = post 2 | CLEANFILES = 3 | -------------------------------------------------------------------------------- /extras/hook-scripts/stop/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = pre 2 | CLEANFILES = 3 | -------------------------------------------------------------------------------- /extras/identify-hangs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/identify-hangs.sh -------------------------------------------------------------------------------- /extras/init.d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/init.d/Makefile.am -------------------------------------------------------------------------------- /extras/init.d/glusterd-Debian.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/init.d/glusterd-Debian.in -------------------------------------------------------------------------------- /extras/init.d/glusterd-Redhat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/init.d/glusterd-Redhat.in -------------------------------------------------------------------------------- /extras/init.d/glusterd-SuSE.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/init.d/glusterd-SuSE.in -------------------------------------------------------------------------------- /extras/init.d/glusterd.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/init.d/glusterd.plist.in -------------------------------------------------------------------------------- /extras/logger.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/logger.conf.example -------------------------------------------------------------------------------- /extras/mount-shared-storage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/mount-shared-storage.sh -------------------------------------------------------------------------------- /extras/ocf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/ocf/Makefile.am -------------------------------------------------------------------------------- /extras/ocf/glusterd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/ocf/glusterd.in -------------------------------------------------------------------------------- /extras/ocf/volume.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/ocf/volume.in -------------------------------------------------------------------------------- /extras/peer_add_secret_pub.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/peer_add_secret_pub.in -------------------------------------------------------------------------------- /extras/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/python/Makefile.am -------------------------------------------------------------------------------- /extras/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/python/__init__.py -------------------------------------------------------------------------------- /extras/quota/contri-add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/quota/contri-add.sh -------------------------------------------------------------------------------- /extras/quota/log_accounting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/quota/log_accounting.sh -------------------------------------------------------------------------------- /extras/quota/quota_fsck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/quota/quota_fsck.py -------------------------------------------------------------------------------- /extras/quota/simple-quota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/quota/simple-quota.sh -------------------------------------------------------------------------------- /extras/quota/xattr_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/quota/xattr_analysis.py -------------------------------------------------------------------------------- /extras/rebalance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/rebalance.py -------------------------------------------------------------------------------- /extras/run-gluster.tmpfiles.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/run-gluster.tmpfiles.in -------------------------------------------------------------------------------- /extras/snap_scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/snap_scheduler/README.md -------------------------------------------------------------------------------- /extras/snap_scheduler/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/snap_scheduler/conf.py.in -------------------------------------------------------------------------------- /extras/snap_scheduler/gcron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/snap_scheduler/gcron.py -------------------------------------------------------------------------------- /extras/specgen.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/specgen.scm -------------------------------------------------------------------------------- /extras/statedumpparse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/statedumpparse.rb -------------------------------------------------------------------------------- /extras/stripe-merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/stripe-merge.c -------------------------------------------------------------------------------- /extras/systemd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/systemd/Makefile.am -------------------------------------------------------------------------------- /extras/test/bug-920583.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/test/bug-920583.t -------------------------------------------------------------------------------- /extras/test/gluster_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/test/gluster_commands.sh -------------------------------------------------------------------------------- /extras/test/open-fd-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/test/open-fd-tests.c -------------------------------------------------------------------------------- /extras/test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/test/run.sh -------------------------------------------------------------------------------- /extras/test/stop_glusterd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/test/stop_glusterd.sh -------------------------------------------------------------------------------- /extras/test/test-ffop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/test/test-ffop.c -------------------------------------------------------------------------------- /extras/volfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/extras/volfilter.py -------------------------------------------------------------------------------- /geo-replication/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | -------------------------------------------------------------------------------- /geo-replication/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/Makefile.am -------------------------------------------------------------------------------- /geo-replication/gsyncd.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/gsyncd.conf.in -------------------------------------------------------------------------------- /geo-replication/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/setup.py -------------------------------------------------------------------------------- /geo-replication/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/src/Makefile.am -------------------------------------------------------------------------------- /geo-replication/src/gsyncd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/src/gsyncd.c -------------------------------------------------------------------------------- /geo-replication/src/gverify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/src/gverify.sh -------------------------------------------------------------------------------- /geo-replication/src/procdiggy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/src/procdiggy.c -------------------------------------------------------------------------------- /geo-replication/src/procdiggy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/src/procdiggy.h -------------------------------------------------------------------------------- /geo-replication/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/tox.ini -------------------------------------------------------------------------------- /geo-replication/unittests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/geo-replication/unittests.sh -------------------------------------------------------------------------------- /glusterfs-api.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/glusterfs-api.pc.in -------------------------------------------------------------------------------- /glusterfs.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/glusterfs.spec.in -------------------------------------------------------------------------------- /glusterfsd/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /glusterfsd/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/glusterfsd/src/Makefile.am -------------------------------------------------------------------------------- /glusterfsd/src/gf_attach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/glusterfsd/src/gf_attach.c -------------------------------------------------------------------------------- /glusterfsd/src/glusterfsd-mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/glusterfsd/src/glusterfsd-mgmt.c -------------------------------------------------------------------------------- /glusterfsd/src/glusterfsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/glusterfsd/src/glusterfsd.c -------------------------------------------------------------------------------- /glusterfsd/src/glusterfsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/glusterfsd/src/glusterfsd.h -------------------------------------------------------------------------------- /heal/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /heal/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/heal/src/Makefile.am -------------------------------------------------------------------------------- /heal/src/glfs-heal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/heal/src/glfs-heal.c -------------------------------------------------------------------------------- /libgfchangelog.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libgfchangelog.pc.in -------------------------------------------------------------------------------- /libglusterfs/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /libglusterfs/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/Makefile.am -------------------------------------------------------------------------------- /libglusterfs/src/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/async.c -------------------------------------------------------------------------------- /libglusterfs/src/call-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/call-stub.c -------------------------------------------------------------------------------- /libglusterfs/src/changelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/changelog.h -------------------------------------------------------------------------------- /libglusterfs/src/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/checksum.c -------------------------------------------------------------------------------- /libglusterfs/src/circ-buff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/circ-buff.c -------------------------------------------------------------------------------- /libglusterfs/src/client_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/client_t.c -------------------------------------------------------------------------------- /libglusterfs/src/common-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/common-utils.c -------------------------------------------------------------------------------- /libglusterfs/src/compat-errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/compat-errno.c -------------------------------------------------------------------------------- /libglusterfs/src/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/compat.c -------------------------------------------------------------------------------- /libglusterfs/src/ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/ctx.c -------------------------------------------------------------------------------- /libglusterfs/src/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/daemon.c -------------------------------------------------------------------------------- /libglusterfs/src/default-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/default-args.c -------------------------------------------------------------------------------- /libglusterfs/src/defaults-tmpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/defaults-tmpl.c -------------------------------------------------------------------------------- /libglusterfs/src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/dict.c -------------------------------------------------------------------------------- /libglusterfs/src/event-epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/event-epoll.c -------------------------------------------------------------------------------- /libglusterfs/src/event-history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/event-history.c -------------------------------------------------------------------------------- /libglusterfs/src/event-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/event-poll.c -------------------------------------------------------------------------------- /libglusterfs/src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/event.c -------------------------------------------------------------------------------- /libglusterfs/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/events.c -------------------------------------------------------------------------------- /libglusterfs/src/fd-lk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/fd-lk.c -------------------------------------------------------------------------------- /libglusterfs/src/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/fd.c -------------------------------------------------------------------------------- /libglusterfs/src/gen-defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/gen-defaults.py -------------------------------------------------------------------------------- /libglusterfs/src/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/generator.py -------------------------------------------------------------------------------- /libglusterfs/src/gf-dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/gf-dirent.c -------------------------------------------------------------------------------- /libglusterfs/src/gf-io-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/gf-io-common.c -------------------------------------------------------------------------------- /libglusterfs/src/gf-io-legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/gf-io-legacy.c -------------------------------------------------------------------------------- /libglusterfs/src/gf-io-uring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/gf-io-uring.c -------------------------------------------------------------------------------- /libglusterfs/src/gf-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/gf-io.c -------------------------------------------------------------------------------- /libglusterfs/src/gidcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/gidcache.c -------------------------------------------------------------------------------- /libglusterfs/src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/globals.c -------------------------------------------------------------------------------- /libglusterfs/src/glusterfs/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/glusterfs/fd.h -------------------------------------------------------------------------------- /libglusterfs/src/glusterfs/run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/glusterfs/run.h -------------------------------------------------------------------------------- /libglusterfs/src/graph-print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/graph-print.c -------------------------------------------------------------------------------- /libglusterfs/src/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/graph.c -------------------------------------------------------------------------------- /libglusterfs/src/graph.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/graph.l -------------------------------------------------------------------------------- /libglusterfs/src/graph.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/graph.y -------------------------------------------------------------------------------- /libglusterfs/src/hashfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/hashfn.c -------------------------------------------------------------------------------- /libglusterfs/src/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/inode.c -------------------------------------------------------------------------------- /libglusterfs/src/iobuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/iobuf.c -------------------------------------------------------------------------------- /libglusterfs/src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/latency.c -------------------------------------------------------------------------------- /libglusterfs/src/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/logging.c -------------------------------------------------------------------------------- /libglusterfs/src/mem-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/mem-pool.c -------------------------------------------------------------------------------- /libglusterfs/src/monitoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/monitoring.c -------------------------------------------------------------------------------- /libglusterfs/src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/options.c -------------------------------------------------------------------------------- /libglusterfs/src/parse-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/parse-utils.c -------------------------------------------------------------------------------- /libglusterfs/src/rbthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/rbthash.c -------------------------------------------------------------------------------- /libglusterfs/src/refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/refcount.c -------------------------------------------------------------------------------- /libglusterfs/src/rot-buffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/rot-buffs.c -------------------------------------------------------------------------------- /libglusterfs/src/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/run.c -------------------------------------------------------------------------------- /libglusterfs/src/run_fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/run_fork.c -------------------------------------------------------------------------------- /libglusterfs/src/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/stack.c -------------------------------------------------------------------------------- /libglusterfs/src/statedump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/statedump.c -------------------------------------------------------------------------------- /libglusterfs/src/store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/store.c -------------------------------------------------------------------------------- /libglusterfs/src/strfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/strfd.c -------------------------------------------------------------------------------- /libglusterfs/src/syncop-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/syncop-utils.c -------------------------------------------------------------------------------- /libglusterfs/src/syncop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/syncop.c -------------------------------------------------------------------------------- /libglusterfs/src/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/syscall.c -------------------------------------------------------------------------------- /libglusterfs/src/throttle-tbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/throttle-tbf.c -------------------------------------------------------------------------------- /libglusterfs/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/timer.c -------------------------------------------------------------------------------- /libglusterfs/src/timespec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/timespec.c -------------------------------------------------------------------------------- /libglusterfs/src/trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/trie.c -------------------------------------------------------------------------------- /libglusterfs/src/xlator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/libglusterfs/src/xlator.c -------------------------------------------------------------------------------- /rfc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rfc.sh -------------------------------------------------------------------------------- /rpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/Makefile.am -------------------------------------------------------------------------------- /rpc/rpc-lib/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /rpc/rpc-lib/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/Makefile.am -------------------------------------------------------------------------------- /rpc/rpc-lib/src/auth-glusterfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/auth-glusterfs.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/auth-null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/auth-null.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/auth-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/auth-unix.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/libgfrpc.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/libgfrpc.sym -------------------------------------------------------------------------------- /rpc/rpc-lib/src/mgmt-pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/mgmt-pmap.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/protocol-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/protocol-utils.h -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpc-clnt-ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpc-clnt-ping.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpc-clnt-ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpc-clnt-ping.h -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpc-clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpc-clnt.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpc-clnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpc-clnt.h -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpc-drc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpc-drc.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpc-drc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpc-drc.h -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpc-transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpc-transport.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpc-transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpc-transport.h -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpcsvc-auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpcsvc-auth.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpcsvc-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpcsvc-common.h -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpcsvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpcsvc.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/rpcsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/rpcsvc.h -------------------------------------------------------------------------------- /rpc/rpc-lib/src/xdr-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/xdr-common.h -------------------------------------------------------------------------------- /rpc/rpc-lib/src/xdr-rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/xdr-rpc.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/xdr-rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/xdr-rpc.h -------------------------------------------------------------------------------- /rpc/rpc-lib/src/xdr-rpcclnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/xdr-rpcclnt.c -------------------------------------------------------------------------------- /rpc/rpc-lib/src/xdr-rpcclnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/rpc-lib/src/xdr-rpcclnt.h -------------------------------------------------------------------------------- /rpc/rpc-transport/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = socket 2 | -------------------------------------------------------------------------------- /rpc/rpc-transport/socket/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src -------------------------------------------------------------------------------- /rpc/xdr/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /rpc/xdr/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/.gitignore -------------------------------------------------------------------------------- /rpc/xdr/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/Makefile.am -------------------------------------------------------------------------------- /rpc/xdr/src/acl3-xdr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/acl3-xdr.x -------------------------------------------------------------------------------- /rpc/xdr/src/changelog-xdr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/changelog-xdr.x -------------------------------------------------------------------------------- /rpc/xdr/src/cli1-xdr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/cli1-xdr.x -------------------------------------------------------------------------------- /rpc/xdr/src/glusterd1-xdr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/glusterd1-xdr.x -------------------------------------------------------------------------------- /rpc/xdr/src/glusterfs3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/glusterfs3.h -------------------------------------------------------------------------------- /rpc/xdr/src/glusterfs4-xdr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/glusterfs4-xdr.x -------------------------------------------------------------------------------- /rpc/xdr/src/libgfxdr.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/libgfxdr.sym -------------------------------------------------------------------------------- /rpc/xdr/src/mount3udp.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/mount3udp.x -------------------------------------------------------------------------------- /rpc/xdr/src/msg-nfs3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/msg-nfs3.c -------------------------------------------------------------------------------- /rpc/xdr/src/msg-nfs3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/msg-nfs3.h -------------------------------------------------------------------------------- /rpc/xdr/src/nlm4-xdr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/nlm4-xdr.x -------------------------------------------------------------------------------- /rpc/xdr/src/nsm-xdr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/nsm-xdr.x -------------------------------------------------------------------------------- /rpc/xdr/src/portmap-xdr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/portmap-xdr.x -------------------------------------------------------------------------------- /rpc/xdr/src/rpc-common-xdr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/rpc-common-xdr.x -------------------------------------------------------------------------------- /rpc/xdr/src/rpc-pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/rpc-pragmas.h -------------------------------------------------------------------------------- /rpc/xdr/src/xdr-custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/xdr-custom.c -------------------------------------------------------------------------------- /rpc/xdr/src/xdr-custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/xdr-custom.h -------------------------------------------------------------------------------- /rpc/xdr/src/xdr-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/xdr-generic.c -------------------------------------------------------------------------------- /rpc/xdr/src/xdr-generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/xdr-generic.h -------------------------------------------------------------------------------- /rpc/xdr/src/xdr-nfs3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/xdr-nfs3.c -------------------------------------------------------------------------------- /rpc/xdr/src/xdr-nfs3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/rpc/xdr/src/xdr-nfs3.h -------------------------------------------------------------------------------- /run-tests-in-vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/run-tests-in-vagrant.sh -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/run-tests.sh -------------------------------------------------------------------------------- /site.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/site.h.in -------------------------------------------------------------------------------- /submit-for-review.sh: -------------------------------------------------------------------------------- 1 | rfc.sh -------------------------------------------------------------------------------- /tests/00-geo-rep/bug-1600145.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/00-geo-rep/bug-1600145.t -------------------------------------------------------------------------------- /tests/00-geo-rep/bug-1708603.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/00-geo-rep/bug-1708603.t -------------------------------------------------------------------------------- /tests/00-geo-rep/gsyncd.conf.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/00-geo-rep/gsyncd.conf.old -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/afr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/afr.rc -------------------------------------------------------------------------------- /tests/basic/0symbol-check.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/0symbol-check.t -------------------------------------------------------------------------------- /tests/basic/acl/acl-inherit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/acl/acl-inherit.t -------------------------------------------------------------------------------- /tests/basic/afr/afr-anon-inode.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/afr-anon-inode.t -------------------------------------------------------------------------------- /tests/basic/afr/afr-no-fsync.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/afr-no-fsync.t -------------------------------------------------------------------------------- /tests/basic/afr/afr-seek.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/afr-seek.t -------------------------------------------------------------------------------- /tests/basic/afr/afr-up.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/afr-up.t -------------------------------------------------------------------------------- /tests/basic/afr/arbiter-cli.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/arbiter-cli.t -------------------------------------------------------------------------------- /tests/basic/afr/arbiter-mount.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/arbiter-mount.t -------------------------------------------------------------------------------- /tests/basic/afr/arbiter-statfs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/arbiter-statfs.t -------------------------------------------------------------------------------- /tests/basic/afr/arbiter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/arbiter.t -------------------------------------------------------------------------------- /tests/basic/afr/data-self-heal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/data-self-heal.t -------------------------------------------------------------------------------- /tests/basic/afr/durability-off.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/durability-off.t -------------------------------------------------------------------------------- /tests/basic/afr/gfid-heal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/gfid-heal.t -------------------------------------------------------------------------------- /tests/basic/afr/gfid-mismatch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/gfid-mismatch.t -------------------------------------------------------------------------------- /tests/basic/afr/gfid-self-heal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/gfid-self-heal.t -------------------------------------------------------------------------------- /tests/basic/afr/halo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/halo.t -------------------------------------------------------------------------------- /tests/basic/afr/heal-info.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/heal-info.t -------------------------------------------------------------------------------- /tests/basic/afr/heal-quota.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/heal-quota.t -------------------------------------------------------------------------------- /tests/basic/afr/inodelk.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/inodelk.t -------------------------------------------------------------------------------- /tests/basic/afr/lk-quorum.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/lk-quorum.t -------------------------------------------------------------------------------- /tests/basic/afr/name-self-heal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/name-self-heal.t -------------------------------------------------------------------------------- /tests/basic/afr/quorum.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/quorum.t -------------------------------------------------------------------------------- /tests/basic/afr/resolve.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/resolve.t -------------------------------------------------------------------------------- /tests/basic/afr/self-heal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/self-heal.t -------------------------------------------------------------------------------- /tests/basic/afr/self-heald.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/self-heald.t -------------------------------------------------------------------------------- /tests/basic/afr/ta-check-locks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/ta-check-locks.t -------------------------------------------------------------------------------- /tests/basic/afr/ta-read.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/ta-read.t -------------------------------------------------------------------------------- /tests/basic/afr/ta-shd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/ta-shd.t -------------------------------------------------------------------------------- /tests/basic/afr/ta.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/ta.t -------------------------------------------------------------------------------- /tests/basic/afr/tarissue.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/afr/tarissue.t -------------------------------------------------------------------------------- /tests/basic/all_squash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/all_squash.t -------------------------------------------------------------------------------- /tests/basic/cdc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/cdc.t -------------------------------------------------------------------------------- /tests/basic/cloudsync-sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/cloudsync-sanity.t -------------------------------------------------------------------------------- /tests/basic/distribute/lookup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/distribute/lookup.t -------------------------------------------------------------------------------- /tests/basic/ec/dht-rename.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/dht-rename.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-1468261.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-1468261.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-3-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-3-1.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-4-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-4-1.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-5-2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-5-2.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-6-2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-6-2.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-anonymous-fd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-anonymous-fd.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-badfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-badfd.c -------------------------------------------------------------------------------- /tests/basic/ec/ec-badfd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-badfd.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-common -------------------------------------------------------------------------------- /tests/basic/ec/ec-data-heal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-data-heal.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-dirty-flags.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-dirty-flags.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-discard.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-discard.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-fallocate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-fallocate.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-fix-openfd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-fix-openfd.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-new-entry.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-new-entry.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-notify.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-notify.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-quorum-count.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-quorum-count.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-read-mask.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-read-mask.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-read-policy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-read-policy.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-readdir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-readdir.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-rebalance.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-rebalance.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-reset-brick.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-reset-brick.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-root-heal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-root-heal.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-seek.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-seek.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-stripe.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-stripe.t -------------------------------------------------------------------------------- /tests/basic/ec/ec-up.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec-up.t -------------------------------------------------------------------------------- /tests/basic/ec/ec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/ec.t -------------------------------------------------------------------------------- /tests/basic/ec/heal-info.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/heal-info.t -------------------------------------------------------------------------------- /tests/basic/ec/lock-contention.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/lock-contention.t -------------------------------------------------------------------------------- /tests/basic/ec/nfs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/nfs.t -------------------------------------------------------------------------------- /tests/basic/ec/quota.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/quota.t -------------------------------------------------------------------------------- /tests/basic/ec/self-heal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/self-heal.t -------------------------------------------------------------------------------- /tests/basic/ec/statedump.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ec/statedump.t -------------------------------------------------------------------------------- /tests/basic/exports_parsing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/exports_parsing.t -------------------------------------------------------------------------------- /tests/basic/fop-sampling.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/fop-sampling.t -------------------------------------------------------------------------------- /tests/basic/fops-sanity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/fops-sanity.c -------------------------------------------------------------------------------- /tests/basic/fops-sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/fops-sanity.t -------------------------------------------------------------------------------- /tests/basic/fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/fuse/Makefile -------------------------------------------------------------------------------- /tests/basic/fuse/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/fuse/seek.c -------------------------------------------------------------------------------- /tests/basic/gfapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/Makefile -------------------------------------------------------------------------------- /tests/basic/gfapi/anonymous_fd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/anonymous_fd.t -------------------------------------------------------------------------------- /tests/basic/gfapi/bug-1241104.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug-1241104.c -------------------------------------------------------------------------------- /tests/basic/gfapi/bug-1241104.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug-1241104.t -------------------------------------------------------------------------------- /tests/basic/gfapi/bug-1507896.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug-1507896.c -------------------------------------------------------------------------------- /tests/basic/gfapi/bug-1507896.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug-1507896.t -------------------------------------------------------------------------------- /tests/basic/gfapi/bug1283983.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug1283983.c -------------------------------------------------------------------------------- /tests/basic/gfapi/bug1283983.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug1283983.sh -------------------------------------------------------------------------------- /tests/basic/gfapi/bug1291259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug1291259.c -------------------------------------------------------------------------------- /tests/basic/gfapi/bug1291259.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug1291259.t -------------------------------------------------------------------------------- /tests/basic/gfapi/bug1613098.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug1613098.c -------------------------------------------------------------------------------- /tests/basic/gfapi/bug1613098.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/bug1613098.t -------------------------------------------------------------------------------- /tests/basic/gfapi/gfapi-dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/gfapi-dup.c -------------------------------------------------------------------------------- /tests/basic/gfapi/gfapi-dup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/gfapi-dup.t -------------------------------------------------------------------------------- /tests/basic/gfapi/gfapi-o-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/gfapi-o-path.c -------------------------------------------------------------------------------- /tests/basic/gfapi/gfapi-o-path.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/gfapi-o-path.t -------------------------------------------------------------------------------- /tests/basic/gfapi/gfapi-trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/gfapi-trunc.c -------------------------------------------------------------------------------- /tests/basic/gfapi/gfapi-trunc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/gfapi-trunc.t -------------------------------------------------------------------------------- /tests/basic/gfapi/glfd-lkowner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/glfd-lkowner.c -------------------------------------------------------------------------------- /tests/basic/gfapi/glfd-lkowner.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/glfd-lkowner.t -------------------------------------------------------------------------------- /tests/basic/gfapi/glfs_sysrq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/glfs_sysrq.c -------------------------------------------------------------------------------- /tests/basic/gfapi/glfs_sysrq.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/glfs_sysrq.t -------------------------------------------------------------------------------- /tests/basic/gfapi/glfsxmp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/glfsxmp.t -------------------------------------------------------------------------------- /tests/basic/gfapi/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/seek.c -------------------------------------------------------------------------------- /tests/basic/gfapi/sink.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/sink.t -------------------------------------------------------------------------------- /tests/basic/gfapi/sink.vol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfapi/sink.vol -------------------------------------------------------------------------------- /tests/basic/gfid-access.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfid-access.t -------------------------------------------------------------------------------- /tests/basic/gfproxy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/gfproxy.t -------------------------------------------------------------------------------- /tests/basic/global-threading.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/global-threading.t -------------------------------------------------------------------------------- /tests/basic/glusterd/heald.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/glusterd/heald.t -------------------------------------------------------------------------------- /tests/basic/hardlink-limit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/hardlink-limit.t -------------------------------------------------------------------------------- /tests/basic/inode-leak.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/inode-leak.t -------------------------------------------------------------------------------- /tests/basic/inode-namespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/inode-namespace.t -------------------------------------------------------------------------------- /tests/basic/ios-dump.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/ios-dump.t -------------------------------------------------------------------------------- /tests/basic/logchecks-messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/logchecks-messages.h -------------------------------------------------------------------------------- /tests/basic/logchecks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/logchecks.c -------------------------------------------------------------------------------- /tests/basic/meta.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/meta.t -------------------------------------------------------------------------------- /tests/basic/metadisp/fsyncdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/metadisp/fsyncdir.c -------------------------------------------------------------------------------- /tests/basic/metadisp/ftruncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/metadisp/ftruncate.c -------------------------------------------------------------------------------- /tests/basic/metadisp/fxattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/metadisp/fxattr.c -------------------------------------------------------------------------------- /tests/basic/metadisp/metadisp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/metadisp/metadisp.t -------------------------------------------------------------------------------- /tests/basic/mgmt_v3-locks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/mgmt_v3-locks.t -------------------------------------------------------------------------------- /tests/basic/mount.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/mount.t -------------------------------------------------------------------------------- /tests/basic/mpx-compat.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/mpx-compat.t -------------------------------------------------------------------------------- /tests/basic/multiplex.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/multiplex.t -------------------------------------------------------------------------------- /tests/basic/namespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/namespace.t -------------------------------------------------------------------------------- /tests/basic/netgroup_parsing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/netgroup_parsing.t -------------------------------------------------------------------------------- /tests/basic/nl-cache.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/nl-cache.t -------------------------------------------------------------------------------- /tests/basic/nufa.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/nufa.t -------------------------------------------------------------------------------- /tests/basic/op_errnos.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/op_errnos.t -------------------------------------------------------------------------------- /tests/basic/open-behind/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/open-behind/tester.c -------------------------------------------------------------------------------- /tests/basic/open-behind/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/open-behind/tester.h -------------------------------------------------------------------------------- /tests/basic/peer-parsing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/peer-parsing.t -------------------------------------------------------------------------------- /tests/basic/pgfid-feat.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/pgfid-feat.t -------------------------------------------------------------------------------- /tests/basic/posixonly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/posixonly.t -------------------------------------------------------------------------------- /tests/basic/quota-anon-fd-nfs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/quota-anon-fd-nfs.t -------------------------------------------------------------------------------- /tests/basic/quota-nfs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/quota-nfs.t -------------------------------------------------------------------------------- /tests/basic/quota-rename.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/quota-rename.t -------------------------------------------------------------------------------- /tests/basic/quota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/quota.c -------------------------------------------------------------------------------- /tests/basic/quota.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/quota.t -------------------------------------------------------------------------------- /tests/basic/quota_aux_mount.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/quota_aux_mount.t -------------------------------------------------------------------------------- /tests/basic/rpc-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/rpc-coverage.sh -------------------------------------------------------------------------------- /tests/basic/rpc-coverage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/rpc-coverage.t -------------------------------------------------------------------------------- /tests/basic/sdfs-sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/sdfs-sanity.t -------------------------------------------------------------------------------- /tests/basic/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/seek.c -------------------------------------------------------------------------------- /tests/basic/shd-mux-afr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/shd-mux-afr.t -------------------------------------------------------------------------------- /tests/basic/shd-mux-ec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/shd-mux-ec.t -------------------------------------------------------------------------------- /tests/basic/stats-dump.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/stats-dump.t -------------------------------------------------------------------------------- /tests/basic/symbol-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/symbol-check.sh -------------------------------------------------------------------------------- /tests/basic/trace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/trace.t -------------------------------------------------------------------------------- /tests/basic/user-xlator.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/user-xlator.t -------------------------------------------------------------------------------- /tests/basic/uss.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/uss.t -------------------------------------------------------------------------------- /tests/basic/volfile-sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/volfile-sanity.t -------------------------------------------------------------------------------- /tests/basic/volume-snapshot.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/volume-snapshot.t -------------------------------------------------------------------------------- /tests/basic/volume-status.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/volume-status.t -------------------------------------------------------------------------------- /tests/basic/volume.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/basic/volume.t -------------------------------------------------------------------------------- /tests/bitrot/br-state-check.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bitrot/br-state-check.t -------------------------------------------------------------------------------- /tests/bitrot/br-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bitrot/br-stub.c -------------------------------------------------------------------------------- /tests/bitrot/br-stub.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bitrot/br-stub.t -------------------------------------------------------------------------------- /tests/bitrot/bug-1221914.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bitrot/bug-1221914.t -------------------------------------------------------------------------------- /tests/bitrot/bug-1244613.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bitrot/bug-1244613.t -------------------------------------------------------------------------------- /tests/bitrot/bug-1294786.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bitrot/bug-1294786.t -------------------------------------------------------------------------------- /tests/bitrot/bug-1373520.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bitrot/bug-1373520.t -------------------------------------------------------------------------------- /tests/bitrot/bug-1700078.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bitrot/bug-1700078.t -------------------------------------------------------------------------------- /tests/bugs/bitrot/bug-1227996.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bitrot/bug-1227996.t -------------------------------------------------------------------------------- /tests/bugs/bitrot/bug-1228680.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bitrot/bug-1228680.t -------------------------------------------------------------------------------- /tests/bugs/bitrot/bug-1245981.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bitrot/bug-1245981.t -------------------------------------------------------------------------------- /tests/bugs/bitrot/bug-1288490.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bitrot/bug-1288490.t -------------------------------------------------------------------------------- /tests/bugs/bug-1064147.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1064147.t -------------------------------------------------------------------------------- /tests/bugs/bug-1110262.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1110262.t -------------------------------------------------------------------------------- /tests/bugs/bug-1138841.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1138841.t -------------------------------------------------------------------------------- /tests/bugs/bug-1258069.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1258069.t -------------------------------------------------------------------------------- /tests/bugs/bug-1368312.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1368312.t -------------------------------------------------------------------------------- /tests/bugs/bug-1371806.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1371806.t -------------------------------------------------------------------------------- /tests/bugs/bug-1371806_1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1371806_1.t -------------------------------------------------------------------------------- /tests/bugs/bug-1371806_2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1371806_2.t -------------------------------------------------------------------------------- /tests/bugs/bug-1371806_3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1371806_3.t -------------------------------------------------------------------------------- /tests/bugs/bug-1371806_acl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1371806_acl.t -------------------------------------------------------------------------------- /tests/bugs/bug-1584517.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1584517.t -------------------------------------------------------------------------------- /tests/bugs/bug-1620580.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1620580.t -------------------------------------------------------------------------------- /tests/bugs/bug-1694920.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1694920.t -------------------------------------------------------------------------------- /tests/bugs/bug-1702299.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/bug-1702299.t -------------------------------------------------------------------------------- /tests/bugs/cidr-bug-4108.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cidr-bug-4108.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1004218.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1004218.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1022905.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1022905.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1030580.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1030580.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1047378.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1047378.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1047416.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1047416.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1077682.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1077682.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1087487.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1087487.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1113476.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1113476.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1169302.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1169302.c -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1169302.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1169302.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-1320388.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-1320388.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-764638.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-764638.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-822830.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-822830.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-867252.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-867252.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-921215.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-921215.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-949298.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-949298.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-961307.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-961307.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-969193.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-969193.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-977246.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-977246.t -------------------------------------------------------------------------------- /tests/bugs/cli/bug-982174.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/cli/bug-982174.t -------------------------------------------------------------------------------- /tests/bugs/core/949327.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/949327.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-1110917.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-1110917.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-1111557.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-1111557.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-1117951.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-1117951.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-1119582.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-1119582.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-1650403.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-1650403.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-834465.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-834465.c -------------------------------------------------------------------------------- /tests/bugs/core/bug-834465.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-834465.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-845213.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-845213.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-903336.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-903336.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-908146.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-908146.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-913544.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-913544.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-924075.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-924075.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-927616.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-927616.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-949242.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-949242.t -------------------------------------------------------------------------------- /tests/bugs/core/bug-986429.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/core/bug-986429.t -------------------------------------------------------------------------------- /tests/bugs/ctime/issue-832.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ctime/issue-832.t -------------------------------------------------------------------------------- /tests/bugs/distribute/overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/distribute/overlap.py -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1161621.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1161621.t -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1161886.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1161886.c -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1161886.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1161886.t -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1179050.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1179050.t -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1187474.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1187474.t -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1188145.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1188145.t -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1227869.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1227869.t -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1236065.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1236065.t -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1251446.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1251446.t -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1304988.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1304988.t -------------------------------------------------------------------------------- /tests/bugs/ec/bug-1547662.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/ec/bug-1547662.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-1030208.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-1030208.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-1126048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-1126048.c -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-1126048.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-1126048.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-1283103.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-1283103.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-1309462.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-1309462.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-1336818.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-1336818.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-858215.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-858215.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-924726.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-924726.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-963678.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-963678.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-983477.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-983477.t -------------------------------------------------------------------------------- /tests/bugs/fuse/bug-985074.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/bug-985074.t -------------------------------------------------------------------------------- /tests/bugs/fuse/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/setup.sh -------------------------------------------------------------------------------- /tests/bugs/fuse/teardown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/fuse/teardown.sh -------------------------------------------------------------------------------- /tests/bugs/gfapi/bug-1032894.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/gfapi/bug-1032894.t -------------------------------------------------------------------------------- /tests/bugs/gfapi/bug-1093594.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/gfapi/bug-1093594.c -------------------------------------------------------------------------------- /tests/bugs/gfapi/bug-1093594.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/gfapi/bug-1093594.t -------------------------------------------------------------------------------- /tests/bugs/gfapi/bug-1319374.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/gfapi/bug-1319374.c -------------------------------------------------------------------------------- /tests/bugs/glusterd/brick-mux.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/glusterd/brick-mux.t -------------------------------------------------------------------------------- /tests/bugs/glusterd/bug-824753.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/glusterd/bug-824753.t -------------------------------------------------------------------------------- /tests/bugs/glusterd/bug-949930.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/glusterd/bug-949930.t -------------------------------------------------------------------------------- /tests/bugs/glusterd/issue-3781.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/glusterd/issue-3781.t -------------------------------------------------------------------------------- /tests/bugs/heal-symlinks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/heal-symlinks.t -------------------------------------------------------------------------------- /tests/bugs/io-cache/bug-858242.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/io-cache/bug-858242.c -------------------------------------------------------------------------------- /tests/bugs/io-cache/bug-858242.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/io-cache/bug-858242.t -------------------------------------------------------------------------------- /tests/bugs/locks/issue-2551.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/locks/issue-2551.t -------------------------------------------------------------------------------- /tests/bugs/logging/bug-823081.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/logging/bug-823081.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-1053579.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-1053579.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-1166862.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-1166862.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-1210338.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-1210338.c -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-1210338.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-1210338.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-1302948.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-1302948.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-847622.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-847622.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-877885.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-877885.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-904065.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-904065.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-915280.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-915280.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-970070.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-970070.t -------------------------------------------------------------------------------- /tests/bugs/nfs/bug-974972.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/bug-974972.t -------------------------------------------------------------------------------- /tests/bugs/nfs/socket-as-fifo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/socket-as-fifo.py -------------------------------------------------------------------------------- /tests/bugs/nfs/socket-as-fifo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/socket-as-fifo.t -------------------------------------------------------------------------------- /tests/bugs/nfs/zero-atime.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/nfs/zero-atime.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-1034716.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-1034716.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-1113960.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-1113960.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-1122028.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-1122028.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-1175711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-1175711.c -------------------------------------------------------------------------------- /tests/bugs/posix/bug-1175711.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-1175711.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-1360679.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-1360679.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-1619720.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-1619720.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-1651445.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-1651445.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-765380.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-765380.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-990028.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-990028.t -------------------------------------------------------------------------------- /tests/bugs/posix/bug-gfid-path.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/bug-gfid-path.t -------------------------------------------------------------------------------- /tests/bugs/posix/issue-2752.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/posix/issue-2752.t -------------------------------------------------------------------------------- /tests/bugs/protocol/bug-762989.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/protocol/bug-762989.t -------------------------------------------------------------------------------- /tests/bugs/protocol/bug-808400.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/protocol/bug-808400.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1035576.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1035576.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1038598.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1038598.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1087198.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1087198.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1104692.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1104692.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1153964.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1153964.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1178130.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1178130.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1235182.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1235182.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1243798.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1243798.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1260545.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1260545.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1287996.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1287996.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1292020.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1292020.t -------------------------------------------------------------------------------- /tests/bugs/quota/bug-1293601.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/quota/bug-1293601.t -------------------------------------------------------------------------------- /tests/bugs/rpc/bug-1043886.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/rpc/bug-1043886.t -------------------------------------------------------------------------------- /tests/bugs/rpc/bug-847624.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/rpc/bug-847624.t -------------------------------------------------------------------------------- /tests/bugs/rpc/bug-884452.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/rpc/bug-884452.t -------------------------------------------------------------------------------- /tests/bugs/rpc/bug-921072.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/rpc/bug-921072.t -------------------------------------------------------------------------------- /tests/bugs/rpc/bug-954057.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/rpc/bug-954057.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1245547.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1245547.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1248887.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1248887.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1250855.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1250855.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1251824.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1251824.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1256580.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1256580.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1258334.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1258334.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1259651.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1259651.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1260637.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1260637.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1261773.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1261773.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1272986.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1272986.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1342298.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1342298.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1468483.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1468483.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1488546.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1488546.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1568521.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1568521.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1605056-2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1605056-2.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1605056.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1605056.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1669077.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1669077.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1696136.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1696136.c -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1696136.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1696136.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1705884.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1705884.t -------------------------------------------------------------------------------- /tests/bugs/shard/bug-1738419.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/bug-1738419.t -------------------------------------------------------------------------------- /tests/bugs/shard/issue-1243.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/issue-1243.t -------------------------------------------------------------------------------- /tests/bugs/shard/issue-1281.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/issue-1281.t -------------------------------------------------------------------------------- /tests/bugs/shard/issue-1358.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/issue-1358.t -------------------------------------------------------------------------------- /tests/bugs/shard/issue-1384.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/issue-1384.t -------------------------------------------------------------------------------- /tests/bugs/shard/issue-1425.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/issue-1425.t -------------------------------------------------------------------------------- /tests/bugs/shard/issue-2038.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/issue-2038.t -------------------------------------------------------------------------------- /tests/bugs/shard/zero-flag.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/shard/zero-flag.t -------------------------------------------------------------------------------- /tests/bugs/trace/bug-797171.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/trace/bug-797171.t -------------------------------------------------------------------------------- /tests/bugs/upcall/bug-1227204.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/upcall/bug-1227204.t -------------------------------------------------------------------------------- /tests/bugs/upcall/bug-1369430.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/upcall/bug-1369430.t -------------------------------------------------------------------------------- /tests/bugs/upcall/bug-1394131.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/upcall/bug-1394131.t -------------------------------------------------------------------------------- /tests/bugs/upcall/bug-1422776.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/upcall/bug-1422776.t -------------------------------------------------------------------------------- /tests/bugs/upcall/bug-1458127.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/bugs/upcall/bug-1458127.t -------------------------------------------------------------------------------- /tests/changelog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/changelog.rc -------------------------------------------------------------------------------- /tests/cleanup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | . $(dirname $0)/include.rc 4 | cleanup 5 | -------------------------------------------------------------------------------- /tests/cluster.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/cluster.rc -------------------------------------------------------------------------------- /tests/common-utils.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/common-utils.rc -------------------------------------------------------------------------------- /tests/configfiles/bad_exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/configfiles/bad_exports -------------------------------------------------------------------------------- /tests/configfiles/bad_netgroups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/configfiles/bad_netgroups -------------------------------------------------------------------------------- /tests/configfiles/big_exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/configfiles/big_exports -------------------------------------------------------------------------------- /tests/configfiles/exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/configfiles/exports -------------------------------------------------------------------------------- /tests/configfiles/exports-v6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/configfiles/exports-v6 -------------------------------------------------------------------------------- /tests/configfiles/exports_bad_opt: -------------------------------------------------------------------------------- 1 | /groot asdf(r) @ngtop(r) 2 | -------------------------------------------------------------------------------- /tests/configfiles/netgroups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/configfiles/netgroups -------------------------------------------------------------------------------- /tests/dht.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/dht.rc -------------------------------------------------------------------------------- /tests/ec.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/ec.rc -------------------------------------------------------------------------------- /tests/env.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/env.rc.in -------------------------------------------------------------------------------- /tests/experimental/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/experimental/.gitignore -------------------------------------------------------------------------------- /tests/fallocate.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/fallocate.rc -------------------------------------------------------------------------------- /tests/features/delay-gen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/delay-gen.t -------------------------------------------------------------------------------- /tests/features/dh1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/dh1024.pem -------------------------------------------------------------------------------- /tests/features/flock_interrupt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/flock_interrupt.t -------------------------------------------------------------------------------- /tests/features/fuse-lru-limit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/fuse-lru-limit.t -------------------------------------------------------------------------------- /tests/features/glfs-lease.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/glfs-lease.c -------------------------------------------------------------------------------- /tests/features/glfs-lease.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/glfs-lease.t -------------------------------------------------------------------------------- /tests/features/interrupt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/interrupt.t -------------------------------------------------------------------------------- /tests/features/ipc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/ipc.t -------------------------------------------------------------------------------- /tests/features/ipctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/ipctest.py -------------------------------------------------------------------------------- /tests/features/lock_revocation.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/lock_revocation.t -------------------------------------------------------------------------------- /tests/features/nuke.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/nuke.t -------------------------------------------------------------------------------- /tests/features/open_and_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/open_and_sleep.c -------------------------------------------------------------------------------- /tests/features/openssl.cnf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/openssl.cnf.in -------------------------------------------------------------------------------- /tests/features/readdir-ahead.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/readdir-ahead.t -------------------------------------------------------------------------------- /tests/features/simple-quota.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/simple-quota.t -------------------------------------------------------------------------------- /tests/features/ssl-authz.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/ssl-authz.t -------------------------------------------------------------------------------- /tests/features/ssl-ciphers.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/ssl-ciphers.t -------------------------------------------------------------------------------- /tests/features/subdir-mount.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/subdir-mount.t -------------------------------------------------------------------------------- /tests/features/trash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/trash.t -------------------------------------------------------------------------------- /tests/features/unhashed-auto.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/unhashed-auto.t -------------------------------------------------------------------------------- /tests/features/volspec/brick.vol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/volspec/brick.vol -------------------------------------------------------------------------------- /tests/features/volspec/test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/volspec/test.t -------------------------------------------------------------------------------- /tests/features/worm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/worm.t -------------------------------------------------------------------------------- /tests/features/worm_sh.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/features/worm_sh.t -------------------------------------------------------------------------------- /tests/fileio.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/fileio.rc -------------------------------------------------------------------------------- /tests/geo-rep.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/geo-rep.rc -------------------------------------------------------------------------------- /tests/gfid2path/gfid2path_fuse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/gfid2path/gfid2path_fuse.t -------------------------------------------------------------------------------- /tests/gfid2path/gfid2path_nfs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/gfid2path/gfid2path_nfs.t -------------------------------------------------------------------------------- /tests/include.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/include.rc -------------------------------------------------------------------------------- /tests/nfs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/nfs.rc -------------------------------------------------------------------------------- /tests/performance/open-behind.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/performance/open-behind.t -------------------------------------------------------------------------------- /tests/performance/quick-read.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/performance/quick-read.t -------------------------------------------------------------------------------- /tests/snapshot.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/snapshot.rc -------------------------------------------------------------------------------- /tests/snapshot_zfs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/snapshot_zfs.rc -------------------------------------------------------------------------------- /tests/ssl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/ssl.rc -------------------------------------------------------------------------------- /tests/thin-arbiter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/thin-arbiter.rc -------------------------------------------------------------------------------- /tests/traps.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/traps.rc -------------------------------------------------------------------------------- /tests/utils/arequal-checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/arequal-checksum.c -------------------------------------------------------------------------------- /tests/utils/changelogparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/changelogparser.py -------------------------------------------------------------------------------- /tests/utils/create-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/create-files.py -------------------------------------------------------------------------------- /tests/utils/get-mdata-xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/get-mdata-xattr.c -------------------------------------------------------------------------------- /tests/utils/getfattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/getfattr.py -------------------------------------------------------------------------------- /tests/utils/gfid-access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/gfid-access.py -------------------------------------------------------------------------------- /tests/utils/ip-in-cidr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/ip-in-cidr.c -------------------------------------------------------------------------------- /tests/utils/libcxattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/libcxattr.py -------------------------------------------------------------------------------- /tests/utils/pidof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/pidof.py -------------------------------------------------------------------------------- /tests/utils/py2py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/py2py3.py -------------------------------------------------------------------------------- /tests/utils/setfattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/setfattr.py -------------------------------------------------------------------------------- /tests/utils/testn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/utils/testn.sh -------------------------------------------------------------------------------- /tests/volume.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tests/volume.rc -------------------------------------------------------------------------------- /tools/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/glusterfind/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/glusterfind/Makefile.am -------------------------------------------------------------------------------- /tools/glusterfind/glusterfind.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/glusterfind/glusterfind.in -------------------------------------------------------------------------------- /tools/glusterfind/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/glusterfind/src/conf.py -------------------------------------------------------------------------------- /tools/glusterfind/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/glusterfind/src/main.py -------------------------------------------------------------------------------- /tools/glusterfind/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/glusterfind/src/utils.py -------------------------------------------------------------------------------- /tools/setgfid2path/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/setgfid2path/Makefile.am -------------------------------------------------------------------------------- /tools/setgfid2path/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/setgfid2path/src/main.c -------------------------------------------------------------------------------- /tools/tests/centos7/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/tests/centos7/config -------------------------------------------------------------------------------- /tools/tests/centos7/domain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/tests/centos7/domain.xml -------------------------------------------------------------------------------- /tools/tests/centos7/gf-builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/tests/centos7/gf-builder -------------------------------------------------------------------------------- /tools/tests/centos7/gf-testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/tests/centos7/gf-testing -------------------------------------------------------------------------------- /tools/tests/centos7/meta-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/tests/centos7/meta-data -------------------------------------------------------------------------------- /tools/tests/centos7/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/tests/centos7/user-data -------------------------------------------------------------------------------- /tools/tests/gftest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/tests/gftest -------------------------------------------------------------------------------- /tools/tests/prove_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/tests/prove_run -------------------------------------------------------------------------------- /tools/tests/regression: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/tools/tests/regression -------------------------------------------------------------------------------- /xlators/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/Makefile.am -------------------------------------------------------------------------------- /xlators/cluster/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = afr dht ec 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/cluster/afr/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/cluster/afr/src/afr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/cluster/afr/src/afr.c -------------------------------------------------------------------------------- /xlators/cluster/afr/src/afr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/cluster/afr/src/afr.h -------------------------------------------------------------------------------- /xlators/cluster/dht/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src -------------------------------------------------------------------------------- /xlators/cluster/dht/src/dht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/cluster/dht/src/dht.c -------------------------------------------------------------------------------- /xlators/cluster/dht/src/nufa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/cluster/dht/src/nufa.c -------------------------------------------------------------------------------- /xlators/cluster/dht/src/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/cluster/dht/src/switch.c -------------------------------------------------------------------------------- /xlators/cluster/ec/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/cluster/ec/src/ec-code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/cluster/ec/src/ec-code.c -------------------------------------------------------------------------------- /xlators/cluster/ec/src/ec-code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/cluster/ec/src/ec-code.h -------------------------------------------------------------------------------- /xlators/cluster/ec/src/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/cluster/ec/src/ec.c -------------------------------------------------------------------------------- /xlators/cluster/ec/src/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/cluster/ec/src/ec.h -------------------------------------------------------------------------------- /xlators/debug/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/debug/Makefile.am -------------------------------------------------------------------------------- /xlators/debug/delay-gen/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/debug/error-gen/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/debug/io-stats/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/debug/sink/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | -------------------------------------------------------------------------------- /xlators/debug/sink/src/sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/debug/sink/src/sink.c -------------------------------------------------------------------------------- /xlators/debug/trace/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/features/Makefile.am -------------------------------------------------------------------------------- /xlators/features/arbiter/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/barrier/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/bit-rot/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src -------------------------------------------------------------------------------- /xlators/features/bit-rot/src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = stub bitd 2 | -------------------------------------------------------------------------------- /xlators/features/changelog/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src lib 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/changelog/lib/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/cloudsync/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/cloudsync/src/cloudsync-plugins/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/cloudsync/src/cloudsync-plugins/src/cloudsyncs3/src/libcloudsyncs3.sym: -------------------------------------------------------------------------------- 1 | store_ops 2 | -------------------------------------------------------------------------------- /xlators/features/cloudsync/src/cloudsync-plugins/src/cvlt/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/cloudsync/src/cloudsync-plugins/src/cvlt/src/libcloudsynccvlt.sym: -------------------------------------------------------------------------------- 1 | store_ops 2 | -------------------------------------------------------------------------------- /xlators/features/compress/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/gfid-access/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/features/index/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/leases/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/locks/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/marker/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/metadisp/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/namespace/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/quiesce/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/quota/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/read-only/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/sdfs/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/selinux/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/shard/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/simple-quota/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/snapview-client/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/features/snapview-server/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/features/thin-arbiter/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/trash/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/upcall/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/features/utime/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/lib/src/libxlator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/lib/src/libxlator.c -------------------------------------------------------------------------------- /xlators/lib/src/libxlator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/lib/src/libxlator.h -------------------------------------------------------------------------------- /xlators/meta/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/meta/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/Makefile.am -------------------------------------------------------------------------------- /xlators/meta/src/active-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/active-link.c -------------------------------------------------------------------------------- /xlators/meta/src/frames-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/frames-file.c -------------------------------------------------------------------------------- /xlators/meta/src/graph-dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/graph-dir.c -------------------------------------------------------------------------------- /xlators/meta/src/graphs-dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/graphs-dir.c -------------------------------------------------------------------------------- /xlators/meta/src/logging-dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/logging-dir.c -------------------------------------------------------------------------------- /xlators/meta/src/meta-hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/meta-hooks.h -------------------------------------------------------------------------------- /xlators/meta/src/meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/meta.c -------------------------------------------------------------------------------- /xlators/meta/src/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/meta.h -------------------------------------------------------------------------------- /xlators/meta/src/name-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/name-file.c -------------------------------------------------------------------------------- /xlators/meta/src/option-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/option-file.c -------------------------------------------------------------------------------- /xlators/meta/src/options-dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/options-dir.c -------------------------------------------------------------------------------- /xlators/meta/src/root-dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/root-dir.c -------------------------------------------------------------------------------- /xlators/meta/src/top-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/top-link.c -------------------------------------------------------------------------------- /xlators/meta/src/type-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/type-file.c -------------------------------------------------------------------------------- /xlators/meta/src/view-dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/view-dir.c -------------------------------------------------------------------------------- /xlators/meta/src/xlator-dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/meta/src/xlator-dir.c -------------------------------------------------------------------------------- /xlators/mgmt/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = glusterd 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/mgmt/glusterd/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/mount/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/mount/Makefile.am -------------------------------------------------------------------------------- /xlators/mount/fuse/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src utils 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/nfs/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = server 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/nfs/server/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/nfs/server/src/acl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/nfs/server/src/acl3.c -------------------------------------------------------------------------------- /xlators/nfs/server/src/acl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/nfs/server/src/acl3.h -------------------------------------------------------------------------------- /xlators/nfs/server/src/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/nfs/server/src/nfs.c -------------------------------------------------------------------------------- /xlators/nfs/server/src/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/nfs/server/src/nfs.h -------------------------------------------------------------------------------- /xlators/nfs/server/src/nfs3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/nfs/server/src/nfs3.c -------------------------------------------------------------------------------- /xlators/nfs/server/src/nfs3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/nfs/server/src/nfs3.h -------------------------------------------------------------------------------- /xlators/nfs/server/src/nlm4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/nfs/server/src/nlm4.c -------------------------------------------------------------------------------- /xlators/nfs/server/src/nlm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluster/glusterfs/HEAD/xlators/nfs/server/src/nlm4.h -------------------------------------------------------------------------------- /xlators/performance/io-cache/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/performance/io-threads/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/performance/md-cache/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/performance/nl-cache/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/performance/open-behind/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/performance/quick-read/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/performance/read-ahead/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/performance/readdir-ahead/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/performance/write-behind/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/playground/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = template 2 | CLEANFILES = 3 | -------------------------------------------------------------------------------- /xlators/playground/rot-13/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/playground/template/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | -------------------------------------------------------------------------------- /xlators/protocol/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = auth client server 2 | -------------------------------------------------------------------------------- /xlators/protocol/auth/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = addr login 2 | -------------------------------------------------------------------------------- /xlators/protocol/auth/addr/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/protocol/auth/login/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/protocol/client/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/protocol/server/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/storage/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = posix 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/storage/posix/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | CLEANFILES = 4 | -------------------------------------------------------------------------------- /xlators/system/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = posix-acl -------------------------------------------------------------------------------- /xlators/system/posix-acl/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /xlators/xlator.sym: -------------------------------------------------------------------------------- 1 | xlator_api 2 | --------------------------------------------------------------------------------