forked from pool/util-linux
Dirk Mueller
8d036d9bf7
- lsmem: Add support for zone awareness (bsc#1065471, FATE#324252, util-linux-lsmem-memory-zone-1.patch, util-linux-lsmem-memory-zone-2.patch, util-linux-lsmem-memory-zone-3.patch). - Drop util-linux-losetup-Add-support-for-setting-logical-blocksize.patch. Different implementations exists in the new kernel, and it has a conflicting implementation in util-linux. OBS-URL: https://build.opensuse.org/request/show/548188 OBS-URL: https://build.opensuse.org/package/show/Base:System/util-linux?expand=0&rev=354
45 lines
1.4 KiB
Diff
45 lines
1.4 KiB
Diff
From afee3f204247fbc8e4cfaa1698f3d98762544dd8 Mon Sep 17 00:00:00 2001
|
|
From: Andre Wild <wild@linux.vnet.ibm.com>
|
|
Date: Wed, 27 Sep 2017 19:44:46 +0200
|
|
Subject: [PATCH 3/3] lsmem/chmem: add memory zone awareness to bash-completion
|
|
|
|
This patch extends the valid --output values with ZONES for the
|
|
lsmem bash-completion, and adds the --zone option for the chmem
|
|
bash-completion.
|
|
|
|
Signed-off-by: Andre Wild <wild@linux.vnet.ibm.com>
|
|
Signed-off-by: Gerald Schaefer <gerald.schaefer@de.ibm.com>
|
|
---
|
|
bash-completion/chmem | 1 +
|
|
bash-completion/lsmem | 2 +-
|
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/bash-completion/chmem b/bash-completion/chmem
|
|
index 00b870dbd..3e3af87ac 100644
|
|
--- a/bash-completion/chmem
|
|
+++ b/bash-completion/chmem
|
|
@@ -16,6 +16,7 @@ _chmem_module()
|
|
--disable
|
|
--blocks
|
|
--verbose
|
|
+ --zone
|
|
--help
|
|
--version
|
|
"
|
|
diff --git a/bash-completion/lsmem b/bash-completion/lsmem
|
|
index 8f7a46ec3..9aa124569 100644
|
|
--- a/bash-completion/lsmem
|
|
+++ b/bash-completion/lsmem
|
|
@@ -9,7 +9,7 @@ _lsmem_module()
|
|
local prefix realcur OUTPUT_ALL OUTPUT
|
|
realcur="${cur##*,}"
|
|
prefix="${cur%$realcur}"
|
|
- OUTPUT_ALL='RANGE SIZE STATE REMOVABLE BLOCK NODE'
|
|
+ OUTPUT_ALL='RANGE SIZE STATE REMOVABLE BLOCK NODE ZONES'
|
|
for WORD in $OUTPUT_ALL; do
|
|
if ! [[ $prefix == *"$WORD"* ]]; then
|
|
OUTPUT="$WORD ${OUTPUT:-""}"
|
|
--
|
|
2.15.0
|
|
|