From patchwork Thu Oct 13 17:51:18 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 9375625 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 15614607FD for ; Thu, 13 Oct 2016 18:23:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0B2E82A167 for ; Thu, 13 Oct 2016 18:23:01 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id F419F2A16D; Thu, 13 Oct 2016 18:23:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3C0462A172 for ; Thu, 13 Oct 2016 18:22:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934917AbcJMSWx (ORCPT ); Thu, 13 Oct 2016 14:22:53 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:55851 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934904AbcJMSWl (ORCPT ); Thu, 13 Oct 2016 14:22:41 -0400 Received: from [83.175.99.196] (helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.85_2 #1 (Red Hat Linux)) id 1bukB4-0002L9-1b for linux-rdma@vger.kernel.org; Thu, 13 Oct 2016 17:52:22 +0000 From: Christoph Hellwig To: linux-rdma@vger.kernel.org Subject: [PATCH 15/32] cxgb4: remove unused function dump_wqe Date: Thu, 13 Oct 2016 19:51:18 +0200 Message-Id: <1476381095-20041-16-git-send-email-hch@lst.de> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1476381095-20041-1-git-send-email-hch@lst.de> References: <1476381095-20041-1-git-send-email-hch@lst.de> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Christoph Hellwig Reviewed-by: Steve Wise --- providers/cxgb4/qp.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/providers/cxgb4/qp.c b/providers/cxgb4/qp.c index 95b459a..376a00a 100644 --- a/providers/cxgb4/qp.c +++ b/providers/cxgb4/qp.c @@ -267,20 +267,6 @@ static int build_rdma_recv(struct c4iw_qp *qhp, union t4_recv_wr *wqe, return 0; } -void dump_wqe(void *arg) -{ - u64 *p = arg; - int len16; - - len16 = be64_to_cpu(*p) & 0xff; - while (len16--) { - printf("%02x: %016llx ", (u8)(unsigned long)p, (long long)be64_to_cpu(*p)); - p++; - printf("%016llx\n", (long long)be64_to_cpu(*p)); - p++; - } -} - static void ring_kernel_db(struct c4iw_qp *qhp, u32 qid, u16 idx) { struct ibv_modify_qp cmd;