From: Roman Pen Date: Sat, 23 Apr 2016 11:44:09 +0000 (+0200) Subject: btreplay: fix sched_{set|get}affinity X-Git-Tag: blktrace-1.2.0~19 X-Git-Url: https://git.kernel.dk/?p=blktrace.git;a=commitdiff_plain;h=7338236ab386515bbcecf5c05bca6a034c12d0b9 btreplay: fix sched_{set|get}affinity getpid() is a pid of a process, at least tid must be provided. But if zero is passed, then calling thread will be used. That exactly what is needed. Signed-off-by: Roman Pen Cc: Jens Axboe Cc: Signed-off-by: Jens Axboe --- diff --git a/btreplay/btreplay.c b/btreplay/btreplay.c index 2a1525e..5bf47ff 100644 --- a/btreplay/btreplay.c +++ b/btreplay/btreplay.c @@ -513,7 +513,7 @@ realloc: size = CPU_ALLOC_SIZE(nrcpus); CPU_ZERO_S(size, cpus); - if (sched_getaffinity(getpid(), size, cpus)) { + if (sched_getaffinity(0, size, cpus)) { if( errno == EINVAL && nrcpus < (4096<<4) ) { CPU_FREE(cpus); nrcpus <<= 1; @@ -552,16 +552,17 @@ static void pin_to_cpu(struct thr_info *tip) CPU_ZERO_S(size, cpus); CPU_SET_S(tip->cpu, size, cpus); - if (sched_setaffinity(getpid(), size, cpus)) { + if (sched_setaffinity(0, size, cpus)) { fatal("sched_setaffinity", ERR_SYSCALL, "Failed to pin CPU\n"); /*NOTREACHED*/ } + assert(tip->cpu == sched_getcpu()); if (verbose > 1) { int i; cpu_set_t *now = CPU_ALLOC(ncpus); - (void)sched_getaffinity(getpid(), size, now); + (void)sched_getaffinity(0, size, now); fprintf(tip->vfp, "Pinned to CPU %02d ", tip->cpu); for (i = 0; i < ncpus; i++) fprintf(tip->vfp, "%1d", CPU_ISSET_S(i, size, now));