From patchwork Thu Sep 29 12:22:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olivier Matz X-Patchwork-Id: 117141 X-Patchwork-Delegate: maxime.coquelin@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CA6DAA00C4; Thu, 29 Sep 2022 14:22:27 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B998840E5A; Thu, 29 Sep 2022 14:22:27 +0200 (CEST) Received: from mail-wr1-f54.google.com (mail-wr1-f54.google.com [209.85.221.54]) by mails.dpdk.org (Postfix) with ESMTP id 13DD140395 for ; Thu, 29 Sep 2022 14:22:27 +0200 (CEST) Received: by mail-wr1-f54.google.com with SMTP id n10so1893391wrw.12 for ; Thu, 29 Sep 2022 05:22:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind.com; s=google; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date; bh=pxO4RsaLR8ccri9glddpkuRcE0j/QYRxST5treyXCzA=; b=eqczEMphk+C5gUBSi4UqNvvyV4xOyhtcegASG/l2jSJ8LIC/JSxFoQDtN6j7dZo00D UCeUdFI3/SnlGFZ2C3ncwGyFM36RaSRTnQRNDuJuxo/qxOhH1XYtcO25A+Xq4GD5q0r+ LWeGmbpI5CaEuHOX9y/kroD+x9EcqcJsBX1esYYr54QfgXCYydjqnjm/hm+6EYjQZz+G NLb1LYBZkbRGs8JhmX8jDzcVLNUhdHJRuEvr7kVKLAibO2S599q8kOwo4Cj9aJPe5s7r 8AABIaxj5DoeEP0nQxVpdtRgiSexarWD87dhkcqq/czmDbqkgPasfCPE9xfWbx2bacHm jOdQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date; bh=pxO4RsaLR8ccri9glddpkuRcE0j/QYRxST5treyXCzA=; b=llyGukKwgi3tFdFGLedejeqavo42SW3q5UucKxyWcwdRJ8Q7GSyK1l/8Z2YjzG+7kN 2DtpKj3baiR3xmsFu9O0aK5VmbUn6OBbxsRaV/nf2dTcWq13jfVQ8npyUoyQPhZiecZA FuNzaIpDw+Cjbj0/HQ5pt7KksP26UrVId94KgKVzG+UA17YPwqsMdLdTH4HQEmb5sh55 rAvtNBOh79ieSr0YngIRhDWwngB2cN5NQyp7kmj6C9xVnUiEd4HHvzePuuKoUUDzOTB4 tARQPH5eEDplkLaYo18NW/HaWPA2OAlkrOuFr6JZk3A3nrLBxi9rrP1GfbKhTVwboNHO +DRw== X-Gm-Message-State: ACrzQf1MPWamj0VTxj/pcUMdVBir4PYPUyBv4JKXC3A27dkLwMVP9muY rLId4sHftqWlSox64ri51VMZCdUf8LigS8xg X-Google-Smtp-Source: AMsMyM4aFgF4PbBVsV4j7Q4g7q+AWQUH5Gevo5OSkulQ2iqM5/s5F1JzxQRvZXYcGhcwHZXRwhpe4g== X-Received: by 2002:a05:6000:1a8e:b0:22a:f55a:94d6 with SMTP id f14-20020a0560001a8e00b0022af55a94d6mr1990413wry.606.1664454146806; Thu, 29 Sep 2022 05:22:26 -0700 (PDT) Received: from gojira.dev.6wind.com ([185.13.181.2]) by smtp.gmail.com with ESMTPSA id q6-20020adff506000000b0022a839d053csm6513340wro.98.2022.09.29.05.22.26 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 29 Sep 2022 05:22:26 -0700 (PDT) From: Olivier Matz To: dev@dpdk.org Cc: Maxime Coquelin , Chenbo Xia Subject: [PATCH] net/virtio: remove declaration of undefined function Date: Thu, 29 Sep 2022 14:22:18 +0200 Message-Id: <20220929122218.1115-1-olivier.matz@6wind.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This function is not defined, remove its declaration. Fixes: c1f86306a026 ("virtio: add new driver") Signed-off-by: Olivier Matz Reviewed-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- drivers/net/virtio/virtqueue.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/net/virtio/virtqueue.h b/drivers/net/virtio/virtqueue.h index d100ed8762..f5d8b40cad 100644 --- a/drivers/net/virtio/virtqueue.h +++ b/drivers/net/virtio/virtqueue.h @@ -474,10 +474,6 @@ virtqueue_enable_intr(struct virtqueue *vq) virtqueue_enable_intr_split(vq); } -/** - * Dump virtqueue internal structures, for debug purpose only. - */ -void virtqueue_dump(struct virtqueue *vq); /** * Get all mbufs to be freed. */