Most blktests code, including check and common/rc, is licensed under GPL-3.0+. However, tests/block/029, 030 and 031 are licensed under GPL-2.0 only. These test scripts source GPL-3.0+ shell code, but GPL-2.0-only code is incompatible with GPL-3.0 code [1]. Relicense these test scripts under GPL-3.0 or later to resolve this incompatibility. The script files were authored by Bart Van Assche , and subsequently modified by five contributors: Yi Zhang Christoph Hellwig Li Zhijian Akinobu Mita Shin'ichiro Kawasaki Bart and all of the listed contributors except Yi Zhang agreed to the relicensing. Yi Zhang did not respond to requests sent to his Red Hat e-mail address and the address associated with his GitHub account. His changes are considered de minimis, so his consent is not required [2]. [1] https://www.gnu.org/licenses/gpl-faq.html#v2v3Compatibility [2] https://lore.kernel.org/linux-block/ama1svBbdVfyEKz1@shinmob/ Signed-off-by: Shin'ichiro Kawasaki --- tests/block/029 | 2 +- tests/block/030 | 2 +- tests/block/031 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/block/029 b/tests/block/029 index c00bdeb..e180703 100755 --- a/tests/block/029 +++ b/tests/block/029 @@ -1,5 +1,5 @@ #!/bin/bash -# SPDX-License-Identifier: GPL-2.0 +# SPDX-License-Identifier: GPL-3.0+ # Copyright 2019 Google LLC # # Trigger blk_mq_update_nr_hw_queues(). diff --git a/tests/block/030 b/tests/block/030 index 82330c2..0d63b3f 100755 --- a/tests/block/030 +++ b/tests/block/030 @@ -1,5 +1,5 @@ #!/bin/bash -# SPDX-License-Identifier: GPL-2.0 +# SPDX-License-Identifier: GPL-3.0+ # Copyright 2020 Google LLC # # Trigger the blk_mq_realloc_hw_ctxs() error path. Regression test for commit diff --git a/tests/block/031 b/tests/block/031 index 99615ec..1748466 100755 --- a/tests/block/031 +++ b/tests/block/031 @@ -1,5 +1,5 @@ #!/bin/bash -# SPDX-License-Identifier: GPL-2.0 +# SPDX-License-Identifier: GPL-3.0+ # Copyright 2021 Google LLC # # Test support for sharing a tag set across hardware queues ("host tag set"). -- 2.55.0