diff options
author | hselasky <hselasky@FreeBSD.org> | 2016-05-27 07:33:49 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2016-05-27 07:33:49 +0000 |
commit | 80f7038dc0fa7ad6798fab2a2fffca92d42c920b (patch) | |
tree | 65dd27d45c2db66bbe6a7bd64aa4b6de01fe0697 /sys/compat/linuxkpi/common/include/linux/wait.h | |
parent | 99dd54c8161f3c182c8e3b322f2cd97be31c6f36 (diff) | |
download | FreeBSD-src-80f7038dc0fa7ad6798fab2a2fffca92d42c920b.zip FreeBSD-src-80f7038dc0fa7ad6798fab2a2fffca92d42c920b.tar.gz |
The SCHEDULER_STOPPED() macro already contains a predict false statement.
Remove superfluous unlikely() wrapper.
Suggested by: glebius
MFC after: 1 week
Sponsored by: Mellanox Technologies
Diffstat (limited to 'sys/compat/linuxkpi/common/include/linux/wait.h')
-rw-r--r-- | sys/compat/linuxkpi/common/include/linux/wait.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/wait.h b/sys/compat/linuxkpi/common/include/linux/wait.h index 9624c84..7ae6464 100644 --- a/sys/compat/linuxkpi/common/include/linux/wait.h +++ b/sys/compat/linuxkpi/common/include/linux/wait.h @@ -82,7 +82,7 @@ do { \ void *c = &(q).wchan; \ if (!(cond)) { \ for (;;) { \ - if (unlikely(SCHEDULER_STOPPED())) \ + if (SCHEDULER_STOPPED()) \ break; \ sleepq_lock(c); \ if (cond) { \ @@ -103,7 +103,7 @@ do { \ _error = 0; \ if (!(cond)) { \ for (; _error == 0;) { \ - if (unlikely(SCHEDULER_STOPPED())) \ + if (SCHEDULER_STOPPED()) \ break; \ sleepq_lock(c); \ if (cond) { \ @@ -128,7 +128,7 @@ do { \ \ if (!(cond)) { \ for (; __rc == 0;) { \ - if (unlikely(SCHEDULER_STOPPED())) \ + if (SCHEDULER_STOPPED()) \ break; \ sleepq_lock(c); \ if (cond) { \ |