From: Vishal Verma <vishal.l.verma@intel.com>
To: Dan Williams <dan.j.williams@intel.com>
Cc: qemu-devel@nongnu.org, linux-nvdimm@lists.01.org
Subject: Re: [ndctl PATCH 0/8] dimm label space initialization support
Date: Thu, 20 Oct 2016 13:32:34 -0600 [thread overview]
Message-ID: <20161020193231.GA7106@omniknight.lm.intel.com> (raw)
In-Reply-To: <147689566876.11015.13898062253087685236.stgit@dwillia2-desk3.amr.corp.intel.com>
On 10/19, Dan Williams wrote:
> The 4.9 kernel added support for sub-dividing PMEM. With this kernel
> patch [1] on top of that baseline, the PMEM-sub-division support can be
> enabled for QEMU-KVM and any other platforms that advertise both un-aliased
> PMEM regions and support for the label DSM commands [2].
>
> Given this increasing need to perform a label management operation
> across a set of DIMMs this update also adds glob(3) support. For
> example you can now write commands like:
>
> ndctl zero-labels nmem[2-4]
>
> ...as a shorthand for:
>
> ndctl zero-labels nmem2 nmem3 nmem4
>
> This support extends to all the commands that take an undecorated dimm /
> nmem device as a parameter:
>
> disable-dimm
> enable-dimm
> read-labels
> zero-labels
> init-labels
> check-labels
>
> The patch "libndctl: fix error returns for unsigned apis" was something
> noticed while developing "init-labels", but is otherwise unrelated to
> the rest of the set.
>
> [1]: https://patchwork.kernel.org/patch/9384741/
> [2]: http://pmem.io/documents/NVDIMM_DSM_Interface_Example-V1.2.pdf
>
> ---
>
> Dan Williams (8):
> libndctl: fix error returns for unsigned apis
> ndctl: consolidate label commands into a single file
> ndctl: glob support for label commands
> ndctl: merge {enable,disable}-dimm with label commands
> libndctl: add ndctl_cmd_cfg_read_get_size()
> ndctl: provide a read_labels() helper
> ndctl: init-labels command
> ndctl: check-labels command
>
Hi Dan,
Here is the bash completion patch for the new commands:
8<-----
>From 53e3090ecd124562540bb25948783c33d9390112 Mon Sep 17 00:00:00 2001
From: Vishal Verma <vishal.l.verma@intel.com>
Date: Thu, 20 Oct 2016 13:29:03 -0600
Subject: [PATCH] ndctl: bash completion for {init, check}-labels
Add bash completion for the new init-labels and check-labels commands.
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
---
contrib/ndctl | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/contrib/ndctl b/contrib/ndctl
index 2c04504..ea7303c 100755
--- a/contrib/ndctl
+++ b/contrib/ndctl
@@ -206,6 +206,10 @@ __ndctl_comp_non_option_args()
disable-dimm)
opts="$(__ndctl_get_dimms) all"
;;
+ init-labels)
+ ;&
+ check-labels)
+ ;&
read-labels)
;&
zero-labels)
--
2.7.4
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
WARNING: multiple messages have this Message-ID (diff)
From: Vishal Verma <vishal.l.verma@intel.com>
To: Dan Williams <dan.j.williams@intel.com>
Cc: linux-nvdimm@lists.01.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [ndctl PATCH 0/8] dimm label space initialization support
Date: Thu, 20 Oct 2016 13:32:34 -0600 [thread overview]
Message-ID: <20161020193231.GA7106@omniknight.lm.intel.com> (raw)
In-Reply-To: <147689566876.11015.13898062253087685236.stgit@dwillia2-desk3.amr.corp.intel.com>
On 10/19, Dan Williams wrote:
> The 4.9 kernel added support for sub-dividing PMEM. With this kernel
> patch [1] on top of that baseline, the PMEM-sub-division support can be
> enabled for QEMU-KVM and any other platforms that advertise both un-aliased
> PMEM regions and support for the label DSM commands [2].
>
> Given this increasing need to perform a label management operation
> across a set of DIMMs this update also adds glob(3) support. For
> example you can now write commands like:
>
> ndctl zero-labels nmem[2-4]
>
> ...as a shorthand for:
>
> ndctl zero-labels nmem2 nmem3 nmem4
>
> This support extends to all the commands that take an undecorated dimm /
> nmem device as a parameter:
>
> disable-dimm
> enable-dimm
> read-labels
> zero-labels
> init-labels
> check-labels
>
> The patch "libndctl: fix error returns for unsigned apis" was something
> noticed while developing "init-labels", but is otherwise unrelated to
> the rest of the set.
>
> [1]: https://patchwork.kernel.org/patch/9384741/
> [2]: http://pmem.io/documents/NVDIMM_DSM_Interface_Example-V1.2.pdf
>
> ---
>
> Dan Williams (8):
> libndctl: fix error returns for unsigned apis
> ndctl: consolidate label commands into a single file
> ndctl: glob support for label commands
> ndctl: merge {enable,disable}-dimm with label commands
> libndctl: add ndctl_cmd_cfg_read_get_size()
> ndctl: provide a read_labels() helper
> ndctl: init-labels command
> ndctl: check-labels command
>
Hi Dan,
Here is the bash completion patch for the new commands:
8<-----
>From 53e3090ecd124562540bb25948783c33d9390112 Mon Sep 17 00:00:00 2001
From: Vishal Verma <vishal.l.verma@intel.com>
Date: Thu, 20 Oct 2016 13:29:03 -0600
Subject: [PATCH] ndctl: bash completion for {init, check}-labels
Add bash completion for the new init-labels and check-labels commands.
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
---
contrib/ndctl | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/contrib/ndctl b/contrib/ndctl
index 2c04504..ea7303c 100755
--- a/contrib/ndctl
+++ b/contrib/ndctl
@@ -206,6 +206,10 @@ __ndctl_comp_non_option_args()
disable-dimm)
opts="$(__ndctl_get_dimms) all"
;;
+ init-labels)
+ ;&
+ check-labels)
+ ;&
read-labels)
;&
zero-labels)
--
2.7.4
next prev parent reply other threads:[~2016-10-20 19:33 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-19 16:47 [ndctl PATCH 0/8] dimm label space initialization support Dan Williams
2016-10-19 16:47 ` [Qemu-devel] " Dan Williams
2016-10-19 16:47 ` [ndctl PATCH 1/8] libndctl: fix error returns for unsigned apis Dan Williams
2016-10-19 16:47 ` [ndctl PATCH 2/8] ndctl: consolidate label commands into a single file Dan Williams
2016-10-19 16:48 ` [ndctl PATCH 3/8] ndctl: glob support for label commands Dan Williams
2016-10-19 16:48 ` [ndctl PATCH 4/8] ndctl: merge {enable, disable}-dimm with " Dan Williams
2016-10-19 16:48 ` [ndctl PATCH 5/8] libndctl: add ndctl_cmd_cfg_read_get_size() Dan Williams
2016-10-19 16:48 ` [ndctl PATCH 6/8] ndctl: provide a read_labels() helper Dan Williams
2016-10-19 16:48 ` [ndctl PATCH 7/8] ndctl: init-labels command Dan Williams
2016-10-19 16:48 ` [Qemu-devel] " Dan Williams
2016-10-19 16:48 ` [ndctl PATCH 8/8] ndctl: check-labels command Dan Williams
2016-10-19 18:42 ` [ndctl PATCH 0/8] dimm label space initialization support Eric Blake
2016-10-19 18:42 ` [Qemu-devel] " Eric Blake
[not found] ` <6ceb7075-71fc-b725-8a1c-a7d8c727770e-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-10-19 19:41 ` Dan Williams
2016-10-19 19:41 ` Dan Williams
[not found] ` <CAPcyv4gbRE-ALJM6EHv6fM3Kq02HeZFMLF5T63J5qaJmHWvQCg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-10-19 21:29 ` Dan Williams
2016-10-19 21:29 ` Dan Williams
2016-10-19 23:46 ` Eric Blake
2016-10-19 23:46 ` [Qemu-devel] " Eric Blake
[not found] ` <708947f5-dfdc-d6c9-4523-7436959119f3-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-10-19 23:56 ` Dan Williams
2016-10-19 23:56 ` Dan Williams
2016-10-20 19:32 ` Vishal Verma [this message]
2016-10-20 19:32 ` Vishal Verma
2016-10-20 20:06 ` Dan Williams
2016-10-20 20:06 ` [Qemu-devel] " Dan Williams
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=20161020193231.GA7106@omniknight.lm.intel.com \
--to=vishal.l.verma@intel.com \
--cc=dan.j.williams@intel.com \
--cc=linux-nvdimm@lists.01.org \
--cc=qemu-devel@nongnu.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.