Re: [PATCH v3 5/8] mm/migrate: make a standard migration target allocation function

2020-07-03 Thread Vlastimil Babka
On 6/23/20 8:13 AM, js1...@gmail.com wrote: > From: Joonsoo Kim > > There are some similar functions for migration target allocation. Since > there is no fundamental difference, it's better to keep just one rather > than keeping all variants. This patch implements base migration target >

Re: [PATCH v3 5/8] mm/migrate: make a standard migration target allocation function

2020-06-30 Thread Joonsoo Kim
2020년 6월 29일 (월) 오후 5:03, Michal Hocko 님이 작성: > > On Mon 29-06-20 15:41:37, Joonsoo Kim wrote: > > 2020년 6월 26일 (금) 오후 4:33, Michal Hocko 님이 작성: > > > > > > On Fri 26-06-20 14:02:49, Joonsoo Kim wrote: > > > > 2020년 6월 25일 (목) 오후 9:05, Michal Hocko 님이 작성: > > > > > > > > > > On Tue 23-06-20

Re: [PATCH v3 5/8] mm/migrate: make a standard migration target allocation function

2020-06-29 Thread Joonsoo Kim
2020년 6월 26일 (금) 오후 4:33, Michal Hocko 님이 작성: > > On Fri 26-06-20 14:02:49, Joonsoo Kim wrote: > > 2020년 6월 25일 (목) 오후 9:05, Michal Hocko 님이 작성: > > > > > > On Tue 23-06-20 15:13:45, Joonsoo Kim wrote: > [...] > > > > -struct page *new_page_nodemask(struct page *page, > > > > -

Re: [PATCH v3 5/8] mm/migrate: make a standard migration target allocation function

2020-06-29 Thread Michal Hocko
On Mon 29-06-20 15:41:37, Joonsoo Kim wrote: > 2020년 6월 26일 (금) 오후 4:33, Michal Hocko 님이 작성: > > > > On Fri 26-06-20 14:02:49, Joonsoo Kim wrote: > > > 2020년 6월 25일 (목) 오후 9:05, Michal Hocko 님이 작성: > > > > > > > > On Tue 23-06-20 15:13:45, Joonsoo Kim wrote: > > [...] > > > > > -struct page

Re: [PATCH v3 5/8] mm/migrate: make a standard migration target allocation function

2020-06-26 Thread Michal Hocko
On Fri 26-06-20 14:02:49, Joonsoo Kim wrote: > 2020년 6월 25일 (목) 오후 9:05, Michal Hocko 님이 작성: > > > > On Tue 23-06-20 15:13:45, Joonsoo Kim wrote: [...] > > > -struct page *new_page_nodemask(struct page *page, > > > - int preferred_nid, nodemask_t *nodemask) > > >

Re: [PATCH v3 5/8] mm/migrate: make a standard migration target allocation function

2020-06-25 Thread Joonsoo Kim
2020년 6월 25일 (목) 오후 9:05, Michal Hocko 님이 작성: > > On Tue 23-06-20 15:13:45, Joonsoo Kim wrote: > > From: Joonsoo Kim > > > > There are some similar functions for migration target allocation. Since > > there is no fundamental difference, it's better to keep just one rather > > than keeping all

Re: [PATCH v3 5/8] mm/migrate: make a standard migration target allocation function

2020-06-25 Thread Michal Hocko
On Tue 23-06-20 15:13:45, Joonsoo Kim wrote: > From: Joonsoo Kim > > There are some similar functions for migration target allocation. Since > there is no fundamental difference, it's better to keep just one rather > than keeping all variants. This patch implements base migration target >

[PATCH v3 5/8] mm/migrate: make a standard migration target allocation function

2020-06-23 Thread js1304
From: Joonsoo Kim There are some similar functions for migration target allocation. Since there is no fundamental difference, it's better to keep just one rather than keeping all variants. This patch implements base migration target allocation function. In the following patches, variants will be