RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1423432 - Consider update migrate_disable/enable on kernel-rt
Summary: Consider update migrate_disable/enable on kernel-rt
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: kernel-rt
Version: 7.4
Hardware: x86_64
OS: Linux
medium
medium
Target Milestone: rc
: ---
Assignee: Daniel Bristot de Oliveira
QA Contact: Qiao Zhao
URL:
Whiteboard:
Depends On: 1428028
Blocks: 1410158 1429676
TreeView+ depends on / blocked
 
Reported: 2017-02-17 10:18 UTC by Daniel Bristot de Oliveira
Modified: 2019-05-15 14:29 UTC (History)
3 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
: 1429676 (view as bug list)
Environment:
Last Closed: 2019-05-15 14:29:59 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)
removed code, do we need it?! (3.32 KB, text/plain)
2017-02-17 10:18 UTC, Daniel Bristot de Oliveira
no flags Details
[PATCH 1/5] sched: Move p->nr_cpus_allowed check to select_task_rq() (3.03 KB, patch)
2017-02-27 22:11 UTC, Daniel Bristot de Oliveira
no flags Details | Diff
[PATCH 2/5] sched: fixup migrate disable (all tasks were bound to CPU0) (15.87 KB, patch)
2017-02-27 22:13 UTC, Daniel Bristot de Oliveira
no flags Details | Diff
[PATCH 3/5] sched: fix ->nr_cpus_allowed = 1 transcription error during migrate_disable() cleanup (1.19 KB, patch)
2017-02-27 22:15 UTC, Daniel Bristot de Oliveira
no flags Details | Diff
[PATCH 4/5] kernel: softirq: unlock with irqs on (1.25 KB, patch)
2017-02-27 22:16 UTC, Daniel Bristot de Oliveira
no flags Details | Diff
[PATCH 5/5] kernel: migrate_disable() do fastpath in atomic & irqs-off (1.37 KB, patch)
2017-02-27 22:19 UTC, Daniel Bristot de Oliveira
no flags Details | Diff
Subject: [PATCH 1/3] Revert "sched: fixup migrate disable (all tasks were (14.63 KB, application/mbox)
2017-06-12 17:57 UTC, Daniel Bristot de Oliveira
no flags Details
[PATCH 2/3] Revert "kernel: softirq: unlock with irqs on" (1.05 KB, application/mbox)
2017-06-12 17:58 UTC, Daniel Bristot de Oliveira
no flags Details
[PATCH 3/3] Revert "kernel: migrate_disable() do fastpath in atomic & irqs-off" (1.21 KB, application/mbox)
2017-06-12 17:59 UTC, Daniel Bristot de Oliveira
no flags Details

Description Daniel Bristot de Oliveira 2017-02-17 10:18:13 UTC
Created attachment 1251865 [details]
removed code, do we need it?!

Description of problem:
Since v4.4-x-rt stable kernel the migrate_disable/enable operations were modified.

The code now is simpler than it used to be, but we need to be sure that the simplification does not depend on another part of the kernel, mainly the control of the task's cpumask.

Version-Release number of selected component (if applicable):
RHEL-RT kernel based on RHEL 7.3 based

How reproducible:
No bug on the current code.

Actual results:
It works.

Expected results:
It should work with the newer code.

Additional info:
The main problem so far is that a considerable part of the code was removed. See attachment.

Comment 2 Daniel Bristot de Oliveira 2017-02-23 18:47:00 UTC
The major part of the changes come from this patch:

Backporting it and some more.

--------------- %< --------------
commit 55c041cf3750894df6f304ad0489c777e27402e7
Author: Sebastian Andrzej Siewior <bigeasy>
Date:   Thu Jan 21 15:58:56 2016 +0100

    sched: fixup migrate disable (all tasks were bound to CPU0)
    
    Includes:
    |From: Thomas Gleixner <tglx>
    |
    |Subject: [PATCH] sched: use tsk_cpus_allowed() instead of accessing ->cpus_allowed
    |
    |Use the future-safe accessor for struct task_struct's.
    |
    |Signed-off-by: Thomas Gleixner <tglx>
    |Signed-off-by: Sebastian Andrzej Siewior <bigeasy>
    
    and
    
    |From: Thomas Gleixner <tglx>
    |Subject: [PATCH] sched: provide a tsk_nr_cpus_allowed() helper
    |
    |tsk_nr_cpus_allowed() is an accessor for task->nr_cpus_allowed which allows
    |us to change the representation of ->nr_cpus_allowed if required.
    |
    |Signed-off-by: Thomas Gleixner <tglx>
    |Signed-off-by: Sebastian Andrzej Siewior <bigeasy>
    
    and the folded changes from introduce_migrate_disable_cpu_light.patch.
    
    Signed-off-by: Sebastian Andrzej Siewior <bigeasy>
--------------- >% ---------------

Comment 3 Daniel Bristot de Oliveira 2017-02-27 22:11:34 UTC
Created attachment 1258194 [details]
[PATCH 1/5] sched: Move p->nr_cpus_allowed check to select_task_rq()

        commit 6c1d9410f007a26d13173cf17204cfd965f49b83
        From: Wanpeng Li <wanpeng.li.com>
        Date: Wed, 5 Nov 2014 09:14:37 +0800
        Subject: sched: Move p->nr_cpus_allowed check to select_task_rq()

        Move the p->nr_cpus_allowed check into kernel/sched/core.c: select_task_rq().
        This change will make fair.c, rt.c, and deadline.c all start with the
        same logic.

        Suggested-and-Acked-by: Steven Rostedt <rostedt>
        Signed-off-by: Wanpeng Li <wanpeng.li.com>
        Signed-off-by: Peter Zijlstra (Intel) <peterz>
        Cc: "pang.xunlei" <pang.xunlei>
        Cc: Linus Torvalds <torvalds>
        Link: http://lkml.kernel.org/r/1415150077-59053-1-git-send-email-wanpeng.li@linux.intel.com
        Signed-off-by: Ingo Molnar <mingo>

Signed-off-by: Daniel Bristot de Oliveira <bristot>

Comment 4 Daniel Bristot de Oliveira 2017-02-27 22:13:34 UTC
Created attachment 1258195 [details]
[PATCH 2/5] sched: fixup migrate disable (all tasks were bound to CPU0)

        commit 55c041cf3750894df6f304ad0489c777e27402e7
        Author: Sebastian Andrzej Siewior <bigeasy>
        Date:   Thu Jan 21 15:58:56 2016 +0100
        Subject: sched: fixup migrate disable (all tasks were bound to CPU0)

        Includes:
        |From: Thomas Gleixner <tglx>
        |
        |Subject: [PATCH] sched: use tsk_cpus_allowed() instead of accessing ->cpus_allowed
        |
        |Use the future-safe accessor for struct task_struct's.
        |
        |Signed-off-by: Thomas Gleixner <tglx>
        |Signed-off-by: Sebastian Andrzej Siewior <bigeasy>

        and

        |From: Thomas Gleixner <tglx>
        |Subject: [PATCH] sched: provide a tsk_nr_cpus_allowed() helper
        |
        |tsk_nr_cpus_allowed() is an accessor for task->nr_cpus_allowed which allows
        |us to change the representation of ->nr_cpus_allowed if required.
        |
        |Signed-off-by: Thomas Gleixner <tglx>
        |Signed-off-by: Sebastian Andrzej Siewior <bigeasy>

        and the folded changes from introduce_migrate_disable_cpu_light.patch.

        Signed-off-by: Sebastian Andrzej Siewior <bigeasy>

Signed-off-by: Daniel Bristot de Oliveira <bristot>

Comment 5 Daniel Bristot de Oliveira 2017-02-27 22:15:34 UTC
Created attachment 1258196 [details]
[PATCH 3/5] sched: fix ->nr_cpus_allowed = 1 transcription error during migrate_disable() cleanup

        commit b3b36ee61c780407737a321007a24cfe9c3668a7
        Author: Mike Galbraith <umgwanakikbuti>
        Date:   Sat Jan 23 08:11:53 2016 +0100
        Subject: sched: fix ->nr_cpus_allowed = 1 transcription error during migrate_disable() cleanup

        Setting p->nr_cpus_allowed accidentally wandered into migrate_disable()
        during the cleanup - kill it.

        Signed-off-by: Mike Galbraith <umgwanakikbuti>
        Signed-off-by: Sebastian Andrzej Siewior <bigeasy>

Signed-off-by: Daniel Bristot de Oliveira <bristot>

Comment 6 Daniel Bristot de Oliveira 2017-02-27 22:16:58 UTC
Created attachment 1258197 [details]
[PATCH 4/5] kernel: softirq: unlock with irqs on

        commit f848b439cd995a2016422fa0c08daff9e8bb45f7
        Author: Sebastian Andrzej Siewior <bigeasy>
        Date:   Tue Feb 9 18:17:18 2016 +0100
        Subject: kernel: softirq: unlock with irqs on

        kernel: softirq: unlock with irqs on

        We unlock the lock while the interrupts are off. This isn't a problem
        now but will get because the migrate_disable() + enable are not
        symmetrical in regard to the status of interrupts.

        Signed-off-by: Sebastian Andrzej Siewior <bigeasy>

Signed-off-by: Daniel Bristot de Oliveira <bristot>

Comment 7 Daniel Bristot de Oliveira 2017-02-27 22:19:04 UTC
Created attachment 1258198 [details]
[PATCH 5/5] kernel: migrate_disable() do fastpath in atomic &  irqs-off

        commit d09adb58ff92f87f3d2823f23c269c9ce241dd69
        Author: Sebastian Andrzej Siewior <bigeasy>
        Date:   Tue Feb 9 18:18:01 2016 +0100
        Subject: kernel: migrate_disable() do fastpath in atomic & irqs-off

        With interrupts off it makes no sense to do the long path since we can't
        leave the CPU anyway. Also we might end up in a recursion with lockdep.

        Signed-off-by: Sebastian Andrzej Siewior <bigeasy>

Signed-off-by: Daniel Bristot de Oliveira <bristot>

Comment 12 Daniel Bristot de Oliveira 2017-06-12 17:52:34 UTC
There is a problem in the updated version of the
migrate_disable()/enable() implementation backported in this patch.

The problem is the following:

In the new behavior, when a task is attached to the rt runqueue, it is
checked if it either can run in more than one CPU, or if it is with
migration disable. If either check is true, the rt_rq->rt_nr_migratory
counter is not increased. The counter increases otherwise.

When the task is detached, the same check is done. If either check is
true, the rt_rq->rt_nr_migratory counter is not decreased. The counter
decreases otherwise.

One important thing is that, migrate disable/enable does not touch this
counter for tasks attached to the -rt rq. So suppose the following chain
of events.

Assumptions:
Task A is the only runnable task in A              Task B runs in the CPU B
rt_nr_migratory is 0, so.                          Task B has RT priority
Task A can run on all CPUS.                        B is running
A is running                                       
Task A runs on CFS (non-rt)

        CPU A/TASK A                            CPU B/TASK B
A takes the rt mutex X                                .
A disables migration                                  .
           .                             B rt task tries to take the rt mutex X
           .                             As it is locked by A:
           .                               A inherits the rt priority of B
           .                               A is dequeued from CFS RQ of CPU A
           .                               A is enqueued in the RT RQ of CPU A
           .                               As migration is disabled:
           .                               rt_nr_migratory in A is not increased
           .
A enables migration
A releases the rt mutex {
  A returns to its original priority
  A ask to be dequeued from RT RQ {
    As migration is now enabled and it can run on all CPUS {
       rt_nr_migratory should be decreased
       As it is 0, rt_nr_migratory under flows.
    }
}

The rt_nr_migratory value must be at least 0, and that is the cause
of the BUG().

This variable is important because it notifies if there are more than one
runnable & migratable task in the runqueue. If there are more than one
tasks, the rt_rq is set as overloaded, and this tries to migrate some
tasks. This rule is important to keep the scheduler working conserving,
that is in a system with M CPUs, the M highest priority tasks should be
running.

Comment 13 Daniel Bristot de Oliveira 2017-06-12 17:57:37 UTC
Created attachment 1287084 [details]
Subject: [PATCH 1/3] Revert "sched: fixup migrate disable (all tasks were

This reverts commit c3d80fe97a84a8d137b93e61b2ccbca974022d84.

Signed-off-by: Daniel Bristot de Oliveira <bristot>

Comment 14 Daniel Bristot de Oliveira 2017-06-12 17:58:31 UTC
Created attachment 1287085 [details]
[PATCH 2/3] Revert "kernel: softirq: unlock with irqs on"

This reverts commit 93bc0e814e212229047d2b5c9690493ef8d9da2e.

Signed-off-by: Daniel Bristot de Oliveira <bristot>

Comment 15 Daniel Bristot de Oliveira 2017-06-12 17:59:31 UTC
Created attachment 1287086 [details]
[PATCH 3/3] Revert "kernel: migrate_disable() do fastpath in atomic & irqs-off"

This reverts commit 334af746c8f6bebc99a9687b144e14c250f5d6ec.

Signed-off-by: Daniel Bristot de Oliveira <bristot>

Comment 16 Daniel Bristot de Oliveira 2017-06-14 14:09:37 UTC
Returning to assigned, we have the bug reported in the BZ1441552. I checked and this bug is also present upstream, and I am working on it.

-- Daniel

Comment 20 Daniel Bristot de Oliveira 2017-08-09 17:04:14 UTC
The maintainer replied saying he will apply the patch to the next -rt release.

-- Daniel

Comment 24 Daniel Bristot de Oliveira 2019-05-15 14:29:59 UTC
We thought on backporting this as a proactive action, but since we created, no real problem occurred to justify this BZ to become a priority. So, let's close this BZ... Feel free to open it if any problem justifies it.


Note You need to log in before you can comment on or make changes to this bug.