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 X-Spam-Level: X-Spam-Status: No, score=-13.0 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 687BBC433F5 for ; Thu, 2 Sep 2021 20:07:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 41B8861053 for ; Thu, 2 Sep 2021 20:07:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345121AbhIBUIS (ORCPT ); Thu, 2 Sep 2021 16:08:18 -0400 Received: from mail.kernel.org ([198.145.29.99]:44984 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233953AbhIBUIR (ORCPT ); Thu, 2 Sep 2021 16:08:17 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id A0C4D61054; Thu, 2 Sep 2021 20:07:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1630613238; bh=tYscjmV/SE2cy2KDjyzy3g/X52Wea0qDq3fqBKNWuNQ=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=fTN3VPWRc735zfdP8tmfBQ+IoD2+ouXDmfcS1GpRnSsLD6sPWlFA7fwRC9opsgP/l MGJ7XqoniolqgL3JDviY0gMQ43Kb10rOnrLYEhQIyXrHjdXp40ga0iq1g+ZWsXXuqj nuRUi37nOOmbbazpdZTPAbVuFHZmHRrGeIDEv+Z0= Date: Thu, 2 Sep 2021 13:07:18 -0700 From: Andrew Morton To: Sebastian Andrzej Siewior Cc: Mel Gorman , Thomas Gleixner , Ingo Molnar , Vlastimil Babka , Hugh Dickins , Linux-MM , Linux-RT-Users , LKML Subject: Re: [PATCH 1/1] mm/vmstat: Protect per cpu variables with preempt disable on RT Message-Id: <20210902130718.2a3f03fc6cf87d190d7c9e34@linux-foundation.org> In-Reply-To: <20210831164546.t7b6ksblzhsmm6jr@linutronix.de> References: <20210805160019.1137-1-mgorman@techsingularity.net> <20210805160019.1137-2-mgorman@techsingularity.net> <20210831164546.t7b6ksblzhsmm6jr@linutronix.de> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.31; 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, 31 Aug 2021 18:45:46 +0200 Sebastian Andrzej Siewior wrote: > On 2021-08-05 17:00:19 [+0100], Mel Gorman wrote: > > mm/vmstat.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 48 insertions(+) > > The version in RT also covered the functions > __count_vm_event() > __count_vm_events() > > in include/linux/vmstat.h. Were they dropped by mistake or on purpose? > ?