if (cxld->flags & CXL_DECODER_F_ENABLE)
                return 0;
 
-       if (port->commit_end + 1 != id) {
+       if (cxl_num_decoders_committed(port) != id) {
                dev_dbg(&port->dev,
                        "%s: out of order commit, expected decoder%d.%d\n",
-                       dev_name(&cxld->dev), port->id, port->commit_end + 1);
+                       dev_name(&cxld->dev), port->id,
+                       cxl_num_decoders_committed(port));
                return -EBUSY;
        }
 
                        cxld->target_type = CXL_DECODER_HOSTONLYMEM;
                else
                        cxld->target_type = CXL_DECODER_DEVMEM;
-               if (cxld->id != port->commit_end + 1) {
+               if (cxld->id != cxl_num_decoders_committed(port)) {
                        dev_warn(&port->dev,
                                 "decoder%d.%d: Committed out of order\n",
                                 port->id, cxld->id);
 
         * Require an endpoint to be safe otherwise the driver can not
         * be sure that the device is unmapped.
         */
-       if (endpoint && endpoint->commit_end == -1)
+       if (endpoint && cxl_num_decoders_committed(endpoint) == 0)
                rc = __cxl_mem_sanitize(mds, cmd);
        else
                rc = -EBUSY;
 
        if (rc)
                return rc;
 
-       if (port->commit_end == -1) {
+       if (cxl_num_decoders_committed(port) == 0) {
                /* No regions mapped to this memdev */
                rc = cxl_get_poison_by_memdev(cxlmd);
        } else {
                .dpa = dpa,
        };
        port = cxlmd->endpoint;
-       if (port && is_cxl_endpoint(port) && port->commit_end != -1)
+       if (port && is_cxl_endpoint(port) && cxl_num_decoders_committed(port))
                device_for_each_child(&port->dev, &ctx, __cxl_dpa_to_region);
 
        return ctx.cxlr;
 
 static DEFINE_IDA(cxl_port_ida);
 static DEFINE_XARRAY(cxl_root_buses);
 
+int cxl_num_decoders_committed(struct cxl_port *port)
+{
+       lockdep_assert_held(&cxl_region_rwsem);
+
+       return port->commit_end + 1;
+}
+
 static ssize_t devtype_show(struct device *dev, struct device_attribute *attr,
                            char *buf)
 {
 
        return port->uport_dev == port->dev.parent;
 }
 
+int cxl_num_decoders_committed(struct cxl_port *port);
 bool is_cxl_port(const struct device *dev);
 struct cxl_port *to_cxl_port(const struct device *dev);
 struct pci_bus;