Received: by 2002:a25:683:0:0:0:0:0 with SMTP id 125csp242124ybg; Mon, 8 Jun 2020 22:32:14 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy/tBCTpHYZmx0d6ZT3va8AWg++65IHLVbwTnAsHghkpSkROYkeVjreruNsM3zeCKBEsG/l X-Received: by 2002:a17:906:7f94:: with SMTP id f20mr17807592ejr.394.1591680734559; Mon, 08 Jun 2020 22:32:14 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1591680734; cv=none; d=google.com; s=arc-20160816; b=XXNnSB0pRabb0goHW5sOkdLRaF3/fRuWlbWF6WJsa+OhV36L7VENmENG0TaTq4FrXd Brnh2xUpE3g1EO91kYXNbGTyelAMjz/VSuQSuYMHsOFhoLlSOXAZgMCbAZPUo9D3erZT xLQ4E94W+PIhAi1KkaqkBTk7EZOt0k3ND6NuTKWXM5IPWNqMEtVOf8u3yAjOWI/Jx9rm BaQYzigN5+PjsTShO897Qtl47vrS3PwewbNX10NJnnGexNDJ1JHsZu9LC4pYpIICNu7h M3JR/gHVToKx+fksKxm6TOtm7ju6dBair6YD68CbxNN7kWc4GNLugpz6qd1Re/zUxMLw KPag== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:date:message-id:subject:references :in-reply-to:cc:to:from; bh=vPqXsev/VINulMvJ3OvBZiy0rlnkkiq9c5jELSsZLC0=; b=krD7K0+iClTeNXclOdZpn1omBvyWLeU6LxFTDs30+tcZGq1jdkLZe6s5Wmf60p75y1 4m8Nh5ffV7hot2MoBxdp9Mzsvf/UxcQXDxOI1AT/GYvAzQ+ymbCI6EqYalYNZnXQNYu0 IXBAQ5Y77UF0/VPqoVoa1/izj9PSPAnim7TyN23C4nEk5PG8z52f18z9LnSaBJlAsuSH Ar/0D7KiMvJuP+qvDJb+r88fo2fwrhhioWq9sFJ0Ddedo/9gu4pzIYBfXkhcFeuvt8ve KJoA69cT5VyiI4rH9F5o4p9E7iV4iUZyVcM6zBgnhxcFolg0xA1NGpjOah4QmxBQgHL7 El6A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id w17si9880244edt.490.2020.06.08.22.31.52; Mon, 08 Jun 2020 22:32:14 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727929AbgFIF3R (ORCPT + 99 others); Tue, 9 Jun 2020 01:29:17 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39868 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727904AbgFIF3L (ORCPT ); Tue, 9 Jun 2020 01:29:11 -0400 Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A955AC03E969 for ; Mon, 8 Jun 2020 22:29:10 -0700 (PDT) Received: by ozlabs.org (Postfix, from userid 1034) id 49gzF9729kz9sTb; Tue, 9 Jun 2020 15:29:00 +1000 (AEST) From: Michael Ellerman To: Thomas Gleixner , Greg Kroah-Hartman , Nadav Amit , "Gautham R. Shenoy" , Leonardo Bras , Allison Randal , Paul Mackerras , Benjamin Herrenschmidt , Michael Ellerman , Nathan Lynch , Nicholas Piggin Cc: linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org In-Reply-To: <20200518234245.200672-1-leobras.c@gmail.com> References: <20200518234245.200672-1-leobras.c@gmail.com> Subject: Re: [PATCH v6 0/2] Implement reentrant rtas call Message-Id: <159168034552.1381411.5609887094437090637.b4-ty@ellerman.id.au> Date: Tue, 9 Jun 2020 15:29:00 +1000 (AEST) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 18 May 2020 20:42:43 -0300, Leonardo Bras wrote: > Patch 2 implement rtas_call_reentrant() for reentrant rtas-calls: > "ibm,int-on", "ibm,int-off",ibm,get-xive" and "ibm,set-xive", > according to LoPAPR Version 1.1 (March 24, 2016). > > For that, it's necessary that every call uses a different > rtas buffer (rtas_args). Paul Mackerras suggested using the PACA > structure for creating a per-cpu buffer for these calls. > > [...] Applied to powerpc/next. [1/2] powerpc/rtas: Move type/struct definitions from rtas.h into rtas-types.h https://git.kernel.org/powerpc/c/783a015b747f606e803b798eb8b50c73c548691d [2/2] powerpc/rtas: Implement reentrant rtas call https://git.kernel.org/powerpc/c/b664db8e3f976d9233cc9ea5e3f8a8c0bcabeb48 cheers