Commit 762a03e2 authored by Roland Dreier's avatar Roland Dreier

[IB] ucm: quiet sparse warnings

Make ctx_id_mutex and ctx_id_table static to quiet sparse warnings.
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 07d357d0
......@@ -113,8 +113,8 @@ static struct ib_client ucm_client = {
.remove = ib_ucm_remove_one
};
DECLARE_MUTEX(ctx_id_mutex);
DEFINE_IDR(ctx_id_table);
static DECLARE_MUTEX(ctx_id_mutex);
static DEFINE_IDR(ctx_id_table);
static DECLARE_BITMAP(dev_map, IB_UCM_MAX_DEVICES);
static struct ib_ucm_context *ib_ucm_ctx_get(struct ib_ucm_file *file, int id)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment