Comment out return statement that prevents shares from being initialized correctly
authorAndy Bavier <acb@cs.princeton.edu>
Wed, 2 Feb 2005 22:43:10 +0000 (22:43 +0000)
committerAndy Bavier <acb@cs.princeton.edu>
Wed, 2 Feb 2005 22:43:10 +0000 (22:43 +0000)
kernel/ckrm/ckrm_cpu_monitor.c

index d8c199a..2295c74 100644 (file)
@@ -838,8 +838,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;