Re: [PATCH 03/11] cxl/core: Remove cxl_device_lock()

2022-03-09 Thread Dan Williams
On Wed, Mar 9, 2022 at 10:22 AM Jonathan Cameron
 wrote:
>
> On Mon, 28 Feb 2022 18:49:06 -0800
> Dan Williams  wrote:
>
> > In preparation for moving lockdep_mutex nested lock acquisition into the
> > core, remove the cxl_device_lock() wrapper, but preserve
> > cxl_lock_class() that will be used to inform the core of the subsystem's
> > lock ordering rules.
> >
> > Cc: Alison Schofield 
> > Cc: Vishal Verma 
> > Cc: Ira Weiny 
> > Cc: Ben Widawsky 
> > Signed-off-by: Dan Williams 
>
> Makes sense, but perhaps the description should call out that after
> this patch it's not just a wrapper remove, but rather the lock
> checking is totally gone for now?

Sure, that's worth a note.

>
> Otherwise this looks fine to me. FWIW
> Reviewed-by: Jonathan Cameron 



[PATCH 03/11] cxl/core: Remove cxl_device_lock()

2022-02-28 Thread Dan Williams
In preparation for moving lockdep_mutex nested lock acquisition into the
core, remove the cxl_device_lock() wrapper, but preserve
cxl_lock_class() that will be used to inform the core of the subsystem's
lock ordering rules.

Cc: Alison Schofield 
Cc: Vishal Verma 
Cc: Ira Weiny 
Cc: Ben Widawsky 
Signed-off-by: Dan Williams 
---
 drivers/cxl/core/pmem.c |4 ++--
 drivers/cxl/core/port.c |   50 ++-
 drivers/cxl/cxl.h   |   46 ---
 drivers/cxl/mem.c   |4 ++--
 drivers/cxl/pmem.c  |   12 ++-
 lib/Kconfig.debug   |2 +-
 6 files changed, 34 insertions(+), 84 deletions(-)

diff --git a/drivers/cxl/core/pmem.c b/drivers/cxl/core/pmem.c
index 58dc6fba3130..c3d7e6ce3fdf 100644
--- a/drivers/cxl/core/pmem.c
+++ b/drivers/cxl/core/pmem.c
@@ -127,10 +127,10 @@ static void unregister_nvb(void *_cxl_nvb)
 * work to flush. Once the state has been changed to 'dead' then no new
 * work can be queued by user-triggered bind.
 */
-   cxl_device_lock(&cxl_nvb->dev);
+   device_lock(&cxl_nvb->dev);
flush = cxl_nvb->state != CXL_NVB_NEW;
cxl_nvb->state = CXL_NVB_DEAD;
-   cxl_device_unlock(&cxl_nvb->dev);
+   device_unlock(&cxl_nvb->dev);
 
/*
 * Even though the device core will trigger device_release_driver()
diff --git a/drivers/cxl/core/port.c b/drivers/cxl/core/port.c
index d48d44e911c1..44006d8eb64d 100644
--- a/drivers/cxl/core/port.c
+++ b/drivers/cxl/core/port.c
@@ -350,10 +350,10 @@ static void cxl_port_release(struct device *dev)
struct cxl_port *port = to_cxl_port(dev);
struct cxl_ep *ep, *_e;
 
-   cxl_device_lock(dev);
+   device_lock(dev);
list_for_each_entry_safe(ep, _e, &port->endpoints, list)
cxl_ep_release(ep);
-   cxl_device_unlock(dev);
+   device_unlock(dev);
ida_free(&cxl_port_ida, port->id);
kfree(port);
 }
@@ -592,7 +592,7 @@ static int match_root_child(struct device *dev, const void 
*match)
return 0;
 
port = to_cxl_port(dev);
-   cxl_device_lock(dev);
+   device_lock(dev);
list_for_each_entry(dport, &port->dports, list) {
iter = match;
while (iter) {
@@ -602,7 +602,7 @@ static int match_root_child(struct device *dev, const void 
*match)
}
}
 out:
-   cxl_device_unlock(dev);
+   device_unlock(dev);
 
return !!iter;
 }
@@ -661,13 +661,13 @@ static int add_dport(struct cxl_port *port, struct 
cxl_dport *new)
 static void cond_cxl_root_lock(struct cxl_port *port)
 {
if (is_cxl_root(port))
-   cxl_device_lock(&port->dev);
+   device_lock(&port->dev);
 }
 
 static void cond_cxl_root_unlock(struct cxl_port *port)
 {
if (is_cxl_root(port))
-   cxl_device_unlock(&port->dev);
+   device_unlock(&port->dev);
 }
 
 static void cxl_dport_remove(void *data)
@@ -775,15 +775,15 @@ static int add_ep(struct cxl_port *port, struct cxl_ep 
*new)
 {
struct cxl_ep *dup;
 
-   cxl_device_lock(&port->dev);
+   device_lock(&port->dev);
if (port->dead) {
-   cxl_device_unlock(&port->dev);
+   device_unlock(&port->dev);
return -ENXIO;
}
dup = find_ep(port, new->ep);
if (!dup)
list_add_tail(&new->list, &port->endpoints);
-   cxl_device_unlock(&port->dev);
+   device_unlock(&port->dev);
 
return dup ? -EEXIST : 0;
 }
@@ -893,12 +893,12 @@ static void delete_endpoint(void *data)
goto out;
parent = &parent_port->dev;
 
-   cxl_device_lock(parent);
+   device_lock(parent);
if (parent->driver && endpoint->uport) {
devm_release_action(parent, cxl_unlink_uport, endpoint);
devm_release_action(parent, unregister_port, endpoint);
}
-   cxl_device_unlock(parent);
+   device_unlock(parent);
put_device(parent);
 out:
put_device(&endpoint->dev);
@@ -956,7 +956,7 @@ static void cxl_detach_ep(void *data)
}
 
parent_port = to_cxl_port(port->dev.parent);
-   cxl_device_lock(&parent_port->dev);
+   device_lock(&parent_port->dev);
if (!parent_port->dev.driver) {
/*
 * The bottom-up race to delete the port lost to a
@@ -964,12 +964,12 @@ static void cxl_detach_ep(void *data)
 * parent_port ->remove() will have cleaned up all
 * descendants.
 */
-   cxl_device_unlock(&parent_port->dev);
+   device_unlock(&parent_port->dev);
put_device(&port->dev);
continue;
}
 
-   cxl_device_lock(&port->dev);
+