[PATCH 06/15] prlimit: enhance diagnostic when changing a limit fails:
add limit name
Signed-off-by: Bernhard Voelker <mail@xxxxxxxxxxxxxxxxxxx>
---
sys-utils/prlimit.c | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/sys-utils/prlimit.c b/sys-utils/prlimit.c
index d668fba..611f3e8 100644
--- a/sys-utils/prlimit.c
+++ b/sys-utils/prlimit.c
@@ -326,14 +326,18 @@ static void do_prlimit(struct prlimit lims[],
size_t n, int tt_flags)
if (prlimit(pid, lims[i].desc->resource, new, &lims[i].rlim) == -1) {
if (pid) {
if (lims[i].modify)
- err(EXIT_FAILURE, _("failed to set resource limits for PID %d"), pid);
+ err(EXIT_FAILURE, _("failed to set the %s resource limit for PID %d"),
+ lims[i].desc->name, pid);
else
- err(EXIT_FAILURE, _("failed to get resource limits for PID %d"), pid);
+ err(EXIT_FAILURE, _("failed to get the %s resource limit for PID %d"),
+ lims[i].desc->name, pid);
} else {
if (lims[i].modify)
- err(EXIT_FAILURE, _("failed to set resource limits of the current
process"));
+ err(EXIT_FAILURE, _("failed to set the %s resource limit of the
current process"),
+ lims[i].desc->name);
else
- err(EXIT_FAILURE, _("failed to get resource limits of the current
process"));
+ err(EXIT_FAILURE, _("failed to get the %s resource limit of the
current process"),
+ lims[i].desc->name);
}
}
}
--
To unsubscribe from this list: send the line "unsubscribe util-linux" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html