Re: [PATCH 4/4] mm: proc/pid/smaps_rollup: convert to single value seq_file

2018-08-16 Thread Alexey Dobriyan
On Mon, Jul 30, 2018 at 10:53:53AM +0200, Vlastimil Babka wrote: > On 07/26/2018 06:26 PM, Alexey Dobriyan wrote: > > On Wed, Jul 25, 2018 at 08:53:53AM +0200, Vlastimil Babka wrote: > >> I moved the reply to this thread since the "added to -mm tree" > >> notification Alexey replied to in <20180724

Re: [PATCH 4/4] mm: proc/pid/smaps_rollup: convert to single value seq_file

2018-07-30 Thread Vlastimil Babka
On 07/26/2018 06:26 PM, Alexey Dobriyan wrote: > On Wed, Jul 25, 2018 at 08:53:53AM +0200, Vlastimil Babka wrote: >> I moved the reply to this thread since the "added to -mm tree" >> notification Alexey replied to in <20180724182908.GD27053@avx2> has >> reduced CC list and is not linked to the patc

Re: [PATCH 4/4] mm: proc/pid/smaps_rollup: convert to single value seq_file

2018-07-26 Thread Alexey Dobriyan
On Wed, Jul 25, 2018 at 08:53:53AM +0200, Vlastimil Babka wrote: > I moved the reply to this thread since the "added to -mm tree" > notification Alexey replied to in <20180724182908.GD27053@avx2> has > reduced CC list and is not linked to the patch postings. > > On 07/24/2018 08:29 PM, Alexey Dobr

Re: [PATCH 4/4] mm: proc/pid/smaps_rollup: convert to single value seq_file

2018-07-24 Thread Vlastimil Babka
I moved the reply to this thread since the "added to -mm tree" notification Alexey replied to in <20180724182908.GD27053@avx2> has reduced CC list and is not linked to the patch postings. On 07/24/2018 08:29 PM, Alexey Dobriyan wrote: > On Mon, Jul 23, 2018 at 04:55:48PM -0700, a...@linux-foundati

[PATCH 4/4] mm: proc/pid/smaps_rollup: convert to single value seq_file

2018-07-23 Thread Vlastimil Babka
The /proc/pid/smaps_rollup file is currently implemented via the m_start/m_next/m_stop seq_file iterators shared with the other maps files, that iterate over vma's. However, the rollup file doesn't print anything for each vma, only accumulate the stats. There are some issues with the current code