提交 e7b88a8a 编写于 作者: Y Yafang Shao 提交者: zhongjiang-ali

psi: Move PF_MEMSTALL out of task->flags

task #28327019

commit 1066d1b6974e095d5a6c472ad9180a957b496cd6 upstream

The task->flags is a 32-bits flag, in which 31 bits have already been
consumed. So it is hardly to introduce other new per process flag.
Currently there're still enough spaces in the bit-field section of
task_struct, so we can define the memstall state as a single bit in
task_struct instead.
This patch also removes an out-of-date comment pointed by Matthew.
Suggested-by: NJohannes Weiner <hannes@cmpxchg.org>
Signed-off-by: NYafang Shao <laoar.shao@gmail.com>
Signed-off-by: NPeter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: NJohannes Weiner <hannes@cmpxchg.org>
Link: https://lkml.kernel.org/r/1584408485-1921-1-git-send-email-laoar.shao@gmail.comSigned-off-by: Nzhongjiang-ali <zhongjiang-ali@linux.alibaba.com>
Reviewed-by: NXunlei Pang <xlpang@linux.alibaba.com>
上级 0e5c5cd8
...@@ -762,9 +762,12 @@ struct task_struct { ...@@ -762,9 +762,12 @@ struct task_struct {
unsigned no_cgroup_migration:1; unsigned no_cgroup_migration:1;
#endif #endif
#ifdef CONFIG_BLK_CGROUP #ifdef CONFIG_BLK_CGROUP
/* to be used once the psi infrastructure lands upstream. */
unsigned use_memdelay:1; unsigned use_memdelay:1;
#endif #endif
#ifdef CONFIG_PSI
/* Stalled due to lack of memory */
unsigned in_memstall:1;
#endif
unsigned long atomic_flags; /* Flags requiring atomic access. */ unsigned long atomic_flags; /* Flags requiring atomic access. */
...@@ -1472,7 +1475,6 @@ extern struct pid *cad_pid; ...@@ -1472,7 +1475,6 @@ extern struct pid *cad_pid;
#define PF_KTHREAD 0x00200000 /* I am a kernel thread */ #define PF_KTHREAD 0x00200000 /* I am a kernel thread */
#define PF_RANDOMIZE 0x00400000 /* Randomize virtual address space */ #define PF_RANDOMIZE 0x00400000 /* Randomize virtual address space */
#define PF_SWAPWRITE 0x00800000 /* Allowed to write to swap */ #define PF_SWAPWRITE 0x00800000 /* Allowed to write to swap */
#define PF_MEMSTALL 0x01000000 /* Stalled due to lack of memory */
#define PF_NO_SETAFFINITY 0x04000000 /* Userland is not allowed to meddle with cpus_allowed */ #define PF_NO_SETAFFINITY 0x04000000 /* Userland is not allowed to meddle with cpus_allowed */
#define PF_MCE_EARLY 0x08000000 /* Early kill for mce process policy */ #define PF_MCE_EARLY 0x08000000 /* Early kill for mce process policy */
#define PF_IO_WORKER 0x20000000 /* Task is an IO worker */ #define PF_IO_WORKER 0x20000000 /* Task is an IO worker */
......
...@@ -876,17 +876,17 @@ void psi_memstall_enter(unsigned long *flags) ...@@ -876,17 +876,17 @@ void psi_memstall_enter(unsigned long *flags)
if (static_branch_likely(&psi_disabled)) if (static_branch_likely(&psi_disabled))
return; return;
*flags = current->flags & PF_MEMSTALL; *flags = current->in_memstall;
if (*flags) if (*flags)
return; return;
/* /*
* PF_MEMSTALL setting & accounting needs to be atomic wrt * in_memstall setting & accounting needs to be atomic wrt
* changes to the task's scheduling state, otherwise we can * changes to the task's scheduling state, otherwise we can
* race with CPU migration. * race with CPU migration.
*/ */
rq = this_rq_lock_irq(&rf); rq = this_rq_lock_irq(&rf);
current->flags |= PF_MEMSTALL; current->in_memstall = 1;
psi_task_change(current, 0, TSK_MEMSTALL); psi_task_change(current, 0, TSK_MEMSTALL);
rq_unlock_irq(rq, &rf); rq_unlock_irq(rq, &rf);
...@@ -909,13 +909,13 @@ void psi_memstall_leave(unsigned long *flags) ...@@ -909,13 +909,13 @@ void psi_memstall_leave(unsigned long *flags)
if (*flags) if (*flags)
return; return;
/* /*
* PF_MEMSTALL clearing & accounting needs to be atomic wrt * in_memstall clearing & accounting needs to be atomic wrt
* changes to the task's scheduling state, otherwise we could * changes to the task's scheduling state, otherwise we could
* race with CPU migration. * race with CPU migration.
*/ */
rq = this_rq_lock_irq(&rf); rq = this_rq_lock_irq(&rf);
current->flags &= ~PF_MEMSTALL; current->in_memstall = 0;
psi_task_change(current, TSK_MEMSTALL, 0); psi_task_change(current, TSK_MEMSTALL, 0);
rq_unlock_irq(rq, &rf); rq_unlock_irq(rq, &rf);
...@@ -981,7 +981,7 @@ void cgroup_move_task(struct task_struct *task, struct css_set *to) ...@@ -981,7 +981,7 @@ void cgroup_move_task(struct task_struct *task, struct css_set *to)
} else if (task->in_iowait) } else if (task->in_iowait)
task_flags = TSK_IOWAIT; task_flags = TSK_IOWAIT;
if (task->flags & PF_MEMSTALL) if (task->in_memstall)
task_flags |= TSK_MEMSTALL; task_flags |= TSK_MEMSTALL;
if (task_flags) if (task_flags)
......
...@@ -70,7 +70,7 @@ static inline void psi_enqueue(struct task_struct *p, bool wakeup) ...@@ -70,7 +70,7 @@ static inline void psi_enqueue(struct task_struct *p, bool wakeup)
return; return;
if (!wakeup || p->sched_psi_wake_requeue) { if (!wakeup || p->sched_psi_wake_requeue) {
if (p->flags & PF_MEMSTALL) if (p->in_memstall)
set |= TSK_MEMSTALL; set |= TSK_MEMSTALL;
if (p->sched_psi_wake_requeue) if (p->sched_psi_wake_requeue)
p->sched_psi_wake_requeue = 0; p->sched_psi_wake_requeue = 0;
...@@ -90,7 +90,7 @@ static inline void psi_dequeue(struct task_struct *p, bool sleep) ...@@ -90,7 +90,7 @@ static inline void psi_dequeue(struct task_struct *p, bool sleep)
return; return;
if (!sleep) { if (!sleep) {
if (p->flags & PF_MEMSTALL) if (p->in_memstall)
clear |= TSK_MEMSTALL; clear |= TSK_MEMSTALL;
} else { } else {
/* /*
...@@ -117,14 +117,14 @@ static inline void psi_ttwu_dequeue(struct task_struct *p) ...@@ -117,14 +117,14 @@ static inline void psi_ttwu_dequeue(struct task_struct *p)
* deregister its sleep-persistent psi states from the old * deregister its sleep-persistent psi states from the old
* queue, and let psi_enqueue() know it has to requeue. * queue, and let psi_enqueue() know it has to requeue.
*/ */
if (unlikely(p->in_iowait || (p->flags & PF_MEMSTALL))) { if (unlikely(p->in_iowait || p->in_memstall)) {
struct rq_flags rf; struct rq_flags rf;
struct rq *rq; struct rq *rq;
int clear = 0; int clear = 0;
if (p->in_iowait) if (p->in_iowait)
clear |= TSK_IOWAIT; clear |= TSK_IOWAIT;
if (p->flags & PF_MEMSTALL) if (p->in_memstall)
clear |= TSK_MEMSTALL; clear |= TSK_MEMSTALL;
rq = __task_rq_lock(p, &rf); rq = __task_rq_lock(p, &rf);
...@@ -149,7 +149,7 @@ static inline void psi_task_tick(struct rq *rq) ...@@ -149,7 +149,7 @@ static inline void psi_task_tick(struct rq *rq)
if (static_branch_likely(&psi_disabled)) if (static_branch_likely(&psi_disabled))
return; return;
if (unlikely(rq->curr->flags & PF_MEMSTALL)) if (unlikely(rq->curr->in_memstall))
psi_memstall_tick(rq->curr, cpu_of(rq)); psi_memstall_tick(rq->curr, cpu_of(rq));
} }
#else /* CONFIG_PSI */ #else /* CONFIG_PSI */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册