git: ff33e5c83fa8 - main - stress2: replace fuse.ko with fusefs.ko

Alan Somers asomers at FreeBSD.org
Wed Sep 15 19:00:16 UTC 2021


The branch main has been updated by asomers:

URL: https://cgit.FreeBSD.org/src/commit/?id=ff33e5c83fa8448aa9a594783f20f501942087f0

commit ff33e5c83fa8448aa9a594783f20f501942087f0
Author:     Alan Somers <asomers at FreeBSD.org>
AuthorDate: 2021-09-14 22:00:53 +0000
Commit:     Alan Somers <asomers at FreeBSD.org>
CommitDate: 2021-09-15 18:59:21 +0000

    stress2: replace fuse.ko with fusefs.ko
    
    It got renamed in FreeBSD 13
    
    Reviewed by:    pho
    MFC after:      2 weeks
    Sponsored by:   Axcient
    Differential Revision: https://reviews.freebsd.org/D31963
---
 tools/test/stress2/misc/fuse.sh  | 2 +-
 tools/test/stress2/misc/fuse2.sh | 4 ++--
 tools/test/stress2/misc/fuse3.sh | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/tools/test/stress2/misc/fuse.sh b/tools/test/stress2/misc/fuse.sh
index 682fdb122845..08c63996a81b 100755
--- a/tools/test/stress2/misc/fuse.sh
+++ b/tools/test/stress2/misc/fuse.sh
@@ -33,7 +33,7 @@
 . ../default.cfg
 
 [ -z "`type mkntfs 2>/dev/null`" ] && exit 0
-[ -c /dev/fuse ] || kldload fuse.ko
+[ -c /dev/fuse ] || kldload fusefs.ko
 
 MOUNT=/usr/local/bin/ntfs-3g
 
diff --git a/tools/test/stress2/misc/fuse2.sh b/tools/test/stress2/misc/fuse2.sh
index 3bd54fa080f5..d155386972c1 100755
--- a/tools/test/stress2/misc/fuse2.sh
+++ b/tools/test/stress2/misc/fuse2.sh
@@ -32,11 +32,11 @@
 [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1
 
 [ -z "`type mkntfs 2>/dev/null`" ] && exit 0
-[ -c /dev/fuse ] || kldload fuse.ko
+[ -c /dev/fuse ] || kldload fusefs.ko
 
 . ../default.cfg
 
-[ -c /dev/fuse ] || kldload fuse.ko
+[ -c /dev/fuse ] || kldload fusefs.ko
 MOUNT=/usr/local/bin/ntfs-3g
 mounts=15		# Number of parallel scripts
 mdstart=$mdstart	# Use md unit numbers from this point
diff --git a/tools/test/stress2/misc/fuse3.sh b/tools/test/stress2/misc/fuse3.sh
index d11e9f4140f7..9da6f92b175f 100755
--- a/tools/test/stress2/misc/fuse3.sh
+++ b/tools/test/stress2/misc/fuse3.sh
@@ -36,7 +36,7 @@
 sleep 10
 
 while pgrep -q swap; do
-	kldload fuse.ko
-	kldunload fuse.ko
+	kldload fusefs.ko
+	kldunload fusefs.ko
 done
 wait


More information about the dev-commits-src-all mailing list