From: Bart Van Assche Date: Mon, 8 Jan 2018 19:00:44 +0000 (-0800) Subject: IB/srpt: Reduce the severity level of a log message X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d9f45ae69ff14e672c9b1d8cb42383d4cc2a6878;p=linux.git IB/srpt: Reduce the severity level of a log message Since the SRQ event message is only useful for debugging purposes, reduce its severity from "informational" to "debug". Signed-off-by: Bart Van Assche Signed-off-by: Doug Ledford --- diff --git a/drivers/infiniband/ulp/srpt/ib_srpt.c b/drivers/infiniband/ulp/srpt/ib_srpt.c index 4fb884c070afe..a71664fe939b7 100644 --- a/drivers/infiniband/ulp/srpt/ib_srpt.c +++ b/drivers/infiniband/ulp/srpt/ib_srpt.c @@ -177,7 +177,7 @@ static void srpt_event_handler(struct ib_event_handler *handler, */ static void srpt_srq_event(struct ib_event *event, void *ctx) { - pr_info("SRQ event %d\n", event->event); + pr_debug("SRQ event %d\n", event->event); } static const char *get_ch_state_name(enum rdma_ch_state s)