/* vi: set sw=4 ts=4: */ /* * taskset - retrieve or set a processes' CPU affinity * Copyright (c) 2006 Bernhard Fischer * * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ #include #include "libbb.h" #if ENABLE_FEATURE_TASKSET_FANCY #define TASKSET_PRINTF_MASK "%s" #define from_cpuset(x) __from_cpuset(&x) /* craft a string from the mask */ static char *__from_cpuset(cpu_set_t *mask) { int i; char *ret = 0, *str = xzalloc(9); for (i = CPU_SETSIZE - 4; i >= 0; i -= 4) { char val = 0; int off; for (off = 0; off <= 3; ++off) if (CPU_ISSET(i+off, mask)) val |= 1< ...rest.is.ignored..." */ aff = pid_str; pid_str = *argv; /* NB: *argv != NULL in this case */ } /* else it was just "-p ", and *argv == NULL */ pid = xatoul_range(pid_str, 1, ((unsigned)(pid_t)ULONG_MAX) >> 1); } else { aff = *argv++; /* */ if (!*argv) bb_show_usage(); } current_new = "current\0new"; if (opt_p) { print_aff: if (sched_getaffinity(pid, sizeof(mask), &mask) < 0) bb_perror_msg_and_die("can't %cet pid %d's affinity", 'g', pid); printf("pid %d's %s affinity mask: "TASKSET_PRINTF_MASK"\n", pid, current_new, from_cpuset(mask)); if (!*argv) { /* Either it was just "-p ", * or it was "-p " and we came here * for the second time (see goto below) */ return EXIT_SUCCESS; } *argv = NULL; current_new += 8; /* "new" */ } { /* Affinity was specified, translate it into cpu_set_t */ unsigned i; /* Do not allow zero mask: */ unsigned long long m = xstrtoull_range(aff, 0, 1, ULLONG_MAX); enum { CNT_BIT = CPU_SETSIZE < sizeof(m)*8 ? CPU_SETSIZE : sizeof(m)*8 }; CPU_ZERO(&mask); for (i = 0; i < CNT_BIT; i++) { unsigned long long bit = (1ULL << i); if (bit & m) CPU_SET(i, &mask); } } /* Set pid's or our own (pid==0) affinity */ if (sched_setaffinity(pid, sizeof(mask), &mask)) bb_perror_msg_and_die("can't %cet pid %d's affinity", 's', pid); if (!*argv) /* "-p [...ignored...]" */ goto print_aff; /* print new affinity and exit */ BB_EXECVP(*argv, argv); bb_simple_perror_msg_and_die(*argv); }