From patchwork Wed Oct 14 08:14:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 80684 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E168DA04B7; Wed, 14 Oct 2020 10:15:19 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AB0C31DBC7; Wed, 14 Oct 2020 10:15:17 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id DDA7F1DB81 for ; Wed, 14 Oct 2020 10:15:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1602663313; 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=/lVW6/P22OWyBIhoad+3V40FsFpjTMA5LbstxNqlLU8=; b=IlpvA/eEvWKtAvULB7N7ANE65SMCTlpy0ofyo8amnp2QEKdHTTZoV9iTfVgAnKT0ptjomY TJmjzmfmWu9m4BYTSrS6r9Q7kEkLitXMSXtZ+0SKRH+9KpYPxWS4UilnxIRx80SERgBcC6 fVRZdXaZ/XZlL9tcQoMLy7tQOspHcOs= 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-584-xiPYBjzyMJiU-iZGLiDSYw-1; Wed, 14 Oct 2020 04:15:11 -0400 X-MC-Unique: xiPYBjzyMJiU-iZGLiDSYw-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 347DF801F9A; Wed, 14 Oct 2020 08:15:10 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.194.175]) by smtp.corp.redhat.com (Postfix) with ESMTP id B9DC16EF55; Wed, 14 Oct 2020 08:15:07 +0000 (UTC) From: David Marchand To: dev@dpdk.org, radu.nicolau@intel.com Cc: Jerin Jacob , Ruifeng Wang , Jan Viktorin , Bruce Richardson , Konstantin Ananyev Date: Wed, 14 Oct 2020 10:14:29 +0200 Message-Id: <20201014081430.31349-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 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 Subject: [dpdk-dev] [PATCH] eal: add experimental tags for write combining store X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Only marking the doxygen declarations is not enough. Arch specific implementations must be tagged as well since there is no common declaration of those inlines. Fixes: 8a00dfc738fe ("eal: add write combining store") Signed-off-by: David Marchand Reviewed-by: Ruifeng Wang Reviewed-by: Radu Nicolau