Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751170AbdFBJLp (ORCPT ); Fri, 2 Jun 2017 05:11:45 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:55602 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751126AbdFBJLl (ORCPT ); Fri, 2 Jun 2017 05:11:41 -0400 Date: Fri, 2 Jun 2017 12:11:30 +0300 From: Mike Rapoport To: Andrea Arcangeli Cc: Michal Hocko , Vlastimil Babka , "Kirill A. Shutemov" , Andrew Morton , Arnd Bergmann , "Kirill A. Shutemov" , Pavel Emelyanov , linux-mm , lkml , Linux API Subject: Re: [PATCH] mm: introduce MADV_CLR_HUGEPAGE References: <20170524111800.GD14733@dhcp22.suse.cz> <20170524142735.GF3063@rapoport-lnx> <20170530074408.GA7969@dhcp22.suse.cz> <20170530101921.GA25738@rapoport-lnx> <20170530103930.GB7969@dhcp22.suse.cz> <20170530140456.GA8412@redhat.com> <20170530143941.GK7969@dhcp22.suse.cz> <20170601065302.GA30495@rapoport-lnx> <20170601080909.GD32677@dhcp22.suse.cz> <20170601134522.GE302@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170601134522.GE302@redhat.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-TM-AS-GCONF: 00 x-cbid: 17060209-0040-0000-0000-000003C00E51 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17060209-0041-0000-0000-00002055879A Message-Id: <20170602091129.GH30495@rapoport-lnx> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-06-02_05:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1703280000 definitions=main-1706020170 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1815 Lines: 40 On Thu, Jun 01, 2017 at 03:45:22PM +0200, Andrea Arcangeli wrote: > On Thu, Jun 01, 2017 at 10:09:09AM +0200, Michal Hocko wrote: > > That is a bit surprising. I didn't think that the userfault syscall > > (ioctl) can be faster than a regular #PF but considering that > > __mcopy_atomic bypasses the page fault path and it can be optimized for > > the anon case suggests that we can save some cycles for each page and so > > the cumulative savings can be visible. > > __mcopy_atomic works not just for anonymous memory, hugetlbfs/shmem > are covered too and there are branches to handle those. > > If you were to run more than one precopy pass UFFDIO_COPY shall become > slower than the userland access starting from the second pass. > > At the light of this if CRIU can only do one single pass of precopy, > CRIU is probably better off using UFFDIO_COPY than using prctl or > madvise to temporarily turn off THP. CRIU does memory tracking differently from QEMU. Every round of pre-copy in CRIU means we dump the dirty pages into an image file. The restore then chooses what image file to use. Anyway, we fill the memory only once at restore time, hence UFFDIO_COPY would be better than disabling THP. > With QEMU as opposed we set MADV_HUGEPAGE during precopy on > destination to maximize the THP utilization for all those 2M naturally > aligned guest regions that aren't re-dirtied in the source, so we're > better off without using UFFDIO_COPY in precopy even during the first > pass to avoid the enter/kernel for subpages that are written to > destination in a already instantiated THP. At least until we teach > QEMU to map 2M at once if possible (UFFDIO_COPY would then also > require an enhancement, because currently it won't map THP on the > fly). > > Thanks, > Andrea > -- Sincerely yours, Mike.