Commit 1ceb25c8 authored by Yuval Shaia's avatar Yuval Shaia Committed by Jason Gunthorpe
Browse files

IB/rxe: Make function rxe_pool_cleanup return void



Since the function always returns 0 make it void.

Signed-off-by: default avatarYuval Shaia <yuval.shaia@oracle.com>
Reviewed-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent c471de14
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -241,7 +241,7 @@ static void rxe_pool_put(struct rxe_pool *pool)
	kref_put(&pool->ref_cnt, rxe_pool_release);
}

int rxe_pool_cleanup(struct rxe_pool *pool)
void rxe_pool_cleanup(struct rxe_pool *pool)
{
	unsigned long flags;

@@ -253,8 +253,6 @@ int rxe_pool_cleanup(struct rxe_pool *pool)
	write_unlock_irqrestore(&pool->pool_lock, flags);

	rxe_pool_put(pool);

	return 0;
}

static u32 alloc_index(struct rxe_pool *pool)
+1 −1
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ int rxe_pool_init(struct rxe_dev *rxe, struct rxe_pool *pool,
		  enum rxe_elem_type type, u32 max_elem);

/* free resources from object pool */
int rxe_pool_cleanup(struct rxe_pool *pool);
void rxe_pool_cleanup(struct rxe_pool *pool);

/* allocate an object from pool */
void *rxe_alloc(struct rxe_pool *pool);