File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -874,7 +874,7 @@ struct root_domain {
874
874
* - More than one runnable task
875
875
* - Running task is misfit
876
876
*/
877
- int overload ;
877
+ int overloaded ;
878
878
879
879
/* Indicate one or more cpus over-utilized (tipping point) */
880
880
int overutilized ;
@@ -932,13 +932,13 @@ extern void sched_put_rd(struct root_domain *rd);
932
932
933
933
static inline int get_rd_overload (struct root_domain * rd )
934
934
{
935
- return READ_ONCE (rd -> overload );
935
+ return READ_ONCE (rd -> overloaded );
936
936
}
937
937
938
938
static inline void set_rd_overload (struct root_domain * rd , int status )
939
939
{
940
940
if (get_rd_overload (rd ) != status )
941
- WRITE_ONCE (rd -> overload , status );
941
+ WRITE_ONCE (rd -> overloaded , status );
942
942
}
943
943
944
944
#ifdef HAVE_RT_PUSH_IPI
You can’t perform that action at this time.
0 commit comments