The commit is pushed to "branch-rh8-4.18.0-80.1.2.vz8.3.x-ovz" and will appear 
at https://src.openvz.org/scm/ovz/vzkernel.git
after rh8-4.18.0-80.1.2.vz8.3.4
------>
commit 8fcafa22c742be7c63e7b4e0dbb5528b529fc728
Author: Kirill Tkhai <ktk...@virtuozzo.com>
Date:   Thu Apr 2 17:12:52 2020 +0300

    mm/memcontrol.c: export mem_cgroup_is_root()
    
    This will be used in next patch.
    
    Link: 
http://lkml.kernel.org/r/153063064347.1818.1987011484100392706.stgit@localhost.localdomain
    Signed-off-by: Kirill Tkhai <ktk...@virtuozzo.com>
    
    Acked-by: Vladimir Davydov <vdavydov....@gmail.com>
    Tested-by: Shakeel Butt <shake...@google.com>
    Cc: Al Viro <v...@zeniv.linux.org.uk>
    Cc: Andrey Ryabinin <aryabi...@virtuozzo.com>
    Cc: Chris Wilson <ch...@chris-wilson.co.uk>
    Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
    Cc: Guenter Roeck <li...@roeck-us.net>
    Cc: "Huang, Ying" <ying.hu...@intel.com>
    Cc: Johannes Weiner <han...@cmpxchg.org>
    Cc: Josef Bacik <jba...@fb.com>
    Cc: Li RongQing <lirongq...@baidu.com>
    Cc: Matthew Wilcox <wi...@infradead.org>
    Cc: Matthias Kaehlcke <m...@chromium.org>
    Cc: Mel Gorman <mgor...@techsingularity.net>
    Cc: Michal Hocko <mho...@kernel.org>
    Cc: Minchan Kim <minc...@kernel.org>
    Cc: Philippe Ombredanne <pombreda...@nexb.com>
    Cc: Roman Gushchin <g...@fb.com>
    Cc: Sahitya Tummala <stumm...@codeaurora.org>
    Cc: Stephen Rothwell <s...@canb.auug.org.au>
    Cc: Tetsuo Handa <penguin-ker...@i-love.sakura.ne.jp>
    Cc: Thomas Gleixner <t...@linutronix.de>
    Cc: Waiman Long <long...@redhat.com>
    Signed-off-by: Andrew Morton <a...@linux-foundation.org>
    Signed-off-by: Linus Torvalds <torva...@linux-foundation.org>
    (cherry picked from commit dfd2f10ccfd7e6bd2a096eaf42e76a7229776322)
    Signed-off-by: Andrey Ryabinin <aryabi...@virtuozzo.com>
---
 include/linux/memcontrol.h | 10 ++++++++++
 mm/memcontrol.c            |  5 -----
 2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h
index 86e97cd353d1..2b6323b13bc5 100644
--- a/include/linux/memcontrol.h
+++ b/include/linux/memcontrol.h
@@ -331,6 +331,11 @@ struct mem_cgroup {
 
 extern struct mem_cgroup *root_mem_cgroup;
 
+static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
+{
+       return (memcg == root_mem_cgroup);
+}
+
 static inline bool mem_cgroup_disabled(void)
 {
        return !cgroup_subsys_enabled(memory_cgrp_subsys);
@@ -814,6 +819,11 @@ void mem_cgroup_split_huge_fixup(struct page *head);
 
 struct mem_cgroup;
 
+static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
+{
+       return true;
+}
+
 static inline bool mem_cgroup_disabled(void)
 {
        return true;
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index f8998aaf8528..54c3ed698a79 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -265,11 +265,6 @@ struct cgroup_subsys_state *vmpressure_to_css(struct 
vmpressure *vmpr)
        return &container_of(vmpr, struct mem_cgroup, vmpressure)->css;
 }
 
-static inline bool mem_cgroup_is_root(struct mem_cgroup *memcg)
-{
-       return (memcg == root_mem_cgroup);
-}
-
 #ifdef CONFIG_MEMCG_KMEM
 /*
  * This will be the memcg's index in each cache's ->memcg_params.memcg_caches.
_______________________________________________
Devel mailing list
Devel@openvz.org
https://lists.openvz.org/mailman/listinfo/devel

Reply via email to