Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751390AbdH3HeA (ORCPT ); Wed, 30 Aug 2017 03:34:00 -0400 Received: from mx2.suse.de ([195.135.220.15]:50474 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751263AbdH3Hd7 (ORCPT ); Wed, 30 Aug 2017 03:33:59 -0400 Subject: Re: [RFC PATCH v2 1/7] x86/paravirt: Add pv_idle_ops to paravirt ops To: Konrad Rzeszutek Wilk , Yang Zhang , xen-devel@lists.xensource.com, Boris Ostrovsky Cc: linux-kernel@vger.kernel.org, kvm@vger.kernel.org, wanpeng.li@hotmail.com, mst@redhat.com, pbonzini@redhat.com, tglx@linutronix.de, rkrcmar@redhat.com, dmatlack@google.com, agraf@suse.de, peterz@infradead.org, linux-doc@vger.kernel.org, Quan Xu , Jeremy Fitzhardinge , Chris Wright , Alok Kataria , Rusty Russell , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org, Andy Lutomirski , "Kirill A. Shutemov" , Pan Xinhui , Kees Cook , virtualization@lists.linux-foundation.org References: <1504007201-12904-1-git-send-email-yang.zhang.wz@gmail.com> <1504007201-12904-2-git-send-email-yang.zhang.wz@gmail.com> <20170829135548.GG32175@char.us.oracle.com> From: Juergen Gross Message-ID: Date: Wed, 30 Aug 2017 09:33:52 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20170829135548.GG32175@char.us.oracle.com> Content-Type: text/plain; charset=utf-8 Content-Language: de-DE Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1985 Lines: 50 On 29/08/17 15:55, Konrad Rzeszutek Wilk wrote: > On Tue, Aug 29, 2017 at 11:46:35AM +0000, Yang Zhang wrote: >> So far, pv_idle_ops.poll is the only ops for pv_idle. .poll is called in >> idle path which will polling for a while before we enter the real idle >> state. >> >> In virtualization, idle path includes several heavy operations >> includes timer access(LAPIC timer or TSC deadline timer) which will hurt >> performance especially for latency intensive workload like message >> passing task. The cost is mainly come from the vmexit which is a >> hardware context switch between VM and hypervisor. Our solution is to >> poll for a while and do not enter real idle path if we can get the >> schedule event during polling. >> >> Poll may cause the CPU waste so we adopt a smart polling mechanism to >> reduce the useless poll. >> >> Signed-off-by: Yang Zhang >> Signed-off-by: Quan Xu >> Cc: Jeremy Fitzhardinge >> Cc: Chris Wright >> Cc: Alok Kataria >> Cc: Rusty Russell >> Cc: Thomas Gleixner >> Cc: Ingo Molnar >> Cc: "H. Peter Anvin" >> Cc: x86@kernel.org >> Cc: Peter Zijlstra >> Cc: Andy Lutomirski >> Cc: "Kirill A. Shutemov" >> Cc: Pan Xinhui >> Cc: Kees Cook >> Cc: virtualization@lists.linux-foundation.org >> Cc: linux-kernel@vger.kernel.org > > Adding xen-devel. > > Juergen, we really should replace Jeremy's name with xen-devel or > your name.. I wouldn't mind being added. What does Jeremy think of being removed? > Wasn't there an patch by you that took some of the > mainternship over it? I added include/linux/hypervisor.h to the PARAVIRT section and offered to maintain it in case the PARAVIRT maintainers didn't want to. Juergen