mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: tip-bot for Shaohua Li <tipbot@zytor.com>
To: linux-tip-commits@vger.kernel.org
Cc: tglx@linutronix.de, linux-kernel@vger.kernel.org, shli@fb.com,
	hpa@zytor.com, fenghua.yu@intel.com, mingo@kernel.org
Subject: [tip:x86/cache] x86/intel_rdt: Implement show_options() for resctrlfs
Date: Fri, 9 Dec 2016 05:19:03 -0800	[thread overview]
Message-ID: <tip-76ae054c69a745ded388fc4ae70422d74c5bc77d@git.kernel.org> (raw)
In-Reply-To: <7dce7c1886ac9289442d254ea18322c92bd968da.1480717072.git.shli@fb.com>

Commit-ID:  76ae054c69a745ded388fc4ae70422d74c5bc77d
Gitweb:     http://git.kernel.org/tip/76ae054c69a745ded388fc4ae70422d74c5bc77d
Author:     Shaohua Li <shli@fb.com>
AuthorDate: Fri, 2 Dec 2016 14:21:06 -0800
Committer:  Thomas Gleixner <tglx@linutronix.de>
CommitDate: Fri, 9 Dec 2016 14:12:18 +0100

x86/intel_rdt: Implement show_options() for resctrlfs

Implement show_options() callback for intel resource control filesystem
to expose the active mount options in /proc/

Signed-off-by: Shaohua Li <shli@fb.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Link: http://lkml.kernel.org/r/7dce7c1886ac9289442d254ea18322c92bd968da.1480717072.git.shli@fb.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

---
 arch/x86/kernel/cpu/intel_rdt_rdtgroup.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kernel/cpu/intel_rdt_rdtgroup.c b/arch/x86/kernel/cpu/intel_rdt_rdtgroup.c
index 1afd3f3..8af04af 100644
--- a/arch/x86/kernel/cpu/intel_rdt_rdtgroup.c
+++ b/arch/x86/kernel/cpu/intel_rdt_rdtgroup.c
@@ -1036,9 +1036,17 @@ out:
 	return ret;
 }
 
+static int rdtgroup_show_options(struct seq_file *seq, struct kernfs_root *kf)
+{
+	if (rdt_resources_all[RDT_RESOURCE_L3DATA].enabled)
+		seq_puts(seq, ",cdp");
+	return 0;
+}
+
 static struct kernfs_syscall_ops rdtgroup_kf_syscall_ops = {
-	.mkdir	= rdtgroup_mkdir,
-	.rmdir	= rdtgroup_rmdir,
+	.mkdir		= rdtgroup_mkdir,
+	.rmdir		= rdtgroup_rmdir,
+	.show_options	= rdtgroup_show_options,
 };
 
 static int __init rdtgroup_setup_root(void)

      reply	other threads:[~2016-12-09 13:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-02 22:21 [PATCH V2] " Shaohua Li
2016-12-09 13:19 ` tip-bot for Shaohua Li [this message]

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=tip-76ae054c69a745ded388fc4ae70422d74c5bc77d@git.kernel.org \
    --to=tipbot@zytor.com \
    --cc=fenghua.yu@intel.com \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=shli@fb.com \
    --cc=tglx@linutronix.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome