diff mbox series

btrfs-progs: tests: remove duplicated helper

Message ID 20220802031110.3373296-1-cccheng@synology.com (mailing list archive)
State New, archived
Headers show
Series btrfs-progs: tests: remove duplicated helper | expand

Commit Message

Chung-Chiang Cheng Aug. 2, 2022, 3:11 a.m. UTC
The helper `check_min_kernel_version` is duplicated and can be removed.

Signed-off-by: Chung-Chiang Cheng <cccheng@synology.com>
---
 tests/common | 22 ----------------------
 1 file changed, 22 deletions(-)

Comments

David Sterba Aug. 2, 2022, 3:01 p.m. UTC | #1
On Tue, Aug 02, 2022 at 11:11:10AM +0800, Chung-Chiang Cheng wrote:
> The helper `check_min_kernel_version` is duplicated and can be removed.
> 
> Signed-off-by: Chung-Chiang Cheng <cccheng@synology.com>

Added to devel, thanks.
diff mbox series

Patch

diff --git a/tests/common b/tests/common
index 69f5aae0f6ac..368ca654d5c2 100644
--- a/tests/common
+++ b/tests/common
@@ -688,28 +688,6 @@  _get_subvolid()
 
 }
 
-# compare running kernel version to the given parameter, return success
-# if running is newer than requested (let caller decide if to fail or skip)
-# $1: minimum version of running kernel in major.minor format (eg. 4.19)
-check_min_kernel_version()
-{
-	local unamemajor
-	local unameminor
-	local argmajor
-	local argminor
-
-	# 4.19.1-1-default
-	uname=$(uname -r)
-	# 4.19.1
-	uname=${uname%%-*}
-	IFS=. read unamemajor unameminor tmp <<< "$uname"
-	IFS=. read argmajor argminor tmp <<< "$1"
-	# "compare versions: ${unamemajor}.${unameminor} ? ${argmajor}.${argminor}"
-	[ "$unamemajor" -ge "$argmajor" ] || return 1
-	[ "$unameminor" -ge "$argminor" ] || return 1
-	return 0
-}
-
 # how many files to create.
 DATASET_SIZE=50