/**
  * dump_tasks - dump current memory state of all system tasks
- * @mem: target memory controller
+ * @mem: current's memory controller, if constrained
  *
  * Dumps the current memory state of all system tasks, excluding kernel threads.
  * State information includes task's pid, uid, tgid, vm size, rss, cpu, oom_adj
        printk(KERN_INFO "[ pid ]   uid  tgid total_vm      rss cpu oom_adj "
               "name\n");
        for_each_process(p) {
-               /*
-                * We don't have is_global_init() check here, because the old
-                * code do that. printing init process is not big matter. But
-                * we don't hope to make unnecessary compatibility breaking.
-                */
                if (p->flags & PF_KTHREAD)
                        continue;
                if (mem && !task_in_mem_cgroup(p, mem))
                task = find_lock_task_mm(p);
                if (!task) {
                        /*
-                        * Probably oom vs task-exiting race was happen and ->mm
-                        * have been detached. thus there's no need to report
+                        * This is a kthread or all of p's threads have already
+                        * detached their mm's.  There's no need to report
                         * them; they can't be oom killed anyway.
                         */
                        continue;