From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by smtp.subspace.kernel.org (Postfix) with ESMTP id A4B742EF655; Wed, 3 Dec 2025 23:02:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=13.77.154.182 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764802938; cv=none; b=ZvPHK+t/6e8fTY+vw+gephRSSAjT99NB5fMjgFKMH6HG+JTXX3hcrSSlJ8wQwzUVRUlGKeIQbp+yvUFpM6zJvaLBFO6I4AB40KjREHes1VosC9MWdukYS8z+eqxTtTw/Hp/m/36CaAOOjPp1mzPWZBgdvmIU8xbQXVYJ4XU1YLA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764802938; c=relaxed/simple; bh=RGrs6MsFQWg5LHPeywP+JpvrebAanEiS52InEXC1U5I=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=gzG3qlTamYB6aCLuV9HwvJRJY9SPkO36P6Uzy/paEM6+YtNEjGhiVCbxWhh3eB6pylpJtUrgRZ1V2kdrqmey7NCeV4s4ruCe0gBnKoRECV6TNh8+L036IjjRHFZFv/Tih2lnbo88pGEVEk+vPNbikyV0XHOGKRUNlJosMrm4vHo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com; spf=pass smtp.mailfrom=linux.microsoft.com; dkim=pass (1024-bit key) header.d=linux.microsoft.com header.i=@linux.microsoft.com header.b=pafrbO/W; arc=none smtp.client-ip=13.77.154.182 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.microsoft.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.microsoft.com header.i=@linux.microsoft.com header.b="pafrbO/W" Received: from [100.64.161.205] (unknown [52.148.140.42]) by linux.microsoft.com (Postfix) with ESMTPSA id 8C3D92120731; Wed, 3 Dec 2025 15:02:15 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 8C3D92120731 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1764802936; bh=47wu+LxTGUYi0cFlOvrv6e4lnheffuErviB8O+zycrQ=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=pafrbO/W0wdn3igOngA4M4VqgE95ptBpkFhowYOnJ/ixZSp+td7M6kVl+X46pHSfu Sy72dUXKfOJi6evuQosB/vYdcoWuG1YoO0DDf2fijqShPwuLGOy1mf3CLpNuRJI1/6 bHeq7vMSQuyW67QIFSPl1Kd6rfF58I73km7Xuhv8= Message-ID: Date: Wed, 3 Dec 2025 15:02:14 -0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v6 2/3] hyperv: Use reboot notifier to configure sleep state To: Praveen K Paladugu , kys@microsoft.com, haiyangz@microsoft.com, wei.liu@kernel.org, decui@microsoft.com, tglx@linutronix.de, mingo@redhat.com, linux-hyperv@vger.kernel.org, linux-kernel@vger.kernel.org, bp@alien8.de, dave.hansen@linux.intel.com, x86@kernel.org, hpa@zytor.com, arnd@arndb.de Cc: anbelski@linux.microsoft.com, easwar.hariharan@linux.microsoft.com, skinsburskii@linux.microsoft.com References: <20251126215013.11549-1-prapal@linux.microsoft.com> <20251126215013.11549-3-prapal@linux.microsoft.com> Content-Language: en-US From: Nuno Das Neves In-Reply-To: <20251126215013.11549-3-prapal@linux.microsoft.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 11/26/2025 1:49 PM, Praveen K Paladugu wrote: > Configure sleep state information in mshv hypervisor. This sleep state > information from ACPI will be used by hypervisor to poweroff the host. > > Signed-off-by: Praveen K Paladugu > Co-developed-by: Anatol Belski > Signed-off-by: Anatol Belski > Reviewed-by: Easwar Hariharan > --- > arch/x86/hyperv/hv_init.c | 1 + > arch/x86/include/asm/mshyperv.h | 2 + > drivers/hv/mshv_common.c | 80 +++++++++++++++++++++++++++++++++ > 3 files changed, 83 insertions(+) > As Michael mentioned, please fix the bug in the Makefile, and clean up the unnecessary function stubs. Otherwise, it looks good to me. Reviewed-by: Nuno Das Neves