From: Alexander Indenbaum Date: Tue, 9 Dec 2025 10:15:14 +0000 (+0200) Subject: cephadm/nvmeof: enable rbd_with_crc32c by default X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=af893208930152fae937536ebfa750b25ef6105c;p=ceph.git cephadm/nvmeof: enable rbd_with_crc32c by default Signed-off-by: Alexander Indenbaum (cherry picked from commit 46e574a616d792a34fbd71c413c2498dbafbb9f5) --- diff --git a/src/pybind/mgr/cephadm/tests/test_services.py b/src/pybind/mgr/cephadm/tests/test_services.py index 53e93db1673..f31a7f912ac 100644 --- a/src/pybind/mgr/cephadm/tests/test_services.py +++ b/src/pybind/mgr/cephadm/tests/test_services.py @@ -443,7 +443,7 @@ conn_retries = 10 transports = tcp transport_tcp_options = {{"in_capsule_data_size": 8192, "max_io_qpairs_per_ctrlr": 7}} enable_dsa_acceleration = False -rbd_with_crc32c = False +rbd_with_crc32c = True tgt_cmd_extra_args = {tgt_cmd_extra_args} qos_timeslice_in_usecs = 0 notifications_interval = 60 diff --git a/src/python-common/ceph/deployment/service_spec.py b/src/python-common/ceph/deployment/service_spec.py index 04080241215..ecdc270322d 100644 --- a/src/python-common/ceph/deployment/service_spec.py +++ b/src/python-common/ceph/deployment/service_spec.py @@ -1444,7 +1444,7 @@ class NvmeofServiceSpec(ServiceSpec): transport_tcp_options: Optional[Dict[str, int]] = {"in_capsule_data_size": 8192, "max_io_qpairs_per_ctrlr": 7}, enable_dsa_acceleration: bool = False, - rbd_with_crc32c: bool = False, + rbd_with_crc32c: bool = True, tgt_cmd_extra_args: Optional[str] = None, iobuf_options: Optional[Dict[str, int]] = None, qos_timeslice_in_usecs: Optional[int] = 0,