summaryrefslogtreecommitdiff
path: root/src/basic/util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-09-30 20:16:51 +0200
committerLennart Poettering <lennart@poettering.net>2015-09-30 22:26:16 +0200
commit765d143b5fc8dcb44f5fbd391ef36d0835793e7c (patch)
tree0fadb3d03d0b7a99412cff9a542f16a66950b5f8 /src/basic/util.c
parent0e05ee044a6e23745bb8906ad91ec7b97c37dbac (diff)
util: rename parse_cpu_set() to parse_cpu_set_and_warn()
It's pretty untypical for our parsing functions to log on their own. Clarify in the name that this one does.
Diffstat (limited to 'src/basic/util.c')
-rw-r--r--src/basic/util.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/basic/util.c b/src/basic/util.c
index b76cb7aa97..a2a75bdd7f 100644
--- a/src/basic/util.c
+++ b/src/basic/util.c
@@ -2552,25 +2552,26 @@ int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid) {
}
cpu_set_t* cpu_set_malloc(unsigned *ncpus) {
- cpu_set_t *r;
+ cpu_set_t *c;
unsigned n = 1024;
/* Allocates the cpuset in the right size */
for (;;) {
- if (!(r = CPU_ALLOC(n)))
+ c = CPU_ALLOC(n);
+ if (!c)
return NULL;
- if (sched_getaffinity(0, CPU_ALLOC_SIZE(n), r) >= 0) {
- CPU_ZERO_S(CPU_ALLOC_SIZE(n), r);
+ if (sched_getaffinity(0, CPU_ALLOC_SIZE(n), c) >= 0) {
+ CPU_ZERO_S(CPU_ALLOC_SIZE(n), c);
if (ncpus)
*ncpus = n;
- return r;
+ return c;
}
- CPU_FREE(r);
+ CPU_FREE(c);
if (errno != EINVAL)
return NULL;
@@ -2579,7 +2580,7 @@ cpu_set_t* cpu_set_malloc(unsigned *ncpus) {
}
}
-int parse_cpu_set(
+int parse_cpu_set_and_warn(
const char *rvalue,
cpu_set_t **cpu_set,
const char *unit,
@@ -2591,7 +2592,6 @@ int parse_cpu_set(
_cleanup_cpu_free_ cpu_set_t *c = NULL;
unsigned ncpus = 0;
- assert(filename);
assert(lvalue);
assert(rvalue);