diff options
author | Kamal Heib <kamalheib1@gmail.com> | 2017-06-15 10:29:06 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-07-24 14:43:12 +0200 |
commit | 61013828f6673fffc6ead0a62d52674ffc1b34dc (patch) | |
tree | 944b2fbe26688be5a5313a3a7126fc94fd93bfe9 /drivers/infiniband/sw/rxe/rxe_task.c | |
parent | IB/rxe: Use DEVICE_ATTR_RO macro to show parent field (diff) | |
download | linux-61013828f6673fffc6ead0a62d52674ffc1b34dc.tar.xz linux-61013828f6673fffc6ead0a62d52674ffc1b34dc.zip |
IB/rxe: Use __func__ to print function's name
Its better to use __func__ to print functions name instead of writing
the name in the print statement.
Signed-off-by: Kamal Heib <kamalh@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/sw/rxe/rxe_task.c')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_task.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_task.c b/drivers/infiniband/sw/rxe/rxe_task.c index d2a14a1bdc7f..ea3810b29273 100644 --- a/drivers/infiniband/sw/rxe/rxe_task.c +++ b/drivers/infiniband/sw/rxe/rxe_task.c @@ -78,7 +78,7 @@ void rxe_do_task(unsigned long data) default: spin_unlock_irqrestore(&task->state_lock, flags); - pr_warn("bad state = %d in rxe_do_task\n", task->state); + pr_warn("%s failed with bad state %d\n", __func__, task->state); return; } @@ -105,7 +105,7 @@ void rxe_do_task(unsigned long data) break; default: - pr_warn("bad state = %d in rxe_do_task\n", + pr_warn("%s failed with bad state %d\n", __func__, task->state); } spin_unlock_irqrestore(&task->state_lock, flags); |