OSDN Git Service

IB/mlx5:: pr_err() and mlx5_ib_dbg() strings should end with newlines
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Tue, 26 Sep 2017 06:50:01 +0000 (12:20 +0530)
committerDoug Ledford <dledford@redhat.com>
Wed, 27 Sep 2017 13:17:52 +0000 (09:17 -0400)
pr_err() and mlx5_ib_dbg( messages should terminated with a new-line to
avoid other messages being concatenated.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/mlx5/mr.c

index 0e2789d..92d643a 100644 (file)
@@ -1229,13 +1229,13 @@ struct ib_mr *mlx5_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
                mr = alloc_mr_from_cache(pd, umem, virt_addr, length, ncont,
                                         page_shift, order, access_flags);
                if (PTR_ERR(mr) == -EAGAIN) {
-                       mlx5_ib_dbg(dev, "cache empty for order %d", order);
+                       mlx5_ib_dbg(dev, "cache empty for order %d\n", order);
                        mr = NULL;
                }
        } else if (!MLX5_CAP_GEN(dev->mdev, umr_extended_translation_offset)) {
                if (access_flags & IB_ACCESS_ON_DEMAND) {
                        err = -EINVAL;
-                       pr_err("Got MR registration for ODP MR > 512MB, not supported for Connect-IB");
+                       pr_err("Got MR registration for ODP MR > 512MB, not supported for Connect-IB\n");
                        goto error;
                }
                use_umr = false;