* Re: [PATCH -next v3 2/2] mm: vmscan: add new event to trace shrink lru
[not found] ` <20231214013450.5734-3-cuibixuan@vivo.com>
@ 2023-12-14 3:59 ` Yu Zhao
2023-12-15 1:06 ` Bixuan Cui
0 siblings, 1 reply; 2+ messages in thread
From: Yu Zhao @ 2023-12-14 3:59 UTC (permalink / raw)
To: cuibixuan
Cc: akpm, mm-commits, rostedt, mhiramat, mathieu.desnoyers,
opensource.kernel, Linux-MM, linux-kernel
On Wed, Dec 13, 2023 at 6:35 PM Bixuan Cui <cuibixuan@vivo.com> wrote:
>
> From: cuibixuan <cuibixuan@vivo.com>
>
> Add a new event to calculate the shrink_inactive_list()/shrink_active_list()
> execution time.
>
> Example of output:
> kswapd0-103 [007] ..... 1098.353020: mm_vmscan_lru_shrink_active_start: nid=0
> kswapd0-103 [007] ..... 1098.353040: mm_vmscan_lru_shrink_active_end: nid=0 nr_taken=32 nr_active=0 nr_deactivated=32 nr_referenced=0 priority=6 flags=RECLAIM_WB_FILE|RECLAIM_WB_ASYNC
> kswapd0-103 [007] ..... 1098.353040: mm_vmscan_lru_shrink_inactive_start: nid=0
> kswapd0-103 [007] ..... 1098.353094: mm_vmscan_lru_shrink_inactive_end: nid=0 nr_scanned=32 nr_reclaimed=0 nr_dirty=0 nr_writeback=0 nr_congested=0 nr_immediate=0 nr_activate_anon=0 nr_activate_file=0 nr_ref_keep=32 nr_unmap_fail=0 priority=6 flags=RECLAIM_WB_ANON|RECLAIM_WB_ASYNC
> kswapd0-103 [007] ..... 1098.353094: mm_vmscan_lru_shrink_inactive_start: nid=0
> kswapd0-103 [007] ..... 1098.353162: mm_vmscan_lru_shrink_inactive_end: nid=0 nr_scanned=32 nr_reclaimed=21 nr_dirty=0 nr_writeback=0 nr_congested=0 nr_immediate=0 nr_activate_anon=0 nr_activate_file=0 nr_ref_keep=11 nr_unmap_fail=0 priority=6 flags=RECLAIM_WB_FILE|RECLAIM_WB_ASYNC
>
> Signed-off-by: Bixuan Cui <cuibixuan@vivo.com>
NAK.
A _start should always be paired with an _end unless there is a good
reason not to.
mm-commits@ is the wrong mailing list to submit MM patches.
Is the build error Andrew pointed out earlier fixed? If so, where is
it credited to him?
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH -next v3 2/2] mm: vmscan: add new event to trace shrink lru
2023-12-14 3:59 ` [PATCH -next v3 2/2] mm: vmscan: add new event to trace shrink lru Yu Zhao
@ 2023-12-15 1:06 ` Bixuan Cui
0 siblings, 0 replies; 2+ messages in thread
From: Bixuan Cui @ 2023-12-15 1:06 UTC (permalink / raw)
To: Yu Zhao
Cc: akpm, mm-commits, rostedt, mhiramat, mathieu.desnoyers,
opensource.kernel, Linux-MM, linux-kernel
在 2023/12/14 11:59, Yu Zhao 写道:
>> Example of output:
>> kswapd0-103 [007] ..... 1098.353020: mm_vmscan_lru_shrink_active_start: nid=0
>> kswapd0-103 [007] ..... 1098.353040: mm_vmscan_lru_shrink_active_end: nid=0 nr_taken=32 nr_active=0 nr_deactivated=32 nr_referenced=0 priority=6 flags=RECLAIM_WB_FILE|RECLAIM_WB_ASYNC
>> kswapd0-103 [007] ..... 1098.353040: mm_vmscan_lru_shrink_inactive_start: nid=0
>> kswapd0-103 [007] ..... 1098.353094: mm_vmscan_lru_shrink_inactive_end: nid=0 nr_scanned=32 nr_reclaimed=0 nr_dirty=0 nr_writeback=0 nr_congested=0 nr_immediate=0 nr_activate_anon=0 nr_activate_file=0 nr_ref_keep=32 nr_unmap_fail=0 priority=6 flags=RECLAIM_WB_ANON|RECLAIM_WB_ASYNC
>> kswapd0-103 [007] ..... 1098.353094: mm_vmscan_lru_shrink_inactive_start: nid=0
>> kswapd0-103 [007] ..... 1098.353162: mm_vmscan_lru_shrink_inactive_end: nid=0 nr_scanned=32 nr_reclaimed=21 nr_dirty=0 nr_writeback=0 nr_congested=0 nr_immediate=0 nr_activate_anon=0 nr_activate_file=0 nr_ref_keep=11 nr_unmap_fail=0 priority=6 flags=RECLAIM_WB_FILE|RECLAIM_WB_ASYNC
>>
>> Signed-off-by: Bixuan Cui<cuibixuan@vivo.com>
> NAK.
>
> A _start should always be paired with an _end unless there is a good
> reason not to.
Yes, I want to get the duration of shrink lru and slab (including
shrink_active_list()/shrink_inactive_list()/shrinker->count_objects()/shrinker->scan_objects()),and
then calculate the memory recycling rate.
>
> mm-commits@ is the wrong mailing list to submit MM patches.
Thanks for reminding.
>
> Is the build error Andrew pointed out earlier fixed? If so, where is
> it credited to him?
Build error has been fixed in v2 patch, changes log:
v3: Swap the positions of 'nid' and 'freeable' to prevent the hole in
the trace event.
v2: Modify trace_mm_vmscan_lru_shrink_inactive() in evict_folios() at
the same time.
Thanks
Bixuan Cui
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-12-15 1:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20231214013450.5734-1-cuibixuan@vivo.com>
[not found] ` <20231214013450.5734-3-cuibixuan@vivo.com>
2023-12-14 3:59 ` [PATCH -next v3 2/2] mm: vmscan: add new event to trace shrink lru Yu Zhao
2023-12-15 1:06 ` Bixuan Cui
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox