* delayed on that resource such that nobody is advancing and the CPU
  * goes idle. This leaves both workload and CPU unproductive.
  *
- * (Naturally, the FULL state doesn't exist for the CPU resource.)
+ * Naturally, the FULL state doesn't exist for the CPU resource at the
+ * system level, but exist at the cgroup level, means all non-idle tasks
+ * in a cgroup are delayed on the CPU resource which used by others outside
+ * of the cgroup or throttled by the cgroup cpu.max configuration.
  *
  *     SOME = nr_delayed_tasks != 0
  *     FULL = nr_delayed_tasks != 0 && nr_running_tasks == 0
                return tasks[NR_MEMSTALL] && !tasks[NR_RUNNING];
        case PSI_CPU_SOME:
                return tasks[NR_RUNNING] > tasks[NR_ONCPU];
+       case PSI_CPU_FULL:
+               return tasks[NR_RUNNING] && !tasks[NR_ONCPU];
        case PSI_NONIDLE:
                return tasks[NR_IOWAIT] || tasks[NR_MEMSTALL] ||
                        tasks[NR_RUNNING];
                }
        }
 
-       if (groupc->state_mask & (1 << PSI_CPU_SOME))
+       if (groupc->state_mask & (1 << PSI_CPU_SOME)) {
                groupc->times[PSI_CPU_SOME] += delta;
+               if (groupc->state_mask & (1 << PSI_CPU_FULL))
+                       groupc->times[PSI_CPU_FULL] += delta;
+       }
 
        if (groupc->state_mask & (1 << PSI_NONIDLE))
                groupc->times[PSI_NONIDLE] += delta;
                group->avg_next_update = update_averages(group, now);
        mutex_unlock(&group->avgs_lock);
 
-       for (full = 0; full < 2 - (res == PSI_CPU); full++) {
+       for (full = 0; full < 2; full++) {
                unsigned long avg[3];
                u64 total;
                int w;