From patchwork Fri Dec 8 14:59:40 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 134966 X-Patchwork-Delegate: thomas@monjalon.net 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 40E9F436AB; Fri, 8 Dec 2023 16:01:03 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E48E04300D; Fri, 8 Dec 2023 16:00:28 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 03901402CC for ; Fri, 8 Dec 2023 16:00:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1702047625; 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: in-reply-to:in-reply-to:references:references; bh=g82KQeIU0TTVlT1MwgtISjaztUhc4O4V5hFVaE9u5mc=; b=CdNE7fmYOSyqkoMKTlM/Md8Xt6LsmMfQsh97Dy4uPzyeJlQpNP0JiYXUPQMG2ghijsAMrC 3LZV7BOCANYoCugCL+BQThyYo/J/q0LMtqXGidVU++WX58jEtMJ6JlFr1VT92N8YOng3ke XA9U/2RfMmjUZ7R4SYDrl+Nvl13gyEE= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-541-NqcM8lgpPVe6KIIwGRMYug-1; Fri, 08 Dec 2023 10:00:22 -0500 X-MC-Unique: NqcM8lgpPVe6KIIwGRMYug-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id CEF10185A783; Fri, 8 Dec 2023 15:00:21 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.122]) by smtp.corp.redhat.com (Postfix) with ESMTP id A1140112131D; Fri, 8 Dec 2023 15:00:20 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, ferruh.yigit@amd.com, bruce.richardson@intel.com, stephen@networkplumber.org, mb@smartsharesystems.com Subject: [RFC v2 06/14] eal/linux: remove log paraphrasing the doc Date: Fri, 8 Dec 2023 15:59:40 +0100 Message-ID: <20231208145950.2184940-7-david.marchand@redhat.com> In-Reply-To: <20231208145950.2184940-1-david.marchand@redhat.com> References: <20231117131824.1977792-1-david.marchand@redhat.com> <20231208145950.2184940-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.3 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 An error log message does not need to paraphrase the DPDK documentation. Signed-off-by: David Marchand Acked-by: Stephen Hemminger Acked-by: Tyler Retzlaff --- lib/eal/linux/eal_timer.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/eal/linux/eal_timer.c b/lib/eal/linux/eal_timer.c index 3a30284e3a..df9ad61ae9 100644 --- a/lib/eal/linux/eal_timer.c +++ b/lib/eal/linux/eal_timer.c @@ -152,11 +152,7 @@ rte_eal_hpet_init(int make_default) } eal_hpet = mmap(NULL, 1024, PROT_READ, MAP_SHARED, fd, 0); if (eal_hpet == MAP_FAILED) { - RTE_LOG(ERR, EAL, "ERROR: Cannot mmap "DEV_HPET"!\n" - "Please enable CONFIG_HPET_MMAP in your kernel configuration " - "to allow HPET support.\n" - "To run without using HPET, unset RTE_LIBEAL_USE_HPET " - "in your build configuration or use '--no-hpet' EAL flag.\n"); + RTE_LOG(ERR, EAL, "ERROR: Cannot mmap "DEV_HPET"!\n"); close(fd); internal_conf->no_hpet = 1; return -1;