From 517a1a48fd672893bc3092ce255f551ef4d8ed2a Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 27 Feb 2013 12:32:43 +0100 Subject: [PATCH] Revert "debug: only do getpid() if we have to" This reverts commit 8037423f08649a7c3378dadf95327d6553105264. --- debug.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debug.c b/debug.c index ecee8e35..5e980633 100644 --- a/debug.c +++ b/debug.c @@ -11,8 +11,9 @@ void __dprint(int type, const char *str, ...) assert(type < FD_DEBUG_MAX); + pid = getpid(); if (fio_debug_jobp && *fio_debug_jobp != -1U - && (pid = getpid() != *fio_debug_jobp)) + && pid != *fio_debug_jobp) return; log_local("%-8s ", debug_levels[type].name); -- 2.25.1