From: Bart Van Assche Date: Tue, 10 Jan 2017 19:15:41 +0000 (-0800) Subject: IB/rxe: Constify the pool name X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2bec3baded4ff46f51c1810e0dd8dfda55f05451;p=linux.git IB/rxe: Constify the pool name Signed-off-by: Bart Van Assche Reviewed-by: Leon Romanovsky Reviewed-by: Andrew Boyer Cc: Moni Shoua Signed-off-by: Doug Ledford --- diff --git a/drivers/infiniband/sw/rxe/rxe_pool.c b/drivers/infiniband/sw/rxe/rxe_pool.c index d723947a8542d..238a6be00d467 100644 --- a/drivers/infiniband/sw/rxe/rxe_pool.c +++ b/drivers/infiniband/sw/rxe/rxe_pool.c @@ -102,7 +102,7 @@ struct rxe_type_info rxe_type_info[RXE_NUM_TYPES] = { }, }; -static inline char *pool_name(struct rxe_pool *pool) +static inline const char *pool_name(struct rxe_pool *pool) { return rxe_type_info[pool->type].name; } diff --git a/drivers/infiniband/sw/rxe/rxe_pool.h b/drivers/infiniband/sw/rxe/rxe_pool.h index 4d04830adcaef..7846ccc58b25d 100644 --- a/drivers/infiniband/sw/rxe/rxe_pool.h +++ b/drivers/infiniband/sw/rxe/rxe_pool.h @@ -58,7 +58,7 @@ enum rxe_elem_type { }; struct rxe_type_info { - char *name; + const char *name; size_t size; void (*cleanup)(void *obj); enum rxe_pool_flags flags;