#endif
/* detect and address thread affinity inconsistencies */
- nbproc = 0;
- if (bind_conf->bind_proc)
- nbproc = my_ffsl(bind_conf->bind_proc) - 1;
-
+ nbproc = my_ffsl(proc_mask(bind_conf->bind_proc)) - 1;
mask = bind_conf->bind_thread[nbproc];
if (mask && !(mask & all_threads_mask)) {
unsigned long new_mask = 0;
if (!bind_conf->bind_proc)
continue;
- mask = all_proc_mask;
- if (curproxy->bind_proc)
- mask &= curproxy->bind_proc;
+ mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
/* mask cannot be null here thanks to the previous checks */
nbproc = my_popcountl(bind_conf->bind_proc);
list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
unsigned long mask;
- mask = all_proc_mask;
- if (global.stats_fe->bind_proc)
- mask &= global.stats_fe->bind_proc;
-
- if (bind_conf->bind_proc)
- mask &= bind_conf->bind_proc;
+ mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
+ mask &= proc_mask(bind_conf->bind_proc);
/* stop here if more than one process is used */
if (atleast2(mask))
list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
unsigned long mask;
- mask = bind_conf->bind_proc ? bind_conf->bind_proc : all_proc_mask;
+ mask = proc_mask(bind_conf->bind_proc);
curproxy->bind_proc |= mask;
}
-
- if (!curproxy->bind_proc)
- curproxy->bind_proc = all_proc_mask;
+ curproxy->bind_proc = proc_mask(curproxy->bind_proc);
}
if (global.stats_fe) {
mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
global.stats_fe->bind_proc |= mask;
}
- if (!global.stats_fe->bind_proc)
- global.stats_fe->bind_proc = all_proc_mask;
+ global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
}
/* propagate bindings from frontends to backends. Don't do it if there
}
/* Bind each unbound backend to all processes when not specified. */
- for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
- if (curproxy->bind_proc)
- continue;
- curproxy->bind_proc = all_proc_mask;
- }
+ for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
+ curproxy->bind_proc = proc_mask(curproxy->bind_proc);
/*******************************************************/
/* At this step, all proxies have a non-null bind_proc */
HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock);
if (listener->state == LI_LISTEN) {
if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
- listener->bind_conf->bind_proc &&
- !(listener->bind_conf->bind_proc & pid_bit)) {
+ !(proc_mask(listener->bind_conf->bind_proc) & pid_bit)) {
/* we don't want to enable this listener and don't
* want any fd event to reach it.
*/
HA_SPIN_LOCK(LISTENER_LOCK, &l->lock);
if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) &&
- l->bind_conf->bind_proc &&
- !(l->bind_conf->bind_proc & pid_bit))
+ !(proc_mask(l->bind_conf->bind_proc) & pid_bit))
goto end;
if (l->state == LI_ASSIGNED) {
char *srvrecord;
/* we don't want to report any state if the backend is not enabled on this process */
- if (px->bind_proc && !(px->bind_proc & pid_bit))
+ if (!(proc_mask(px->bind_proc) & pid_bit))
return 1;
if (!appctx->ctx.cli.p1)
continue;
/* we don't want to list a backend which is bound to this process */
- if (curproxy->bind_proc && !(curproxy->bind_proc & pid_bit))
+ if (!(proc_mask(curproxy->bind_proc) & pid_bit))
continue;
chunk_appendf(&trash, "%s\n", curproxy->id);