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=-8.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 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 893F6C4BA1E for ; Wed, 26 Feb 2020 17:38:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 686C024681 for ; Wed, 26 Feb 2020 17:38:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726974AbgBZRi5 (ORCPT ); Wed, 26 Feb 2020 12:38:57 -0500 Received: from mx2.suse.de ([195.135.220.15]:54604 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726747AbgBZRi5 (ORCPT ); Wed, 26 Feb 2020 12:38:57 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 3B2F9AC66; Wed, 26 Feb 2020 17:38:55 +0000 (UTC) Subject: Re: [PATCH V2 1/4] mm/vma: Add missing VMA flag readable name for VM_SYNC To: Anshuman Khandual , linux-mm@kvack.org, linux-kernel@vger.kernel.org Cc: Steven Rostedt , Ingo Molnar References: <1582520593-30704-1-git-send-email-anshuman.khandual@arm.com> <1582520593-30704-2-git-send-email-anshuman.khandual@arm.com> From: Vlastimil Babka Message-ID: Date: Wed, 26 Feb 2020 18:38:54 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0 MIME-Version: 1.0 In-Reply-To: <1582520593-30704-2-git-send-email-anshuman.khandual@arm.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2/24/20 6:03 AM, Anshuman Khandual wrote: > This just adds the missing readable name for VM_SYNC. > > Cc: Steven Rostedt > Cc: Ingo Molnar > Cc: linux-kernel@vger.kernel.org > Signed-off-by: Anshuman Khandual Acked-by: Vlastimil Babka --- > include/trace/events/mmflags.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/trace/events/mmflags.h b/include/trace/events/mmflags.h > index a1675d43777e..5fb752034386 100644 > --- a/include/trace/events/mmflags.h > +++ b/include/trace/events/mmflags.h > @@ -154,6 +154,7 @@ IF_HAVE_PG_IDLE(PG_idle, "idle" ) > {VM_ACCOUNT, "account" }, \ > {VM_NORESERVE, "noreserve" }, \ > {VM_HUGETLB, "hugetlb" }, \ > + {VM_SYNC, "sync" }, \ > __VM_ARCH_SPECIFIC_1 , \ > {VM_WIPEONFORK, "wipeonfork" }, \ > {VM_DONTDUMP, "dontdump" }, \ >