]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
selftests/futex: Fix futex_cmp_requeue_pi() error handling
authorDarren Hart <dvhart@infradead.org>
Mon, 20 Jul 2015 22:48:37 +0000 (15:48 -0700)
committerShuah Khan <shuahkh@osg.samsung.com>
Tue, 21 Jul 2015 00:29:38 +0000 (18:29 -0600)
An earlier (pre-kernel-integration) refactoring of this code mistakenly
replaced the error condition, <, with a >. Use < to detect an error as
opposed to a successful requeue or signal race.

Reported-by: David Binderman <dcb314@hotmail.com>
Cc: Shuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
tools/testing/selftests/futex/functional/futex_requeue_pi_signal_restart.c

index 7f0c756993af15a0b5cb99ba50dd6f7d0dfca226..3d7dc6afc3f8f9459ca407ee5a16b1b2c9a8119b 100644 (file)
@@ -191,7 +191,7 @@ int main(int argc, char *argv[])
                if (res > 0) {
                        atomic_set(&requeued, 1);
                        break;
-               } else if (res > 0) {
+               } else if (res < 0) {
                        error("FUTEX_CMP_REQUEUE_PI failed\n", errno);
                        ret = RET_ERROR;
                        break;