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 3968BC64ED6 for ; Tue, 28 Feb 2023 21:24:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229834AbjB1VYc (ORCPT ); Tue, 28 Feb 2023 16:24:32 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41188 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229806AbjB1VY3 (ORCPT ); Tue, 28 Feb 2023 16:24:29 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 076612FCD2 for ; Tue, 28 Feb 2023 13:24:28 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 990AD611BF for ; Tue, 28 Feb 2023 21:24:27 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A3D85C433EF; Tue, 28 Feb 2023 21:24:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1677619467; bh=ZZ6VDeY/xsCqkaulsw/gZPu9JXjETJr9k/0DEh3D0Wg=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=FtiEFc28F1/RbeSVSH7gpAh1Q9rwyo8e+YSnT2lIxicATr6umDQdjSdTGfn1q28JL 9ugDC7drnEh6q10nSTNJ9gIuA1J0N3Qq5+hUMn0/HQ1J5Ft1quUiNR4SGoVWROHhD6 4SxGndn1cYqEZDfdzXoTprg8ZJT/LG4uNLYhJtCA= Date: Tue, 28 Feb 2023 13:24:25 -0800 From: Andrew Morton To: Raghavendra K T Cc: , , Ingo Molnar , Peter Zijlstra , "Mel Gorman" , "David Hildenbrand" , , Bharata B Rao , Disha Talreja Subject: Re: [PATCH V3 0/4] sched/numa: Enhance vma scanning Message-Id: <20230228132425.1e18d47bdc4f406220a4a409@linux-foundation.org> In-Reply-To: References: X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 28 Feb 2023 10:20:18 +0530 Raghavendra K T wrote: > The patchset proposes one of the enhancements to numa vma scanning > suggested by Mel. This is continuation of [3]. > > ... > > include/linux/mm.h | 30 +++++++++++++++++++++ > include/linux/mm_types.h | 9 +++++++ > kernel/fork.c | 2 ++ > kernel/sched/fair.c | 57 ++++++++++++++++++++++++++++++++++++++++ > mm/memory.c | 3 +++ It's unclear (to me) which tree would normally carry these. But there are significant textual conflicts with the "Per-VMA locks" patchset, and there might be functional issues as well. So mm.git would be the better choice. Please can you redo and retest against tomorrow's mm-unstable branch (git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm)? Hopefully the sched developers can take a look and provide feedback. Thanks.