diff mbox series

[v3] encrypt: add ceph support

Message ID 20221031083819.573521-1-xiubli@redhat.com (mailing list archive)
State New, archived
Headers show
Series [v3] encrypt: add ceph support | expand

Commit Message

Xiubo Li Oct. 31, 2022, 8:38 a.m. UTC
From: Xiubo Li <xiubli@redhat.com>

This will enable ceph could run the fscrypt test cases, but not all.
Some of them will be skipped because of not supporting features.

Here will just skip ceph in _scratch_mkfs_encrypted() and in
_require_scratch_encryption() it will try to check "set_encpolicy"
to make sure whether kernel ceph support the encryption or not.

Reviewed-by: Zorro Lang <zlang@redhat.com>
Signed-off-by: Xiubo Li <xiubli@redhat.com>
---

V3:
- Add more commit comments.


 common/encrypt | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/common/encrypt b/common/encrypt
index 45ce0954..1a77e23b 100644
--- a/common/encrypt
+++ b/common/encrypt
@@ -153,6 +153,9 @@  _scratch_mkfs_encrypted()
 		# erase the UBI volume; reformated automatically on next mount
 		$UBIUPDATEVOL_PROG ${SCRATCH_DEV} -t
 		;;
+	ceph)
+		_scratch_cleanup_files
+		;;
 	*)
 		_notrun "No encryption support for $FSTYP"
 		;;