Skip to content
Snippets Groups Projects
Commit cd874422 authored by Drew Fustini's avatar Drew Fustini
Browse files

DO_NOT_MERGE riscv: qos: print trace information when changing sqoscfg

parent 558d68d1
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,8 @@ static inline void __switch_to_sqoscfg(struct task_struct *prev, ...@@ -23,6 +23,8 @@ static inline void __switch_to_sqoscfg(struct task_struct *prev,
thread_sqoscfg = READ_ONCE(next->thread.sqoscfg); thread_sqoscfg = READ_ONCE(next->thread.sqoscfg);
if (thread_sqoscfg != *cpu_sqoscfg_ptr) { if (thread_sqoscfg != *cpu_sqoscfg_ptr) {
trace_printk("DEBUG %s(): next task (%d) has thread.sqoscfg=0x%x, current cpu has sqoscfg=0x%x\n",
__func__, next->pid, thread_sqoscfg, *cpu_sqoscfg_ptr);
*cpu_sqoscfg_ptr = thread_sqoscfg; *cpu_sqoscfg_ptr = thread_sqoscfg;
csr_write(CSR_SQOSCFG, thread_sqoscfg); csr_write(CSR_SQOSCFG, thread_sqoscfg);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment