Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1237430
| From | Anshuman Khandual <khandual@linux.vnet.ibm.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 1/1] mm: vmstat: Add OOM kill count in vmstat counter |
| Date | 2015-10-01 15:40 +0200 |
| Message-ID | <qeMfw-5PR-19@gated-at.bofh.it> (permalink) |
| References | <qeJUm-2dw-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 10/01/2015 04:18 PM, Pintu Kumar wrote:
> This patch maintains number of oom calls and number of oom kill
> count in /proc/vmstat.
> It is helpful during sluggish, aging or long duration tests.
> Currently if the OOM happens, it can be only seen in kernel ring buffer.
> But during long duration tests, all the dmesg and /var/log/messages* could
> be overwritten.
> So, just like other counters, the oom can also be maintained in
> /proc/vmstat.
> It can be also seen if all logs are disabled in kernel.
Makes sense.
>
> A snapshot of the result of over night test is shown below:
> $ cat /proc/vmstat
> oom_stall 610
> oom_kill_count 1763
>
> Here, oom_stall indicates that there are 610 times, kernel entered into OOM
> cases. However, there were around 1763 oom killing happens.
> The OOM is bad for the any system. So, this counter can help the developer
> in tuning the memory requirement at least during initial bringup.
Can you please fix the formatting of the commit message above ?
>
> Signed-off-by: Pintu Kumar <pintu.k@samsung.com>
> ---
> include/linux/vm_event_item.h | 2 ++
> mm/oom_kill.c | 2 ++
> mm/page_alloc.c | 2 +-
> mm/vmstat.c | 2 ++
> 4 files changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/include/linux/vm_event_item.h b/include/linux/vm_event_item.h
> index 2b1cef8..ade0851 100644
> --- a/include/linux/vm_event_item.h
> +++ b/include/linux/vm_event_item.h
> @@ -57,6 +57,8 @@ enum vm_event_item { PGPGIN, PGPGOUT, PSWPIN, PSWPOUT,
> #ifdef CONFIG_HUGETLB_PAGE
> HTLB_BUDDY_PGALLOC, HTLB_BUDDY_PGALLOC_FAIL,
> #endif
> + OOM_STALL,
> + OOM_KILL_COUNT,
Removing the COUNT will be better and in sync with others.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/1] mm: vmstat: Add OOM kill count in vmstat counter Pintu Kumar <pintu.k@samsung.com> - 2015-10-01 13:10 +0200
Re: [PATCH 1/1] mm: vmstat: Add OOM kill count in vmstat counter Michal Hocko <mhocko@kernel.org> - 2015-10-01 15:40 +0200
RE: [PATCH 1/1] mm: vmstat: Add OOM kill count in vmstat counter PINTU KUMAR <pintu.k@samsung.com> - 2015-10-05 08:20 +0200
Re: [PATCH 1/1] mm: vmstat: Add OOM kill count in vmstat counter Michal Hocko <mhocko@kernel.org> - 2015-10-05 14:30 +0200
Re: [PATCH 1/1] mm: vmstat: Add OOM kill count in vmstat counter Anshuman Khandual <khandual@linux.vnet.ibm.com> - 2015-10-01 15:40 +0200
RE: [PATCH 1/1] mm: vmstat: Add OOM kill count in vmstat counter PINTU KUMAR <pintu.k@samsung.com> - 2015-10-05 08:20 +0200
csiph-web