All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Tobin C. Harding" <tobin@kernel.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: "Tobin C. Harding" <tobin@kernel.org>,
	Roman Gushchin <guro@fb.com>,
	Alexander Viro <viro@ftp.linux.org.uk>,
	Christoph Hellwig <hch@infradead.org>,
	Pekka Enberg <penberg@cs.helsinki.fi>,
	David Rientjes <rientjes@google.com>,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>,
	Christopher Lameter <cl@linux.com>,
	Matthew Wilcox <willy@infradead.org>,
	Miklos Szeredi <mszeredi@redhat.com>,
	Andreas Dilger <adilger@dilger.ca>,
	Waiman Long <longman@redhat.com>, Tycho Andersen <tycho@tycho.ws>,
	"Theodore Ts'o" <tytso@mit.edu>, Andi Kleen <ak@linux.intel.com>,
	David Chinner <david@fromorbit.com>,
	Nick Piggin <npiggin@gmail.com>, Rik van Riel <riel@redhat.com>,
	Hugh Dickins <hughd@google.com>, Jonathan Corbet <corbet@lwn.net>,
	linux-mm@kvack.org, linux-fsdevel@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: [RFC PATCH v4 06/15] tools/vm/slabinfo: Add defrag_used_ratio output
Date: Tue, 30 Apr 2019 13:07:37 +1000	[thread overview]
Message-ID: <20190430030746.26102-7-tobin@kernel.org> (raw)
In-Reply-To: <20190430030746.26102-1-tobin@kernel.org>

Add output for the newly added defrag_used_ratio sysfs knob.

Signed-off-by: Tobin C. Harding <tobin@kernel.org>
---
 tools/vm/slabinfo.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/vm/slabinfo.c b/tools/vm/slabinfo.c
index d2c22f9ee2d8..ef4ff93df4cc 100644
--- a/tools/vm/slabinfo.c
+++ b/tools/vm/slabinfo.c
@@ -34,6 +34,7 @@ struct slabinfo {
 	unsigned int sanity_checks, slab_size, store_user, trace;
 	int order, poison, reclaim_account, red_zone;
 	int movable, ctor;
+	int defrag_used_ratio;
 	int remote_node_defrag_ratio;
 	unsigned long partial, objects, slabs, objects_partial, objects_total;
 	unsigned long alloc_fastpath, alloc_slowpath;
@@ -549,6 +550,8 @@ static void report(struct slabinfo *s)
 		printf("** Slabs are destroyed via RCU\n");
 	if (s->reclaim_account)
 		printf("** Reclaim accounting active\n");
+	if (s->movable)
+		printf("** Defragmentation at %d%%\n", s->defrag_used_ratio);
 
 	printf("\nSizes (bytes)     Slabs              Debug                Memory\n");
 	printf("------------------------------------------------------------------------\n");
@@ -1279,6 +1282,7 @@ static void read_slab_dir(void)
 			slab->deactivate_bypass = get_obj("deactivate_bypass");
 			slab->remote_node_defrag_ratio =
 					get_obj("remote_node_defrag_ratio");
+			slab->defrag_used_ratio = get_obj("defrag_used_ratio");
 			chdir("..");
 			if (read_slab_obj(slab, "ops")) {
 				if (strstr(buffer, "ctor :"))
-- 
2.21.0


  parent reply	other threads:[~2019-04-30  3:09 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-30  3:07 [RFC PATCH v4 00/15] Slab Movable Objects (SMO) Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 01/15] slub: Add isolate() and migrate() methods Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 02/15] tools/vm/slabinfo: Add support for -C and -M options Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 03/15] slub: Sort slab cache list Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 04/15] slub: Slab defrag core Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 05/15] tools/vm/slabinfo: Add remote node defrag ratio output Tobin C. Harding
2019-04-30  3:07 ` Tobin C. Harding [this message]
2019-04-30  3:07 ` [RFC PATCH v4 07/15] tools/testing/slab: Add object migration test module Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 08/15] tools/testing/slab: Add object migration test suite Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 09/15] xarray: Implement migration function for objects Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 10/15] tools/testing/slab: Add XArray movable objects tests Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 11/15] slub: Enable moving objects to/from specific nodes Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 12/15] slub: Enable balancing slabs across nodes Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 13/15] dcache: Provide a dentry constructor Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 14/15] dcache: Implement partial shrink via Slab Movable Objects Tobin C. Harding
2019-04-30  3:07 ` [RFC PATCH v4 15/15] dcache: Add CONFIG_DCACHE_SMO Tobin C. Harding

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190430030746.26102-7-tobin@kernel.org \
    --to=tobin@kernel.org \
    --cc=adilger@dilger.ca \
    --cc=ak@linux.intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=cl@linux.com \
    --cc=corbet@lwn.net \
    --cc=david@fromorbit.com \
    --cc=guro@fb.com \
    --cc=hch@infradead.org \
    --cc=hughd@google.com \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=longman@redhat.com \
    --cc=mszeredi@redhat.com \
    --cc=npiggin@gmail.com \
    --cc=penberg@cs.helsinki.fi \
    --cc=riel@redhat.com \
    --cc=rientjes@google.com \
    --cc=tycho@tycho.ws \
    --cc=tytso@mit.edu \
    --cc=viro@ftp.linux.org.uk \
    --cc=willy@infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.