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 8F317A00C2 for ; Tue, 8 Mar 2022 11:21:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 62E9C4068B; Tue, 8 Mar 2022 11:21:28 +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 0878E4068B for ; Tue, 8 Mar 2022 11:21:26 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1646734886; 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=oMrJy0vbsltEcbXAiAlvHxGEwvYDFUw3skC5lpQOZMM=; b=ZrA2m8uNilAth0v0Q2A4I7Hq4LDEXHunJXhDulDXjC7N/SJFdqoQOgvJxYWh4pgGs1F5n+ ybrcnbdIw9FHeH+fTdg7VxfaTFF8AEMZ03X4mFQTpyTGxfDdLBDjNNq8kambtvfWDgHSov KQB2IJVZdogTsEY78TQ1Ef5HoGwVwSM= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-416-moL5dXB1P8i8muzlpHrp0Q-1; Tue, 08 Mar 2022 05:21:23 -0500 X-MC-Unique: moL5dXB1P8i8muzlpHrp0Q-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 749501091DA1; Tue, 8 Mar 2022 10:21:22 +0000 (UTC) Received: from rh.Home (unknown [10.39.195.190]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3BBE960C41; Tue, 8 Mar 2022 10:21:19 +0000 (UTC) From: Kevin Traynor To: stable@dpdk.org Cc: bluca@debian.org, Kevin Traynor , Ali Alnubani Subject: [PATCH 20.11] examples/qos_sched: fix compile failure Date: Tue, 8 Mar 2022 10:21:09 +0000 Message-Id: <20220308102109.161501-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=ktraynor@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: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org rte_bitops.h is needed for RTE_BIT64. Bugzilla ID: 955 Fixes: a7aa7d8812ab ("examples/qos_sched: fix core mask overflow") Reported-by: Ali Alnubani Signed-off-by: Kevin Traynor --- examples/qos_sched/args.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/qos_sched/args.c b/examples/qos_sched/args.c index 891cfb2809..d8e39957d8 100644 --- a/examples/qos_sched/args.c +++ b/examples/qos_sched/args.c @@ -12,4 +12,5 @@ #include +#include #include #include -- 2.34.1