Update Red Hat Copyright Notices
commit712fe24c18df21567e566a013d92f9138666ec8c
authorLaszlo Ersek <lersek@redhat.com>
Sat, 4 Mar 2023 20:05:03 +0000 (4 21:05 +0100)
committerLaszlo Ersek <lersek@redhat.com>
Sat, 4 Mar 2023 20:05:03 +0000 (4 21:05 +0100)
tree4d2c8d3f647dece26839578705112620598e088a
parente36cfb6fa4f8f7daeebabb7db07e0fe7ba1d0477
Update Red Hat Copyright Notices

We've been advised to state Red Hat's Copyright as

  Copyright Red Hat

In order to collect our current copyright notices, I've used the following
"loose options" for git-grep (bash syntax):

  loose_options=(-i -e copyright --and -e 'red.?hat')

Namely, the command

  git grep -h "${loose_options[@]}"

produces 464 matches (lines) in libnbd @ d169661119f6, and 861 matches
(lines) in nbdkit @ e36cfb6fa4f8.

Lest we replace strings too broadly, define the "strict pattern" as
follows (note that we assume LC_ALL=en_US.UTF-8):

  year='20[0-2][0-9]'
  year_range="$year(-$year)?"
  year_range_list="$year_range(, $year_range)*"
  year_range_list_opt="( $year_range_list)?"
  c_sym='(\(C\)|©)'
  company='Red Hat,? Inc\.'
  strict_pattern="[Cc]opyright $c_sym$year_range_list_opt $company"

The command

  git grep -h "${loose_options[@]}" \
  | grep -E -v -- "$strict_pattern"

produces zero lines in each of nbdkit and libnbd, meaning that the "strict
pattern" covers all matches from the "loose options".

Assuming that our filenames do not contain newline characters, replace the
copyright notices with the following command:

  git grep -l "${loose_options[@]}" \
  | sponge \
  | tr '\n' '\0' \
  | xargs -0 -r -- sed -i -E -e "s/$strict_pattern/Copyright Red Hat/" --

The resultant diffstat in each project shows that all notices have been
replaced (note that some files contain multiple notices, therefore the
number of files modified is less than the number of lines modified).

Signed-off-by: Laszlo Ersek <lersek@redhat.com>
859 files changed:
LICENSE
Makefile.am
README.md
bash-completion/Makefile.am
bash-completion/nbdkit
common-rules.mk
common/allocators/Makefile.am
common/allocators/allocator-internal.h
common/allocators/allocator.c
common/allocators/allocator.h
common/allocators/malloc.c
common/allocators/sparse.c
common/allocators/zstd.c
common/bitmap/Makefile.am
common/bitmap/bitmap.c
common/bitmap/bitmap.h
common/bitmap/test-bitmap.c
common/gpt/Makefile.am
common/gpt/efi-crc32.h
common/gpt/gpt.h
common/include/Makefile.am
common/include/ansi-colours.h
common/include/array-size.h
common/include/ascii-ctype.h
common/include/ascii-string.h
common/include/byte-swapping.h
common/include/checked-overflow.h
common/include/compiler-macros.h
common/include/hexdigit.h
common/include/isaligned.h
common/include/ispowerof2.h
common/include/iszero.h
common/include/minmax.h
common/include/nextnonzero.h
common/include/random.h
common/include/rounding.h
common/include/static-assert.h
common/include/test-array-size.c
common/include/test-ascii-ctype.c
common/include/test-ascii-string.c
common/include/test-byte-swapping.c
common/include/test-checked-overflow.c
common/include/test-isaligned.c
common/include/test-ispowerof2.c
common/include/test-iszero.c
common/include/test-minmax.c
common/include/test-nextnonzero.c
common/include/test-random.c
common/include/test-tvdiff.c
common/include/tvdiff.h
common/include/unique-name.h
common/include/unix-path-max.h
common/protocol/Makefile.am
common/protocol/generate-protostrings.sh.in
common/protocol/nbd-protocol.h
common/protocol/protostrings.h
common/regions/Makefile.am
common/regions/regions.c
common/regions/regions.h
common/replacements/Makefile.am
common/replacements/fdatasync.c
common/replacements/fdatasync.h
common/replacements/fsync.c
common/replacements/fsync.h
common/replacements/get_current_dir_name.c
common/replacements/get_current_dir_name.h
common/replacements/getline.h
common/replacements/open_memstream.c
common/replacements/open_memstream.h
common/replacements/openlog.c
common/replacements/poll.c
common/replacements/poll.h
common/replacements/posix_memalign.c
common/replacements/posix_memalign.h
common/replacements/pread.c
common/replacements/pread.h
common/replacements/pwrite.c
common/replacements/pwrite.h
common/replacements/realpath.c
common/replacements/realpath.h
common/replacements/strndup.h
common/replacements/sysconf.c
common/replacements/sysconf.h
common/replacements/syslog.c
common/replacements/syslog.h
common/replacements/test-current-dir-name.c
common/replacements/vsyslog.c
common/replacements/win32/Makefile.am
common/replacements/win32/nbdkit-cat.mc
common/utils/Makefile.am
common/utils/bench.h
common/utils/cleanup-nbdkit.c
common/utils/cleanup.c
common/utils/cleanup.h
common/utils/const-string-vector.h
common/utils/environ.c
common/utils/exit-with-parent.c
common/utils/exit-with-parent.h
common/utils/full-rw.c
common/utils/nbdkit-string.h
common/utils/quote.c
common/utils/string-vector.h
common/utils/test-quotes.c
common/utils/test-vector.c
common/utils/utils.c
common/utils/utils.h
common/utils/vector.c
common/utils/vector.h
common/utils/windows-compat.c
common/utils/windows-compat.h
common/utils/windows-errors.txt
configure.ac
docs/Makefile.am
docs/make-links.sh
docs/nbdkit-captive.pod
docs/nbdkit-client.pod
docs/nbdkit-filter.pod
docs/nbdkit-loop.pod
docs/nbdkit-plugin.pod
docs/nbdkit-probing.pod
docs/nbdkit-protocol.pod
docs/nbdkit-release-notes-1.10.pod
docs/nbdkit-release-notes-1.12.pod
docs/nbdkit-release-notes-1.14.pod
docs/nbdkit-release-notes-1.16.pod
docs/nbdkit-release-notes-1.18.pod
docs/nbdkit-release-notes-1.20.pod
docs/nbdkit-release-notes-1.22.pod
docs/nbdkit-release-notes-1.24.pod
docs/nbdkit-release-notes-1.26.pod
docs/nbdkit-release-notes-1.28.pod
docs/nbdkit-release-notes-1.30.pod
docs/nbdkit-release-notes-1.32.pod
docs/nbdkit-release-notes-1.4.pod
docs/nbdkit-release-notes-1.6.pod
docs/nbdkit-release-notes-1.8.pod
docs/nbdkit-security.pod
docs/nbdkit-service.pod
docs/nbdkit-tls.pod
docs/nbdkit.pod
filters/Makefile.am
filters/blocksize-policy/Makefile.am
filters/blocksize-policy/nbdkit-blocksize-policy-filter.pod
filters/blocksize-policy/policy.c
filters/blocksize/Makefile.am
filters/blocksize/blocksize.c
filters/blocksize/nbdkit-blocksize-filter.pod
filters/cache/Makefile.am
filters/cache/blk.c
filters/cache/blk.h
filters/cache/cache.c
filters/cache/cache.h
filters/cache/lru.c
filters/cache/lru.h
filters/cache/nbdkit-cache-filter.pod
filters/cache/reclaim.c
filters/cache/reclaim.h
filters/cacheextents/Makefile.am
filters/cacheextents/cacheextents.c
filters/cacheextents/nbdkit-cacheextents-filter.pod
filters/checkwrite/Makefile.am
filters/checkwrite/checkwrite.c
filters/checkwrite/nbdkit-checkwrite-filter.pod
filters/cow/Makefile.am
filters/cow/blk.c
filters/cow/blk.h
filters/cow/cow.c
filters/cow/cow.h
filters/cow/nbdkit-cow-filter.pod
filters/ddrescue/Makefile.am
filters/delay/Makefile.am
filters/delay/delay.c
filters/delay/nbdkit-delay-filter.pod
filters/error/Makefile.am
filters/error/error.c
filters/error/nbdkit-error-filter.pod
filters/exitlast/Makefile.am
filters/exitlast/exitlast.c
filters/exitlast/nbdkit-exitlast-filter.pod
filters/exitwhen/Makefile.am
filters/exitwhen/exitwhen.c
filters/exitwhen/nbdkit-exitwhen-filter.pod
filters/exportname/Makefile.am
filters/exportname/exportname.c
filters/exportname/nbdkit-exportname-filter.pod
filters/ext2/Makefile.am
filters/ext2/ext2.c
filters/ext2/io.c
filters/ext2/io.h
filters/ext2/nbdkit-ext2-filter.pod
filters/extentlist/Makefile.am
filters/extentlist/extentlist.c
filters/extentlist/nbdkit-extentlist-filter.pod
filters/filters.syms
filters/fua/Makefile.am
filters/fua/fua.c
filters/fua/nbdkit-fua-filter.pod
filters/gzip/Makefile.am
filters/gzip/gzip.c
filters/gzip/nbdkit-gzip-filter.pod
filters/ip/Makefile.am
filters/ip/ip.c
filters/ip/nbdkit-ip-filter.pod
filters/limit/Makefile.am
filters/limit/limit.c
filters/limit/nbdkit-limit-filter.pod
filters/log/Makefile.am
filters/log/log.c
filters/log/log.h
filters/log/nbdkit-log-filter.pod
filters/log/output.c
filters/luks/Makefile.am
filters/luks/luks-encryption.c
filters/luks/luks-encryption.h
filters/luks/luks.c
filters/luks/nbdkit-luks-filter.pod
filters/multi-conn/Makefile.am
filters/multi-conn/multi-conn.c
filters/multi-conn/nbdkit-multi-conn-filter.pod
filters/nocache/Makefile.am
filters/nocache/nbdkit-nocache-filter.pod
filters/nocache/nocache.c
filters/noextents/Makefile.am
filters/noextents/nbdkit-noextents-filter.pod
filters/noextents/noextents.c
filters/nofilter/Makefile.am
filters/nofilter/nbdkit-nofilter-filter.pod
filters/nofilter/nofilter.c
filters/noparallel/Makefile.am
filters/noparallel/nbdkit-noparallel-filter.pod
filters/noparallel/noparallel.c
filters/nozero/Makefile.am
filters/nozero/nbdkit-nozero-filter.pod
filters/nozero/nozero.c
filters/offset/Makefile.am
filters/offset/nbdkit-offset-filter.pod
filters/offset/offset.c
filters/partition/Makefile.am
filters/partition/nbdkit-partition-filter.pod
filters/partition/partition-gpt.c
filters/partition/partition-mbr.c
filters/partition/partition.c
filters/partition/partition.h
filters/pause/Makefile.am
filters/pause/nbdkit-pause-filter.pod
filters/pause/pause.c
filters/protect/Makefile.am
filters/protect/nbdkit-protect-filter.pod
filters/protect/protect.c
filters/rate/Makefile.am
filters/rate/bucket.c
filters/rate/bucket.h
filters/rate/nbdkit-rate-filter.pod
filters/rate/rate.c
filters/readahead/Makefile.am
filters/readahead/bgthread.c
filters/readahead/nbdkit-readahead-filter.pod
filters/readahead/readahead.c
filters/readahead/readahead.h
filters/retry-request/Makefile.am
filters/retry-request/nbdkit-retry-request-filter.pod
filters/retry-request/retry-request.c
filters/retry/Makefile.am
filters/retry/nbdkit-retry-filter.pod
filters/retry/retry.c
filters/scan/Makefile.am
filters/scan/bgthread.c
filters/scan/nbdkit-scan-filter.pod
filters/scan/scan.c
filters/scan/scan.h
filters/stats/Makefile.am
filters/stats/nbdkit-stats-filter.pod
filters/stats/stats.cpp
filters/swab/Makefile.am
filters/tar/Makefile.am
filters/tar/nbdkit-tar-filter.pod
filters/tar/tar.c
filters/tls-fallback/Makefile.am
filters/tls-fallback/nbdkit-tls-fallback-filter.pod
filters/tls-fallback/tls-fallback.c
filters/truncate/Makefile.am
filters/truncate/nbdkit-truncate-filter.pod
filters/truncate/truncate.c
filters/xz/Makefile.am
filters/xz/blkcache.c
filters/xz/blkcache.h
filters/xz/nbdkit-xz-filter.pod
filters/xz/xz.c
filters/xz/xzfile.c
filters/xz/xzfile.h
fuzzing/Makefile.am
include/Makefile.am
include/nbdkit-common.h
include/nbdkit-filter.h
include/nbdkit-plugin.h
include/nbdkit-version.h.in
plugins/Makefile.am
plugins/S3/Makefile.am
plugins/S3/S3.py
plugins/S3/nbdkit-S3-plugin.pod
plugins/blkio/Makefile.am
plugins/blkio/blkio.c
plugins/blkio/nbdkit-blkio-plugin.pod
plugins/cc/Makefile.am
plugins/cc/cc.c
plugins/cc/nbdkit-cc-plugin.pod
plugins/cdi/Makefile.am
plugins/cdi/cdi.c
plugins/cdi/nbdkit-cdi-plugin.pod
plugins/curl/Makefile.am
plugins/curl/curl.c
plugins/curl/curldefs.h
plugins/curl/nbdkit-curl-plugin.pod
plugins/curl/pool.c
plugins/curl/scripts.c
plugins/data/Makefile.am
plugins/data/data.c
plugins/data/data.h
plugins/data/disk2data.pl
plugins/data/format.c
plugins/data/format.h
plugins/data/nbdkit-data-plugin.pod
plugins/eval/Makefile.am
plugins/eval/eval.c
plugins/eval/nbdkit-eval-plugin.pod
plugins/example1/Makefile.am
plugins/example1/example1.c
plugins/example1/nbdkit-example1-plugin.pod
plugins/example2/Makefile.am
plugins/example2/example2.c
plugins/example2/nbdkit-example2-plugin.pod
plugins/example2/winexample2.c
plugins/example3/Makefile.am
plugins/example3/example3.c
plugins/example3/nbdkit-example3-plugin.pod
plugins/example4/Makefile.am
plugins/example4/example4.pl
plugins/file/Makefile.am
plugins/file/file.c
plugins/file/nbdkit-file-plugin.pod
plugins/file/winfile.c
plugins/floppy/Makefile.am
plugins/floppy/directory-lfn.c
plugins/floppy/floppy.c
plugins/floppy/nbdkit-floppy-plugin.pod
plugins/floppy/virtual-floppy.c
plugins/floppy/virtual-floppy.h
plugins/full/Makefile.am
plugins/full/full.c
plugins/full/nbdkit-full-plugin.pod
plugins/golang/Makefile.am
plugins/golang/config-test.go
plugins/golang/dump-plugin-examples.sh
plugins/golang/examples/disk/disk.go
plugins/golang/examples/dump-plugin/dumpplugin.go
plugins/golang/examples/minimal/minimal.go
plugins/golang/examples/ramdisk/ramdisk.go
plugins/golang/nbdkit-golang-plugin.pod
plugins/golang/src/libguestfs.org/nbdkit/nbdkit.go
plugins/golang/src/libguestfs.org/nbdkit/utils.go
plugins/golang/src/libguestfs.org/nbdkit/wrappers.go
plugins/golang/src/libguestfs.org/nbdkit/wrappers.h
plugins/guestfs/Makefile.am
plugins/guestfs/guestfs-plugin.c
plugins/guestfs/nbdkit-guestfs-plugin.pod
plugins/info/Makefile.am
plugins/info/info.c
plugins/info/nbdkit-info-plugin.pod
plugins/iso/Makefile.am
plugins/iso/iso.c
plugins/iso/nbdkit-iso-plugin.pod
plugins/libvirt/Makefile.am
plugins/libvirt/libvirt-plugin.c
plugins/libvirt/nbdkit-libvirt-plugin.pod
plugins/linuxdisk/Makefile.am
plugins/linuxdisk/filesystem.c
plugins/linuxdisk/linuxdisk.c
plugins/linuxdisk/nbdkit-linuxdisk-plugin.pod
plugins/linuxdisk/partition-gpt.c
plugins/linuxdisk/virtual-disk.c
plugins/linuxdisk/virtual-disk.h
plugins/lua/Makefile.am
plugins/lua/lua.c
plugins/lua/nbdkit-lua-plugin.pod
plugins/memory/Makefile.am
plugins/memory/memory.c
plugins/memory/nbdkit-memory-plugin.pod
plugins/nbd/Makefile.am
plugins/nbd/nbd.c
plugins/nbd/nbdkit-nbd-plugin.pod
plugins/null/Makefile.am
plugins/null/nbdkit-null-plugin.pod
plugins/null/null.c
plugins/ocaml/Makefile.am
plugins/ocaml/NBDKit.ml
plugins/ocaml/NBDKit.mli
plugins/ocaml/bindings.c
plugins/ocaml/callbacks.h
plugins/ocaml/nbdkit-ocaml-plugin.pod
plugins/ocaml/plugin.c
plugins/ocaml/plugin.h
plugins/ondemand/Makefile.am
plugins/ondemand/default-command.sh.in
plugins/ondemand/nbdkit-ondemand-plugin.pod
plugins/ondemand/ondemand.c
plugins/partitioning/Makefile.am
plugins/partitioning/nbdkit-partitioning-plugin.pod
plugins/partitioning/partition-gpt.c
plugins/partitioning/partition-mbr.c
plugins/partitioning/partitioning.c
plugins/partitioning/virtual-disk.c
plugins/partitioning/virtual-disk.h
plugins/pattern/Makefile.am
plugins/pattern/nbdkit-pattern-plugin.pod
plugins/pattern/pattern.c
plugins/perl/Makefile.am
plugins/perl/nbdkit-perl-plugin.pod
plugins/perl/perl.c
plugins/plugins.syms
plugins/python/Makefile.am
plugins/python/errors.c
plugins/python/helpers.c
plugins/python/modfunctions.c
plugins/python/nbdkit-python-plugin.pod
plugins/python/plugin.c
plugins/python/plugin.h
plugins/random/Makefile.am
plugins/random/nbdkit-random-plugin.pod
plugins/random/random.c
plugins/ruby/Makefile.am
plugins/ruby/nbdkit-ruby-plugin.pod
plugins/ruby/ruby.c
plugins/rust/Makefile.am
plugins/sh/Makefile.am
plugins/sh/call.c
plugins/sh/call.h
plugins/sh/methods.c
plugins/sh/methods.h
plugins/sh/nbdkit-sh-plugin.pod
plugins/sh/sh.c
plugins/sparse-random/Makefile.am
plugins/sparse-random/nbdkit-sparse-random-plugin.pod
plugins/sparse-random/sparse-random.c
plugins/split/Makefile.am
plugins/split/nbdkit-split-plugin.pod
plugins/split/split.c
plugins/ssh/Makefile.am
plugins/ssh/nbdkit-ssh-plugin.pod
plugins/ssh/ssh.c
plugins/tcl/Makefile.am
plugins/tcl/nbdkit-tcl-plugin.pod
plugins/tcl/tcl.c
plugins/tmpdisk/Makefile.am
plugins/tmpdisk/default-command.sh.in
plugins/tmpdisk/nbdkit-tmpdisk-plugin.pod
plugins/tmpdisk/tmpdisk.c
plugins/torrent/Makefile.am
plugins/torrent/nbdkit-torrent-plugin.pod
plugins/torrent/torrent.cpp
plugins/vddk/Makefile.am
plugins/vddk/nbdkit-vddk-plugin.pod
plugins/vddk/reexec.c
plugins/vddk/stats.c
plugins/vddk/utils.c
plugins/vddk/vddk-structs.h
plugins/vddk/vddk-stubs.h
plugins/vddk/vddk.c
plugins/vddk/vddk.h
plugins/vddk/worker.c
plugins/zero/Makefile.am
plugins/zero/nbdkit-zero-plugin.pod
plugins/zero/zero.c
podwrapper.pl.in
scripts/git.orderfile
server/Makefile.am
server/backend.c
server/background.c
server/captive.c
server/connections.c
server/crypto.c
server/debug-flags.c
server/debug.c
server/exports.c
server/extents.c
server/filters.c
server/fuzzer.c
server/internal.h
server/local/nbdkit.pc.in
server/locks.c
server/log-stderr.c
server/log-syslog.c
server/log.c
server/main.c
server/nbdkit.pc.in
server/nbdkit.syms
server/options.h
server/plugins.c
server/protocol-handshake-newstyle.c
server/protocol-handshake-oldstyle.c
server/protocol-handshake.c
server/protocol.c
server/public.c
server/quit.c
server/signals.c
server/socket-activation.c
server/sockets.c
server/test-public.c
server/threadlocal.c
server/usergroup.c
server/vfprintf.c
tests/Makefile.am
tests/dummy-vddk.c
tests/functions.sh.in
tests/generate-file-data.sh
tests/make-pki.sh.in
tests/make-psk.sh
tests/pycodestyle.sh
tests/python-exception.py
tests/python-export-list.py
tests/python-export-name.py
tests/python-thread-model.py
tests/test-S3-unit.sh
tests/test-S3.sh
tests/test-S3/boto3/__init__.py
tests/test-S3/botocore/exceptions.py
tests/test-ansi-c-plugin.c
tests/test-ansi-c.sh
tests/test-binary.sh
tests/test-blkio.sh
tests/test-block-size-constraints.sh
tests/test-blocksize-default.sh
tests/test-blocksize-error-policy.sh
tests/test-blocksize-extents.sh
tests/test-blocksize-policy.sh
tests/test-blocksize-sharding.sh
tests/test-blocksize-write-disconnect.sh
tests/test-blocksize.sh
tests/test-cache-block-size.sh
tests/test-cache-max-size.sh
tests/test-cache-on-read-caches.sh
tests/test-cache-on-read.sh
tests/test-cache-unaligned.sh
tests/test-cache.sh
tests/test-cacheextents.sh
tests/test-captive-tls.sh
tests/test-captive.sh
tests/test-cc-cpp.cpp
tests/test-cc-cpp.sh
tests/test-cc-ocaml.sh
tests/test-cc.sh
tests/test-cdi.sh
tests/test-checkwrite-bounds.sh
tests/test-checkwrite-fail.sh
tests/test-checkwrite.sh
tests/test-client-death-tls.sh
tests/test-client-death.sh
tests/test-connect.c
tests/test-cow-block-size.sh
tests/test-cow-extents-large.sh
tests/test-cow-extents1.sh
tests/test-cow-extents2.sh
tests/test-cow-null.sh
tests/test-cow-on-read-caches.sh
tests/test-cow-on-read.sh
tests/test-cow-unaligned.sh
tests/test-cow.sh
tests/test-curl-cookie-script.c
tests/test-curl-file.sh
tests/test-curl-header-script-fail.script
tests/test-curl-header-script-fail.sh
tests/test-curl-header-script.c
tests/test-curl.c
tests/test-cxx-filter.cpp
tests/test-cxx-plugin.cpp
tests/test-cxx.sh
tests/test-data-64b.sh
tests/test-data-7E.sh
tests/test-data-bad.sh
tests/test-data-base64.sh
tests/test-data-extents.sh
tests/test-data-file.sh
tests/test-data-format.sh
tests/test-data-optimum.sh
tests/test-data-partition.sh
tests/test-data-random-slice.sh
tests/test-data-random-slice2.sh
tests/test-data-raw-copy.sh
tests/test-data-raw.sh
tests/test-data-reloffset.sh
tests/test-data-sectors.sh
tests/test-data-size.sh
tests/test-data.c
tests/test-debug-flags.sh
tests/test-delay-close.sh
tests/test-delay-open.sh
tests/test-delay-shutdown.sh
tests/test-delay.c
tests/test-disconnect-plugin.c
tests/test-disconnect-tls.sh
tests/test-disconnect.sh
tests/test-disk2data.sh
tests/test-dump-config-major-1.sh
tests/test-dump-config-version-major-minor.sh
tests/test-dump-config.sh
tests/test-dump-plugin-and-single.sh
tests/test-dump-plugin-example1.sh
tests/test-dump-plugin-example2.sh
tests/test-dump-plugin-example4.sh
tests/test-dump-plugin-name.sh
tests/test-dump-plugin-thread-model.sh
tests/test-dump-plugin.sh
tests/test-eflags.sh
tests/test-error-triggered.sh
tests/test-error0.sh
tests/test-error10.sh
tests/test-error100.sh
tests/test-eval-cache.sh
tests/test-eval-disconnect.sh
tests/test-eval-dump-plugin.sh
tests/test-eval-exports.sh
tests/test-eval-file.sh
tests/test-eval.sh
tests/test-exit-with-parent.c
tests/test-exitlast.sh
tests/test-exitwhen-file-already-created.sh
tests/test-exitwhen-file-created-reject-new.sh
tests/test-exitwhen-file-created-when-idle.sh
tests/test-exitwhen-file-created.sh
tests/test-exitwhen-file-deleted.sh
tests/test-exitwhen-pipe-closed.c
tests/test-exitwhen-process-exits.sh
tests/test-exitwhen-script.sh
tests/test-export-info.sh
tests/test-export-name.sh
tests/test-exportname.sh
tests/test-ext2-exportname.sh
tests/test-ext2.c
tests/test-extentlist.sh
tests/test-file-block.c
tests/test-file-dir.sh
tests/test-file-dirfd.sh
tests/test-file-extents.sh
tests/test-file-fd.sh
tests/test-file-readonly.sh
tests/test-file.sh
tests/test-floppy.sh
tests/test-flush-plugin.c
tests/test-flush.sh
tests/test-foreground.sh
tests/test-fua.sh
tests/test-full.sh
tests/test-golang.c
tests/test-gzip-curl.c
tests/test-gzip.c
tests/test-help-example1.sh
tests/test-help-plugin.sh
tests/test-help.sh
tests/test-info-address.sh
tests/test-info-base64.sh
tests/test-info-conntime.sh
tests/test-info-raw.sh
tests/test-info-time.sh
tests/test-info-uptime.sh
tests/test-ip-filter-anyunix.sh
tests/test-ip-filter-anyvsock.sh
tests/test-ip-filter-gid.sh
tests/test-ip-filter-pid.sh
tests/test-ip-filter-uid.sh
tests/test-ip-filter.sh
tests/test-ipv4-lo.sh
tests/test-ipv6-lo.sh
tests/test-iso.sh
tests/test-just-filter-header.c
tests/test-just-plugin-header.c
tests/test-lang-plugins.c
tests/test-layers-filter.c
tests/test-layers-plugin.c
tests/test-layers.c
tests/test-layers.sh
tests/test-limit.sh
tests/test-linuxdisk-copy-out.sh
tests/test-linuxdisk.sh
tests/test-log-error.sh
tests/test-log-extents.sh
tests/test-log-script-info.sh
tests/test-log-script.sh
tests/test-log.sh
tests/test-long-name.sh
tests/test-long-options.sh
tests/test-luks-copy-zero.sh
tests/test-luks-copy.sh
tests/test-luks-info.sh
tests/test-manual.sh
tests/test-memory-allocator-malloc-mlock.sh
tests/test-memory-allocator-malloc.sh
tests/test-memory-largest-for-qemu.sh
tests/test-memory-largest.sh
tests/test-memory.c
tests/test-multi-conn-name.sh
tests/test-multi-conn-plugin.sh
tests/test-multi-conn.sh
tests/test-nbd-block-size.sh
tests/test-nbd-client-tls.sh
tests/test-nbd-client.sh
tests/test-nbd-dynamic-content.sh
tests/test-nbd-dynamic-list.sh
tests/test-nbd-extents.sh
tests/test-nbd-qcow2.sh
tests/test-nbd-tls-psk.sh
tests/test-nbd-tls.sh
tests/test-nbd-vsock.sh
tests/test-nbd.c
tests/test-nbdkit-backend-debug.sh
tests/test-newstyle.c
tests/test-nofilter.sh
tests/test-not-linked-to-libssl.sh
tests/test-nozero.sh
tests/test-null-extents.sh
tests/test-null.c
tests/test-ocaml-errorcodes.c
tests/test-ocaml.c
tests/test-offset-extents.sh
tests/test-offset-truncate.sh
tests/test-offset.c
tests/test-offset2.sh
tests/test-old-plugins.sh
tests/test-oldstyle.c
tests/test-ondemand-list.sh
tests/test-ondemand-locking.sh
tests/test-ondemand.sh
tests/test-parallel-file.sh
tests/test-parallel-nbd.sh
tests/test-parallel-sh.sh
tests/test-partition1.sh
tests/test-partition2.sh
tests/test-partitioning1.sh
tests/test-partitioning2.sh
tests/test-partitioning3.sh
tests/test-partitioning4.sh
tests/test-partitioning5.sh
tests/test-partitioning6.sh
tests/test-pattern-largest-for-qemu.sh
tests/test-pattern-largest.sh
tests/test-pattern.sh
tests/test-pause.c
tests/test-plugin-docs.sh
tests/test-probe-filter.sh
tests/test-probe-plugin.sh
tests/test-protect-ranges.sh
tests/test-protect.c
tests/test-python-exception.sh
tests/test-python-export-list.sh
tests/test-python-export-name.sh
tests/test-python-plugin.py
tests/test-python-thread-model.sh
tests/test-python.sh
tests/test-random-copy.sh
tests/test-random-sock.sh
tests/test-random.c
tests/test-rate-dynamic.sh
tests/test-rate.sh
tests/test-read-password-interactive.sh
tests/test-read-password-plugin.c
tests/test-read-password.sh
tests/test-readahead-copy.sh
tests/test-readahead.sh
tests/test-retry-extents.sh
tests/test-retry-open.sh
tests/test-retry-readonly.sh
tests/test-retry-reopen-fail.sh
tests/test-retry-request-mirror.c
tests/test-retry-request-open.sh
tests/test-retry-request.sh
tests/test-retry-size.sh
tests/test-retry-zero-flags.sh
tests/test-retry.sh
tests/test-scan-copy.sh
tests/test-scan-info.sh
tests/test-sh-errors.sh
tests/test-sh-extents.sh
tests/test-sh-tmpdir-leak.sh
tests/test-shebang-cc-ocaml.sh
tests/test-shebang-cc.sh
tests/test-shebang-perl.sh
tests/test-shebang-python.sh
tests/test-shebang-ruby.sh
tests/test-short-options.sh
tests/test-shutdown-plugin.c
tests/test-shutdown.sh
tests/test-single-from-file.sh
tests/test-single-sh.sh
tests/test-single.sh
tests/test-socket-activation.c
tests/test-sparse-random-copy.sh
tests/test-sparse-random-info.sh
tests/test-split-extents.sh
tests/test-split.c
tests/test-ssh.sh
tests/test-start.sh
tests/test-stdio-plugin.c
tests/test-stdio.sh
tests/test-swab-16r.sh
tests/test-swab-16w.sh
tests/test-swab-32r.sh
tests/test-swab-32w.sh
tests/test-swab-64r.sh
tests/test-swab-64w.sh
tests/test-swab-8.sh
tests/test-swab-extents.sh
tests/test-swap.sh
tests/test-synopsis.sh
tests/test-tar-gzip-curl.c
tests/test-tar-info-xz.sh
tests/test-tar-info.sh
tests/test-tar-xz-curl.c
tests/test-tar.sh
tests/test-tls-fallback.sh
tests/test-tls-psk.sh
tests/test-tls.sh
tests/test-tmpdisk-command.sh
tests/test-tmpdisk.c
tests/test-truncate-extents.sh
tests/test-truncate1.sh
tests/test-truncate2.sh
tests/test-truncate3.sh
tests/test-truncate4.sh
tests/test-vddk-dump-plugin.sh
tests/test-vddk-password-fd.sh
tests/test-vddk-password-interactive.sh
tests/test-vddk-real-create.sh
tests/test-vddk-real-dump-plugin.sh
tests/test-vddk-real.sh
tests/test-vddk-reexec.sh
tests/test-vddk-run.sh
tests/test-vddk.c
tests/test-version-example1.sh
tests/test-version-filter.sh
tests/test-version-plugin.sh
tests/test-version.sh
tests/test-vsock.sh
tests/test-xz-curl.c
tests/test-xz.c
tests/test-zero.sh
tests/test.c
tests/test.h
tests/test_ocaml_errorcodes_plugin.ml
tests/test_ocaml_plugin.ml
tests/test_python.py
tests/web-server.c
tests/web-server.h
valgrind/Makefile.am
valgrind/ext2fs.suppressions
valgrind/glibc.suppressions
valgrind/gnutls.suppressions
valgrind/nbdkit.suppressions
valgrind/ocaml.suppressions
valgrind/perl.suppressions
valgrind/sh.suppressions
wrapper.c