mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-04 22:21:23 +00:00
ocfs2: convert to idr_alloc()
Convert to the much saner new idr interface. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Mark Fasheh <mfasheh@suse.com> Acked-by: Joel Becker <jlbec@evilplan.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
4542da631a
commit
6b207ba3eb
@ -304,28 +304,22 @@ static u8 o2net_num_from_nn(struct o2net_node *nn)
|
||||
|
||||
static int o2net_prep_nsw(struct o2net_node *nn, struct o2net_status_wait *nsw)
|
||||
{
|
||||
int ret = 0;
|
||||
int ret;
|
||||
|
||||
do {
|
||||
if (!idr_pre_get(&nn->nn_status_idr, GFP_ATOMIC)) {
|
||||
ret = -EAGAIN;
|
||||
break;
|
||||
}
|
||||
spin_lock(&nn->nn_lock);
|
||||
ret = idr_get_new(&nn->nn_status_idr, nsw, &nsw->ns_id);
|
||||
if (ret == 0)
|
||||
list_add_tail(&nsw->ns_node_item,
|
||||
&nn->nn_status_list);
|
||||
spin_unlock(&nn->nn_lock);
|
||||
} while (ret == -EAGAIN);
|
||||
|
||||
if (ret == 0) {
|
||||
init_waitqueue_head(&nsw->ns_wq);
|
||||
nsw->ns_sys_status = O2NET_ERR_NONE;
|
||||
nsw->ns_status = 0;
|
||||
spin_lock(&nn->nn_lock);
|
||||
ret = idr_alloc(&nn->nn_status_idr, nsw, 0, 0, GFP_ATOMIC);
|
||||
if (ret >= 0) {
|
||||
nsw->ns_id = ret;
|
||||
list_add_tail(&nsw->ns_node_item, &nn->nn_status_list);
|
||||
}
|
||||
spin_unlock(&nn->nn_lock);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return ret;
|
||||
init_waitqueue_head(&nsw->ns_wq);
|
||||
nsw->ns_sys_status = O2NET_ERR_NONE;
|
||||
nsw->ns_status = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void o2net_complete_nsw_locked(struct o2net_node *nn,
|
||||
|
Loading…
Reference in New Issue
Block a user