Re: [PATCH v2 0/7] swap: THP optimizing refactoring

2018-07-17 Thread Huang, Ying
Daniel Jordan writes: > On Tue, Jul 17, 2018 at 08:55:49AM +0800, Huang, Ying wrote: >> This patchset is based on 2018-07-13 head of mmotm tree. > > Looks good. > > Still think patch 7 would be easier to review if split into two logical > changes. Either way, though. > > For the series, > Review

Re: [PATCH v2 0/7] swap: THP optimizing refactoring

2018-07-17 Thread Daniel Jordan
On Tue, Jul 17, 2018 at 08:55:49AM +0800, Huang, Ying wrote: > This patchset is based on 2018-07-13 head of mmotm tree. Looks good. Still think patch 7 would be easier to review if split into two logical changes. Either way, though. For the series, Reviewed-by: Daniel Jordan

[PATCH v2 0/7] swap: THP optimizing refactoring

2018-07-16 Thread Huang, Ying
This patchset is based on 2018-07-13 head of mmotm tree. Now the THP (Transparent Huge Page) swap optimizing is implemented in the way like below, #ifdef CONFIG_THP_SWAP huge_function(...) { } #else normal_function(...) { } #endif general_function(...) { if (huge) return

[PATCH v2 0/7] swap: THP optimizing refactoring

2018-07-16 Thread Huang, Ying
This patchset is based on 2018-07-13 head of mmotm tree. Now the THP (Transparent Huge Page) swap optimizing is implemented in the way like below, #ifdef CONFIG_THP_SWAP huge_function(...) { } #else normal_function(...) { } #endif general_function(...) { if (huge) return