From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 33AC9C4741F for ; Mon, 28 Sep 2020 23:30:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EFA4120725 for ; Mon, 28 Sep 2020 23:30:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601335834; bh=pgUIZysIK7lf6lo7USrdfGQn+em4Qyd3aAxmmKkexrw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=vtxemzGzBYaETMd1ZM6OBU04HkrRqhWb1nSPl3tXL16CYlZClRVhZsO0DWJcx8iYW Qr56KXnzdZ/eyvNWQ2v7E9UOMJwB8fhB9OJ1iscXEokf7xYASCgT49DTkH87zyfxlN OfYzFxqnYUTVlIRwz50OXBiQaUS6k3nrFPerJ9bU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727170AbgI1Xac (ORCPT ); Mon, 28 Sep 2020 19:30:32 -0400 Received: from mail.kernel.org ([198.145.29.99]:53580 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726939AbgI1Xab (ORCPT ); Mon, 28 Sep 2020 19:30:31 -0400 Received: from localhost.localdomain (236.31.169.217.in-addr.arpa [217.169.31.236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 2575B2311C; Mon, 28 Sep 2020 22:13:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601331211; bh=pgUIZysIK7lf6lo7USrdfGQn+em4Qyd3aAxmmKkexrw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=O7Hd0Rqb/FjcrbpWzQDN9tO2jA3+L1aBo3Z8mTfjE2WJwvjwa11O3OOCK15N4HOB6 KUnexO3cH0TcDGf8VP/rgq9puXMlr8+8OJzettVB72gowMZ1bZPgM9PgmvcOwlKrxf QjpQA62ygR/O97bSl1lM06udouONZzqX0ykfVZbc= From: Will Deacon To: Gavin Shan , linux-arm-kernel@lists.infradead.org Cc: catalin.marinas@arm.com, kernel-team@android.com, Will Deacon , mark.rutland@arm.com, james.morse@arm.com, shan.gavin@gmail.com, linux-kernel@vger.kernel.org, Jonathan.Cameron@huawei.com Subject: Re: [PATCH v5 00/13] Refactor SDEI client driver Date: Mon, 28 Sep 2020 23:13:21 +0100 Message-Id: <160132634376.1851570.16643738826038417970.b4-ty@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200922130423.10173-1-gshan@redhat.com> References: <20200922130423.10173-1-gshan@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 22 Sep 2020 23:04:10 +1000, Gavin Shan wrote: > This series bases on 5.9.rc5 and extracted from (v4) series of "Refactoring > SDEI client driver", which is prepatory work to support SDEI virtualizaton. > This series can be checkout from github. > > git@github.com:gwshan/linux.git (branch: "sdei_client") > > Testing > ======= > I have the SDEI virtualization code implemented as part of KVM module. > With that, the SDEI event can be registered/unregistered/enabled/disabled. > Also, the SDEI event can be injected from host and the guest handler runs > properly. > > [...] Applied to arm64 (for-next/sdei), thanks! [01/13] firmware: arm_sdei: Remove sdei_is_err() https://git.kernel.org/arm64/c/5735f5158430 [02/13] firmware: arm_sdei: Common block for failing path in sdei_event_create() https://git.kernel.org/arm64/c/119884249fdb [03/13] firmware: arm_sdei: Retrieve event number from event instance https://git.kernel.org/arm64/c/663c0e89c8de [04/13] firmware: arm_sdei: Avoid nested statements in sdei_init() https://git.kernel.org/arm64/c/10fd7c42b795 [05/13] firmware: arm_sdei: Unregister driver on error in sdei_init() https://git.kernel.org/arm64/c/63627cae41e3 [06/13] firmware: arm_sdei: Remove duplicate check in sdei_get_conduit() https://git.kernel.org/arm64/c/bc110fd32281 [07/13] firmware: arm_sdei: Remove redundant error message in sdei_probe() https://git.kernel.org/arm64/c/101119a35ca1 [08/13] firmware: arm_sdei: Remove while loop in sdei_event_register() https://git.kernel.org/arm64/c/1bbc75518503 [09/13] firmware: arm_sdei: Remove while loop in sdei_event_unregister() https://git.kernel.org/arm64/c/b06146b698e6 [10/13] firmware: arm_sdei: Cleanup on cross call function https://git.kernel.org/arm64/c/a27c04e1de87 [11/13] firmware: arm_sdei: Introduce sdei_do_local_call() https://git.kernel.org/arm64/c/f4673625a52c [12/13] firmware: arm_sdei: Remove _sdei_event_register() https://git.kernel.org/arm64/c/d2fc580d2dca [13/13] firmware: arm_sdei: Remove _sdei_event_unregister() https://git.kernel.org/arm64/c/4b2b76cbbc8f Cheers, -- Will https://fixes.arm64.dev https://next.arm64.dev https://will.arm64.dev From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id F1929C2D0A8 for ; Mon, 28 Sep 2020 22:15:02 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7F0DC235F7 for ; Mon, 28 Sep 2020 22:15:02 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="CJAWOwVY"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="O7Hd0Rqb" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7F0DC235F7 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To:Message-Id:Date: Subject:To:From:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=mX8rSf7r6lOxj0P7zF8aYldO3qr3piV5KgwqlAJ2WOs=; b=CJAWOwVYBgPISb3z2gKdUMoLR rQGKLaFMicCPxEIbrlVgD/WN3DuAQfv/RGW/ACOscXBa+lQDvZHOofLVl2aeF2/w6x3s/kMKdt7iS /d0/tFpnq9LB1tRd0UUevK6QSi2DNIWL0onaJa7yhC4MeJoPKCg2jSme6fgrx6EECtEMB4kQXUK4y IPT9hXmeDQek4G1RLmJ7v+dUO58ZEJ9Pz/M+XnTeX0urnIBL9Qy1R9JGwcYpVbG3j+kDCVr3/cw/g rto5Wmxi9fxNygDdVLH7CpjL/Si4CosVop22KGoW7il31+T7pGqjPKgSJAxphNUBkEXJgMtKIIaXs 0+y5KFmMA==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kN1Ot-0001WG-TB; Mon, 28 Sep 2020 22:13:39 +0000 Received: from mail.kernel.org ([198.145.29.99]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kN1Om-0001Ur-Cf for linux-arm-kernel@lists.infradead.org; Mon, 28 Sep 2020 22:13:33 +0000 Received: from localhost.localdomain (236.31.169.217.in-addr.arpa [217.169.31.236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 2575B2311C; Mon, 28 Sep 2020 22:13:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601331211; bh=pgUIZysIK7lf6lo7USrdfGQn+em4Qyd3aAxmmKkexrw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=O7Hd0Rqb/FjcrbpWzQDN9tO2jA3+L1aBo3Z8mTfjE2WJwvjwa11O3OOCK15N4HOB6 KUnexO3cH0TcDGf8VP/rgq9puXMlr8+8OJzettVB72gowMZ1bZPgM9PgmvcOwlKrxf QjpQA62ygR/O97bSl1lM06udouONZzqX0ykfVZbc= From: Will Deacon To: Gavin Shan , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH v5 00/13] Refactor SDEI client driver Date: Mon, 28 Sep 2020 23:13:21 +0100 Message-Id: <160132634376.1851570.16643738826038417970.b4-ty@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200922130423.10173-1-gshan@redhat.com> References: <20200922130423.10173-1-gshan@redhat.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200928_181332_535259_ED5B5DC7 X-CRM114-Status: GOOD ( 13.74 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: mark.rutland@arm.com, Will Deacon , catalin.marinas@arm.com, linux-kernel@vger.kernel.org, james.morse@arm.com, shan.gavin@gmail.com, Jonathan.Cameron@huawei.com, kernel-team@android.com Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Tue, 22 Sep 2020 23:04:10 +1000, Gavin Shan wrote: > This series bases on 5.9.rc5 and extracted from (v4) series of "Refactoring > SDEI client driver", which is prepatory work to support SDEI virtualizaton. > This series can be checkout from github. > > git@github.com:gwshan/linux.git (branch: "sdei_client") > > Testing > ======= > I have the SDEI virtualization code implemented as part of KVM module. > With that, the SDEI event can be registered/unregistered/enabled/disabled. > Also, the SDEI event can be injected from host and the guest handler runs > properly. > > [...] Applied to arm64 (for-next/sdei), thanks! [01/13] firmware: arm_sdei: Remove sdei_is_err() https://git.kernel.org/arm64/c/5735f5158430 [02/13] firmware: arm_sdei: Common block for failing path in sdei_event_create() https://git.kernel.org/arm64/c/119884249fdb [03/13] firmware: arm_sdei: Retrieve event number from event instance https://git.kernel.org/arm64/c/663c0e89c8de [04/13] firmware: arm_sdei: Avoid nested statements in sdei_init() https://git.kernel.org/arm64/c/10fd7c42b795 [05/13] firmware: arm_sdei: Unregister driver on error in sdei_init() https://git.kernel.org/arm64/c/63627cae41e3 [06/13] firmware: arm_sdei: Remove duplicate check in sdei_get_conduit() https://git.kernel.org/arm64/c/bc110fd32281 [07/13] firmware: arm_sdei: Remove redundant error message in sdei_probe() https://git.kernel.org/arm64/c/101119a35ca1 [08/13] firmware: arm_sdei: Remove while loop in sdei_event_register() https://git.kernel.org/arm64/c/1bbc75518503 [09/13] firmware: arm_sdei: Remove while loop in sdei_event_unregister() https://git.kernel.org/arm64/c/b06146b698e6 [10/13] firmware: arm_sdei: Cleanup on cross call function https://git.kernel.org/arm64/c/a27c04e1de87 [11/13] firmware: arm_sdei: Introduce sdei_do_local_call() https://git.kernel.org/arm64/c/f4673625a52c [12/13] firmware: arm_sdei: Remove _sdei_event_register() https://git.kernel.org/arm64/c/d2fc580d2dca [13/13] firmware: arm_sdei: Remove _sdei_event_unregister() https://git.kernel.org/arm64/c/4b2b76cbbc8f Cheers, -- Will https://fixes.arm64.dev https://next.arm64.dev https://will.arm64.dev _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel