diff options
author | Yuval Shaia <yuval.shaia@oracle.com> | 2017-07-21 22:14:09 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-08-18 21:01:09 +0300 |
commit | 8b62cbd13a245f59282ba27431adf4caa674dd0b (patch) | |
tree | 08641781cc23b19d0ef794d697dca4884f090085 /drivers/infiniband/sw/rxe | |
parent | 83fb1c89e7ee5bb16397b294ccfbd65a9a22e402 (diff) | |
download | linux-8b62cbd13a245f59282ba27431adf4caa674dd0b.tar.xz |
IB/rxe: Convert pr_info to pr_warn
This message is warning so let's print it accordingly.
Signed-off-by: Yuval Shaia <yuval.shaia@oracle.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/sw/rxe')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_av.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_av.c b/drivers/infiniband/sw/rxe/rxe_av.c index 5bddf469361b..f8172eb993cc 100644 --- a/drivers/infiniband/sw/rxe/rxe_av.c +++ b/drivers/infiniband/sw/rxe/rxe_av.c @@ -49,7 +49,7 @@ int rxe_av_chk_attr(struct rxe_dev *rxe, struct rdma_ah_attr *attr) u8 sgid_index = rdma_ah_read_grh(attr)->sgid_index; if (sgid_index > port->attr.gid_tbl_len) { - pr_info("invalid sgid index = %d\n", sgid_index); + pr_warn("invalid sgid index = %d\n", sgid_index); return -EINVAL; } } |