Re: [PATCH v3] memory tier: consolidate the initialization of memory tiers

2024-07-04 Thread Jonathan Cameron via
On Thu, 4 Jul 2024 07:26:44 + "Ho-Ren (Jack) Chuang" wrote: > The current memory tier initialization process is distributed across > two different functions, memory_tier_init() and memory_tier_late_init(). > This design is hard to maintain. Thus, this patch is proposed to reduce > the possib

Re: [PATCH v3] memory tier: consolidate the initialization of memory tiers

2024-07-04 Thread Huang, Ying
"Ho-Ren (Jack) Chuang" writes: > The current memory tier initialization process is distributed across > two different functions, memory_tier_init() and memory_tier_late_init(). > This design is hard to maintain. Thus, this patch is proposed to reduce > the possible code paths by consolidating dif

[PATCH v3] memory tier: consolidate the initialization of memory tiers

2024-07-04 Thread Ho-Ren (Jack) Chuang
The current memory tier initialization process is distributed across two different functions, memory_tier_init() and memory_tier_late_init(). This design is hard to maintain. Thus, this patch is proposed to reduce the possible code paths by consolidating different initialization patches into one.