* [PATCH 06/15] prlimit: enhance diagnostic when changing a limit fails: add limit name
@ 2011-11-14 1:48 Bernhard Voelker
2011-11-16 12:46 ` Karel Zak
0 siblings, 1 reply; 2+ messages in thread
From: Bernhard Voelker @ 2011-11-14 1:48 UTC (permalink / raw)
To: util-linux
[PATCH 06/15] prlimit: enhance diagnostic when changing a limit fails:
add limit name
Signed-off-by: Bernhard Voelker <mail@bernhard-voelker.de>
---
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);
}
}
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 06/15] prlimit: enhance diagnostic when changing a limit fails: add limit name
2011-11-14 1:48 [PATCH 06/15] prlimit: enhance diagnostic when changing a limit fails: add limit name Bernhard Voelker
@ 2011-11-16 12:46 ` Karel Zak
0 siblings, 0 replies; 2+ messages in thread
From: Karel Zak @ 2011-11-16 12:46 UTC (permalink / raw)
To: Bernhard Voelker; +Cc: util-linux
On Mon, Nov 14, 2011 at 02:48:18AM +0100, Bernhard Voelker wrote:
> [PATCH 06/15] prlimit: enhance diagnostic when changing a limit fails:
> add limit name
Good idea, merged with another patch and applied.
Karel
--
Karel Zak <kzak@redhat.com>
http://karelzak.blogspot.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-11-16 12:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-14 1:48 [PATCH 06/15] prlimit: enhance diagnostic when changing a limit fails: add limit name Bernhard Voelker
2011-11-16 12:46 ` Karel Zak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).