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=46e574a616d792a34fbd71c413c2498dbafbb9f5;p=ceph.git cephadm/nvmeof: enable rbd_with_crc32c by default Signed-off-by: Alexander Indenbaum --- diff --git a/src/pybind/mgr/cephadm/tests/test_services.py b/src/pybind/mgr/cephadm/tests/test_services.py index efa9b99c28f..e377a907233 100644 --- a/src/pybind/mgr/cephadm/tests/test_services.py +++ b/src/pybind/mgr/cephadm/tests/test_services.py @@ -538,7 +538,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 b1f46d83ee4..a1098a7965e 100644 --- a/src/python-common/ceph/deployment/service_spec.py +++ b/src/python-common/ceph/deployment/service_spec.py @@ -1713,7 +1713,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,