From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 90003A034F; Fri, 12 Nov 2021 14:56:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4F447410E3; Fri, 12 Nov 2021 14:56:58 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 0288640692 for ; Fri, 12 Nov 2021 14:56:56 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1636725416; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=sjMn5vLdH4fQAIFCdrayoWGZ14H6kN8fUWxJI94nMQE=; b=RBFhqqqlzK8BLRuM9h878W1NJiaQ8GZIzTLBNlAviZ19nMVp+qIsjwItTdY8fYETuhUBrh G8dE8jAQKhaK3aQ47dyKQ7hwFOGF/+4BbuFyTWLmpz9FGOhgIGXNbqZwsdf2oDUFS/TaZg EfJByogXFyG4RsjoMCjPOo20nktPI7Q= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-250-ksE63G_TPfmk4wjlY0namg-1; Fri, 12 Nov 2021 08:56:55 -0500 X-MC-Unique: ksE63G_TPfmk4wjlY0namg-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 5BE0A100CCC0; Fri, 12 Nov 2021 13:56:54 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.42]) by smtp.corp.redhat.com (Postfix) with ESMTP id B21E75D6D5; Fri, 12 Nov 2021 13:56:52 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Cristian Dumitrescu , Jasvinder Singh Subject: [PATCH] test/red: fix typo in comment Date: Fri, 12 Nov 2021 14:56:45 +0100 Message-Id: <20211112135645.23942-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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 is probably due a s/red/rte_red/ a long time ago. Fixes: de3cfa2c9823 ("sched: initial import") Signed-off-by: David Marchand --- app/test/test_red.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_red.c b/app/test/test_red.c index e973f3131e..05936cfee8 100644 --- a/app/test/test_red.c +++ b/app/test/test_red.c @@ -1049,7 +1049,7 @@ static struct test_queue ft6_tqueue = { static struct test_config func_test6_config = { .ifname = "functional test 6 interface", .msg = "functional test 6 : use several queues (each with its own run-time data),\n" - " use several RED configurations (such that each configuration is sharte_red by multiple queues),\n" + " use several RED configurations (such that each configuration is shared by multiple queues),\n" " increase average queue size to target level,\n" " dequeue all packets until queue is empty,\n" " confirm that average queue size is computed correctly while queue is empty\n" -- 2.23.0