}
 
        if (cqe > rxe->attr.max_cqe) {
-               pr_warn("cqe(%d) > max_cqe(%d)\n",
-                       cqe, rxe->attr.max_cqe);
+               pr_debug("cqe(%d) > max_cqe(%d)\n",
+                               cqe, rxe->attr.max_cqe);
                goto err1;
        }
 
        if (cq) {
                count = queue_count(cq->queue, QUEUE_TYPE_TO_CLIENT);
                if (cqe < count) {
-                       pr_warn("cqe(%d) < current # elements in queue (%d)",
-                               cqe, count);
+                       pr_debug("cqe(%d) < current # elements in queue (%d)",
+                                       cqe, count);
                        goto err1;
                }
        }
 
        if (rkey_is_mw(rkey)) {
                mw = rxe_lookup_mw(qp, access, rkey);
                if (!mw) {
-                       pr_err("%s: no MW matches rkey %#x\n", __func__, rkey);
+                       pr_debug("%s: no MW matches rkey %#x\n",
+                                       __func__, rkey);
                        state = RESPST_ERR_RKEY_VIOLATION;
                        goto err;
                }
        } else {
                mr = lookup_mr(qp->pd, access, rkey, RXE_LOOKUP_REMOTE);
                if (!mr) {
-                       pr_err("%s: no MR matches rkey %#x\n", __func__, rkey);
+                       pr_debug("%s: no MR matches rkey %#x\n",
+                                       __func__, rkey);
                        state = RESPST_ERR_RKEY_VIOLATION;
                        goto err;
                }
 
                case RESPST_ERROR:
                        qp->resp.goto_error = 0;
-                       pr_warn("qp#%d moved to error state\n", qp_num(qp));
+                       pr_debug("qp#%d moved to error state\n", qp_num(qp));
                        rxe_qp_error(qp);
                        goto exit;