projects
/
xfstests-dev.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6159ae7
)
common: Fix recovery tests for tmpfs
author
Jan Kara
<jack@suse.cz>
Mon, 26 Apr 2021 20:50:11 +0000
(22:50 +0200)
committer
Eryu Guan
<guaneryu@gmail.com>
Sun, 9 May 2021 13:50:22 +0000
(21:50 +0800)
Tmpfs doesn't support metadata journalling. Recognize it as such.
Signed-off-by: Jan Kara <jack@suse.cz>
Reviewed-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
common/rc
patch
|
blob
|
history
diff --git
a/common/rc
b/common/rc
index 2cf550ec680059d797e11ada9fb9aeb09d52f542..a7fc066c88b2e9f585b827e2a05987fd264de52a 100644
(file)
--- a/
common/rc
+++ b/
common/rc
@@
-3475,7
+3475,7
@@
_has_metadata_journaling()
fi
case "$FSTYP" in
- ext2|vfat|msdos|udf|exfat)
+ ext2|vfat|msdos|udf|exfat
|tmpfs
)
echo "$FSTYP does not support metadata journaling"
return 1
;;