aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/sched.c7
-rw-r--r--kernel/sched_fair.c89
2 files changed, 92 insertions, 4 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index a2d55144bd9c..044260a9418d 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -260,6 +260,8 @@ struct cfs_bandwidth {
260 260
261 int idle, timer_active; 261 int idle, timer_active;
262 struct hrtimer period_timer; 262 struct hrtimer period_timer;
263 struct list_head throttled_cfs_rq;
264
263#endif 265#endif
264}; 266};
265 267
@@ -399,6 +401,9 @@ struct cfs_rq {
399 int runtime_enabled; 401 int runtime_enabled;
400 u64 runtime_expires; 402 u64 runtime_expires;
401 s64 runtime_remaining; 403 s64 runtime_remaining;
404
405 int throttled;
406 struct list_head throttled_list;
402#endif 407#endif
403#endif 408#endif
404}; 409};
@@ -441,6 +446,7 @@ static void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
441 cfs_b->quota = RUNTIME_INF; 446 cfs_b->quota = RUNTIME_INF;
442 cfs_b->period = ns_to_ktime(default_cfs_period()); 447 cfs_b->period = ns_to_ktime(default_cfs_period());
443 448
449 INIT_LIST_HEAD(&cfs_b->throttled_cfs_rq);
444 hrtimer_init(&cfs_b->period_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); 450 hrtimer_init(&cfs_b->period_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
445 cfs_b->period_timer.function = sched_cfs_period_timer; 451 cfs_b->period_timer.function = sched_cfs_period_timer;
446} 452}
@@ -448,6 +454,7 @@ static void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
448static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) 454static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq)
449{ 455{
450 cfs_rq->runtime_enabled = 0; 456 cfs_rq->runtime_enabled = 0;
457 INIT_LIST_HEAD(&cfs_rq->throttled_list);
451} 458}
452 459
453/* requires cfs_b->lock, may release to reprogram timer */ 460/* requires cfs_b->lock, may release to reprogram timer */
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c
index 9d1adbd0b615..72c9d4ed5991 100644
--- a/kernel/sched_fair.c
+++ b/kernel/sched_fair.c
@@ -1291,7 +1291,8 @@ static void __refill_cfs_bandwidth_runtime(struct cfs_bandwidth *cfs_b)
1291 cfs_b->runtime_expires = now + ktime_to_ns(cfs_b->period); 1291 cfs_b->runtime_expires = now + ktime_to_ns(cfs_b->period);
1292} 1292}
1293 1293
1294static void assign_cfs_rq_runtime(struct cfs_rq *cfs_rq) 1294/* returns 0 on failure to allocate runtime */
1295static int assign_cfs_rq_runtime(struct cfs_rq *cfs_rq)
1295{ 1296{
1296 struct task_group *tg = cfs_rq->tg; 1297 struct task_group *tg = cfs_rq->tg;
1297 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg); 1298 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg);
@@ -1332,6 +1333,8 @@ static void assign_cfs_rq_runtime(struct cfs_rq *cfs_rq)
1332 */ 1333 */
1333 if ((s64)(expires - cfs_rq->runtime_expires) > 0) 1334 if ((s64)(expires - cfs_rq->runtime_expires) > 0)
1334 cfs_rq->runtime_expires = expires; 1335 cfs_rq->runtime_expires = expires;
1336
1337 return cfs_rq->runtime_remaining > 0;
1335} 1338}
1336 1339
1337/* 1340/*
@@ -1378,7 +1381,12 @@ static void __account_cfs_rq_runtime(struct cfs_rq *cfs_rq,
1378 if (likely(cfs_rq->runtime_remaining > 0)) 1381 if (likely(cfs_rq->runtime_remaining > 0))
1379 return; 1382 return;
1380 1383
1381 assign_cfs_rq_runtime(cfs_rq); 1384 /*
1385 * if we're unable to extend our runtime we resched so that the active
1386 * hierarchy can be throttled
1387 */
1388 if (!assign_cfs_rq_runtime(cfs_rq) && likely(cfs_rq->curr))
1389 resched_task(rq_of(cfs_rq)->curr);
1382} 1390}
1383 1391
1384static __always_inline void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, 1392static __always_inline void account_cfs_rq_runtime(struct cfs_rq *cfs_rq,
@@ -1390,6 +1398,47 @@ static __always_inline void account_cfs_rq_runtime(struct cfs_rq *cfs_rq,
1390 __account_cfs_rq_runtime(cfs_rq, delta_exec); 1398 __account_cfs_rq_runtime(cfs_rq, delta_exec);
1391} 1399}
1392 1400
1401static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
1402{
1403 return cfs_rq->throttled;
1404}
1405
1406static __used void throttle_cfs_rq(struct cfs_rq *cfs_rq)
1407{
1408 struct rq *rq = rq_of(cfs_rq);
1409 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
1410 struct sched_entity *se;
1411 long task_delta, dequeue = 1;
1412
1413 se = cfs_rq->tg->se[cpu_of(rq_of(cfs_rq))];
1414
1415 /* account load preceding throttle */
1416 update_cfs_load(cfs_rq, 0);
1417
1418 task_delta = cfs_rq->h_nr_running;
1419 for_each_sched_entity(se) {
1420 struct cfs_rq *qcfs_rq = cfs_rq_of(se);
1421 /* throttled entity or throttle-on-deactivate */
1422 if (!se->on_rq)
1423 break;
1424
1425 if (dequeue)
1426 dequeue_entity(qcfs_rq, se, DEQUEUE_SLEEP);
1427 qcfs_rq->h_nr_running -= task_delta;
1428
1429 if (qcfs_rq->load.weight)
1430 dequeue = 0;
1431 }
1432
1433 if (!se)
1434 rq->nr_running -= task_delta;
1435
1436 cfs_rq->throttled = 1;
1437 raw_spin_lock(&cfs_b->lock);
1438 list_add_tail_rcu(&cfs_rq->throttled_list, &cfs_b->throttled_cfs_rq);
1439 raw_spin_unlock(&cfs_b->lock);
1440}
1441
1393/* 1442/*
1394 * Responsible for refilling a task_group's bandwidth and unthrottling its 1443 * Responsible for refilling a task_group's bandwidth and unthrottling its
1395 * cfs_rqs as appropriate. If there has been no activity within the last 1444 * cfs_rqs as appropriate. If there has been no activity within the last
@@ -1425,6 +1474,11 @@ out_unlock:
1425#else 1474#else
1426static void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, 1475static void account_cfs_rq_runtime(struct cfs_rq *cfs_rq,
1427 unsigned long delta_exec) {} 1476 unsigned long delta_exec) {}
1477
1478static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
1479{
1480 return 0;
1481}
1428#endif 1482#endif
1429 1483
1430/************************************************** 1484/**************************************************
@@ -1503,7 +1557,17 @@ enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags)
1503 break; 1557 break;
1504 cfs_rq = cfs_rq_of(se); 1558 cfs_rq = cfs_rq_of(se);
1505 enqueue_entity(cfs_rq, se, flags); 1559 enqueue_entity(cfs_rq, se, flags);
1560
1561 /*
1562 * end evaluation on encountering a throttled cfs_rq
1563 *
1564 * note: in the case of encountering a throttled cfs_rq we will
1565 * post the final h_nr_running increment below.
1566 */
1567 if (cfs_rq_throttled(cfs_rq))
1568 break;
1506 cfs_rq->h_nr_running++; 1569 cfs_rq->h_nr_running++;
1570
1507 flags = ENQUEUE_WAKEUP; 1571 flags = ENQUEUE_WAKEUP;
1508 } 1572 }
1509 1573
@@ -1511,11 +1575,15 @@ enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags)
1511 cfs_rq = cfs_rq_of(se); 1575 cfs_rq = cfs_rq_of(se);
1512 cfs_rq->h_nr_running++; 1576 cfs_rq->h_nr_running++;
1513 1577
1578 if (cfs_rq_throttled(cfs_rq))
1579 break;
1580
1514 update_cfs_load(cfs_rq, 0); 1581 update_cfs_load(cfs_rq, 0);
1515 update_cfs_shares(cfs_rq); 1582 update_cfs_shares(cfs_rq);
1516 } 1583 }
1517 1584
1518 inc_nr_running(rq); 1585 if (!se)
1586 inc_nr_running(rq);
1519 hrtick_update(rq); 1587 hrtick_update(rq);
1520} 1588}
1521 1589
@@ -1535,6 +1603,15 @@ static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int flags)
1535 for_each_sched_entity(se) { 1603 for_each_sched_entity(se) {
1536 cfs_rq = cfs_rq_of(se); 1604 cfs_rq = cfs_rq_of(se);
1537 dequeue_entity(cfs_rq, se, flags); 1605 dequeue_entity(cfs_rq, se, flags);
1606
1607 /*
1608 * end evaluation on encountering a throttled cfs_rq
1609 *
1610 * note: in the case of encountering a throttled cfs_rq we will
1611 * post the final h_nr_running decrement below.
1612 */
1613 if (cfs_rq_throttled(cfs_rq))
1614 break;
1538 cfs_rq->h_nr_running--; 1615 cfs_rq->h_nr_running--;
1539 1616
1540 /* Don't dequeue parent if it has other entities besides us */ 1617 /* Don't dequeue parent if it has other entities besides us */
@@ -1557,11 +1634,15 @@ static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int flags)
1557 cfs_rq = cfs_rq_of(se); 1634 cfs_rq = cfs_rq_of(se);
1558 cfs_rq->h_nr_running--; 1635 cfs_rq->h_nr_running--;
1559 1636
1637 if (cfs_rq_throttled(cfs_rq))
1638 break;
1639
1560 update_cfs_load(cfs_rq, 0); 1640 update_cfs_load(cfs_rq, 0);
1561 update_cfs_shares(cfs_rq); 1641 update_cfs_shares(cfs_rq);
1562 } 1642 }
1563 1643
1564 dec_nr_running(rq); 1644 if (!se)
1645 dec_nr_running(rq);
1565 hrtick_update(rq); 1646 hrtick_update(rq);
1566} 1647}
1567 1648