Comment out return statement that prevents shares from being initialized correctly
authorAndy Bavier <acb@cs.princeton.edu>
Thu, 27 Jan 2005 22:45:17 +0000 (22:45 +0000)
committerAndy Bavier <acb@cs.princeton.edu>
Thu, 27 Jan 2005 22:45:17 +0000 (22:45 +0000)
kernel/ckrm/ckrm_cpu_monitor.c

index b2d38a3..4a6ea7a 100644 (file)
@@ -841,8 +841,12 @@ static void adjust_lrq_weight(struct ckrm_cpu_class *clsptr, int cpu_online)
                total_pressure += lrq->lrq_load;
        }
 
+#if 1
+#warning "ACB taking out suspicious early return"
+#else
        if (! total_pressure)
                return;
+#endif
        
        class_weight = cpu_class_weight(clsptr) * cpu_online;