#include <haproxy/errors.h>
#include <haproxy/proxy.h>
+struct hap_cpuset;
+
/* configuration sections */
#define CFG_NONE 0
#define CFG_GLOBAL 1
int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code);
int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code);
int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err);
-unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err);
+unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set, char **err);
void free_email_alert(struct proxy *p);
const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra);
+#define _GNU_SOURCE /* for CPU_* from cpuset.h */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <haproxy/buf.h>
#include <haproxy/cfgparse.h>
+#include <haproxy/cpuset.h>
#include <haproxy/compression.h>
#include <haproxy/global.h>
#include <haproxy/log.h>
#ifdef USE_CPU_AFFINITY
char *slash;
unsigned long proc = 0, thread = 0, cpus;
- int i, j, n, autoinc;
+ int i, j, n, k, autoinc;
+ struct hap_cpuset cpuset;
if (!*args[1] || !*args[2]) {
ha_alert("parsing [%s:%d] : %s expects a process number "
}
}
- if (parse_cpu_set((const char **)args+2, &cpus, &errmsg)) {
+ if (parse_cpu_set((const char **)args+2, &cpuset, &errmsg)) {
ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
err_code |= ERR_ALERT | ERR_FATAL;
goto out;
}
-
+#if defined(CPUSET_USE_CPUSET)
+ k = 0;
+ while (CPU_COUNT(&cpuset.cpuset)) {
+ while (!CPU_ISSET(k, &cpuset.cpuset))
+ ++k;
+ cpus |= 1 << k;
+ CPU_CLR(k, &cpuset.cpuset);
+ ++k;
+ }
+#elif defined(CPUSET_USE_ULONG)
+ cpus = cpuset.cpuset;
+#endif
if (autoinc &&
my_popcountl(proc) != my_popcountl(cpus) &&
my_popcountl(thread) != my_popcountl(cpus)) {
#include <haproxy/channel.h>
#include <haproxy/check.h>
#include <haproxy/chunk.h>
+#include <haproxy/cpuset.h>
#include <haproxy/connection.h>
#include <haproxy/errors.h>
#include <haproxy/filters.h>
#ifdef USE_CPU_AFFINITY
/* Parse cpu sets. Each CPU set is either a unique number between 0 and
- * <LONGBITS> or a range with two such numbers delimited by a dash
+ * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
* ('-'). Multiple CPU numbers or ranges may be specified. On success, it
* returns 0. otherwise it returns 1 with an error message in <err>.
*/
-unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
+unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set, char **err)
{
int cur_arg = 0;
- *cpu_set = 0;
+ ha_cpuset_zero(cpu_set);
+
while (*args[cur_arg]) {
char *dash;
unsigned int low, high;
if (!isdigit((unsigned char)*args[cur_arg])) {
- memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
+ memprintf(err, "'%s' is not a CPU range.", args[cur_arg]);
return -1;
}
low = high = str2uic(args[cur_arg]);
if ((dash = strchr(args[cur_arg], '-')) != NULL)
- high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
+ high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
if (high < low) {
unsigned int swap = low;
high = swap;
}
- if (high >= LONGBITS) {
- memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
+ if (high >= ha_cpuset_size()) {
+ memprintf(err, "supports CPU numbers from 0 to %d.",
+ ha_cpuset_size() - 1);
return 1;
}
while (low <= high)
- *cpu_set |= 1UL << low++;
+ ha_cpuset_set(cpu_set, low++);
cur_arg++;
}