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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2D385C43217 for ; Fri, 11 Nov 2022 22:47:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234401AbiKKWr1 (ORCPT ); Fri, 11 Nov 2022 17:47:27 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33162 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234570AbiKKWrX (ORCPT ); Fri, 11 Nov 2022 17:47:23 -0500 Received: from mail-wr1-f48.google.com (mail-wr1-f48.google.com [209.85.221.48]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AEE4A60EA6; Fri, 11 Nov 2022 14:47:21 -0800 (PST) Received: by mail-wr1-f48.google.com with SMTP id j15so8161265wrq.3; Fri, 11 Nov 2022 14:47:21 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:cc:to:from:date:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=sI4P7tfn9C8Un92zwS2OcYROGExNgeJbwEJVmkULolM=; b=XhD9vvYH+0A8XgIo3xEu28sS3RYiZt8c3x39NDhAgaTc51GRszbvVCQmcVXJz+8GxI vihszEro12fqF+FIqacabpCIg8J66LAR6Wg9OW4mvLbXmAiC7uMWhTwteTVlEyxLGVDN vouGz/t4j0FZzUhupFruHFNrExTEhHA7ok0Q7XvNk5ZOyXEpvdUAQS9kQ2PIxZLP2h82 3WMuNHYb6fp0lOk86KVDHn3WIVRQrBqTHsU/18bcMiWZoiaZnB42rN3Lz73TtTsE0dxk FkyNHy0H/FhHy8eSCWkzrlB7sU0fIDzPnb3KNz72orhavZrcYLK/inGbmGmmxsxR0BiT lPOQ== X-Gm-Message-State: ANoB5pldBuYJ4FFd4c5eMv6yDSx1a4dk0MFhvmBUsmao8vUKtZ6gdXmN 8igT2ZHRcGw8Fcsgky4+RHU= X-Google-Smtp-Source: AA0mqf6jNKhQiD8pjAi1gZTWIGN2qsj7oY8uWm+3nogLtkHYw6XIWtDQu8FwrItLC8AxrYbf6gCIKw== X-Received: by 2002:adf:f3d0:0:b0:22e:37c1:b225 with SMTP id g16-20020adff3d0000000b0022e37c1b225mr2221431wrp.428.1668206840092; Fri, 11 Nov 2022 14:47:20 -0800 (PST) Received: from liuwe-devbox-debian-v2 ([51.145.34.42]) by smtp.gmail.com with ESMTPSA id s21-20020a1cf215000000b003a6a3595edasm4191067wmc.27.2022.11.11.14.47.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 11 Nov 2022 14:47:19 -0800 (PST) Date: Fri, 11 Nov 2022 22:47:17 +0000 From: Wei Liu To: "Guilherme G. Piccoli" Cc: "Michael Kelley (LINUX)" , Wei Liu , "linux-hyperv@vger.kernel.org" , "bhe@redhat.com" , "kexec@lists.infradead.org" , "pmladek@suse.com" , "akpm@linux-foundation.org" , "linux-kernel@vger.kernel.org" , "netdev@vger.kernel.org" , "x86@kernel.org" , "kernel-dev@igalia.com" , "kernel@gpiccoli.net" , Andrea Parri , Dexuan Cui , Haiyang Zhang , KY Srinivasan , Stephen Hemminger , Tianyu Lan Subject: Re: [PATCH V3 10/11] drivers/hv/vmbus, video/hyperv_fb: Untangle and refactor Hyper-V panic notifiers Message-ID: References: <20220819221731.480795-1-gpiccoli@igalia.com> <20220819221731.480795-11-gpiccoli@igalia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Nov 10, 2022 at 06:32:54PM -0300, Guilherme G. Piccoli wrote: > [Trimming long CC list] > > Hi Wei / Michael, just out of curiosity, did this (and patch 9) ended-up > being queued in hyperv-next? > No. They are not queued. I didn't notice Michael's email and thought they would be picked up by someone else while dealing with the whole series. I will pick them up later. Thanks, Wei. > Thanks in advance, > > > Guilherme > > On 17/10/2022 12:26, Michael Kelley (LINUX) wrote: > > From: Guilherme G. Piccoli Sent: Tuesday, October 4, 2022 10:20 AM > >> > >> On 04/10/2022 13:24, Michael Kelley (LINUX) wrote: > >>> [...] > >>> > >>> Tested this patch in combination with Patch 9 in this series. Verified > >>> that both the panic and die paths work correctly with notification to > >>> Hyper-V via hyperv_report_panic() or via hv_kmsg_dump(). Hyper-V > >>> framebuffer is updated as expected, though I did not reproduce > >>> a case where the ring buffer lock is held. vmbus_initiate_unload() runs > >>> as expected. > >>> > >>> Tested-by: Michael Kelley > >>> > >> > >> Thanks a lot for the tests/review Michael! > >> > >> Do you think Hyper-V folks could add both patches in hv tree? If you > >> prefer, I can re-send them individually. > >> > > > > Wei Liu: Could you pick up Patch 9 and Patch 10 from this series in the > > hyperv-next tree? > > > > Michael > >