This knob is deprecated and shouldn't be
                                      used.
  memory.oom_control                 set/show oom controls.
+                                     This knob is deprecated and shouldn't be
+                                     used.
  memory.numa_stat                   show the number of memory usage per numa
                                     node
  memory.kmem.limit_in_bytes          Deprecated knob to set and read the kernel
 
 .. _cgroup-v1-memory-oom-control:
 
-10. OOM Control
-===============
+10. OOM Control (DEPRECATED)
+============================
+
+THIS IS DEPRECATED!
 
 memory.oom_control file is for OOM notification and other controls.
 
 
                event->register_event = mem_cgroup_usage_register_event;
                event->unregister_event = mem_cgroup_usage_unregister_event;
        } else if (!strcmp(name, "memory.oom_control")) {
+               pr_warn_once("oom_control is deprecated and will be removed. "
+                            "Please report your usecase to linux-mm-@kvack.org"
+                            " if you depend on this functionality. \n");
                event->register_event = mem_cgroup_oom_register_event;
                event->unregister_event = mem_cgroup_oom_unregister_event;
        } else if (!strcmp(name, "memory.pressure_level")) {
 {
        struct mem_cgroup *memcg = mem_cgroup_from_css(css);
 
+       pr_warn_once("oom_control is deprecated and will be removed. "
+                    "Please report your usecase to linux-mm-@kvack.org if you "
+                    "depend on this functionality. \n");
+
        /* cannot set to root cgroup and only 0 and 1 are allowed */
        if (mem_cgroup_is_root(memcg) || !((val == 0) || (val == 1)))
                return -EINVAL;