|
@@ -160,6 +160,7 @@ static void wil_vring_free(struct wil6210_priv *wil, struct vring *vring,
|
|
|
struct device *dev = wil_to_dev(wil);
|
|
|
size_t sz = vring->size * sizeof(vring->va[0]);
|
|
|
|
|
|
+ lockdep_assert_held(&wil->mutex);
|
|
|
if (tx) {
|
|
|
int vring_index = vring - wil->vring_tx;
|
|
|
|
|
@@ -749,6 +750,7 @@ int wil_vring_init_tx(struct wil6210_priv *wil, int id, int size,
|
|
|
|
|
|
wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
|
|
|
cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
|
|
|
+ lockdep_assert_held(&wil->mutex);
|
|
|
|
|
|
if (vring->va) {
|
|
|
wil_err(wil, "Tx ring [%d] already allocated\n", id);
|
|
@@ -821,6 +823,7 @@ int wil_vring_init_bcast(struct wil6210_priv *wil, int id, int size)
|
|
|
|
|
|
wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
|
|
|
cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
|
|
|
+ lockdep_assert_held(&wil->mutex);
|
|
|
|
|
|
if (vring->va) {
|
|
|
wil_err(wil, "Tx ring [%d] already allocated\n", id);
|
|
@@ -872,7 +875,7 @@ void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
|
|
|
struct vring *vring = &wil->vring_tx[id];
|
|
|
struct vring_tx_data *txdata = &wil->vring_tx_data[id];
|
|
|
|
|
|
- WARN_ON(!mutex_is_locked(&wil->mutex));
|
|
|
+ lockdep_assert_held(&wil->mutex);
|
|
|
|
|
|
if (!vring->va)
|
|
|
return;
|