summaryrefslogtreecommitdiffstats
path: root/sys/compat/linuxkpi/common/src
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2016-05-27 07:33:49 +0000
committerhselasky <hselasky@FreeBSD.org>2016-05-27 07:33:49 +0000
commit80f7038dc0fa7ad6798fab2a2fffca92d42c920b (patch)
tree65dd27d45c2db66bbe6a7bd64aa4b6de01fe0697 /sys/compat/linuxkpi/common/src
parent99dd54c8161f3c182c8e3b322f2cd97be31c6f36 (diff)
downloadFreeBSD-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/src')
-rw-r--r--sys/compat/linuxkpi/common/src/linux_compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linuxkpi/common/src/linux_compat.c b/sys/compat/linuxkpi/common/src/linux_compat.c
index ae72213..d1011f6 100644
--- a/sys/compat/linuxkpi/common/src/linux_compat.c
+++ b/sys/compat/linuxkpi/common/src/linux_compat.c
@@ -1096,7 +1096,7 @@ linux_complete_common(struct completion *c, int all)
long
linux_wait_for_common(struct completion *c, int flags)
{
- if (unlikely(SCHEDULER_STOPPED()))
+ if (SCHEDULER_STOPPED())
return (0);
if (flags != 0)
@@ -1128,7 +1128,7 @@ linux_wait_for_timeout_common(struct completion *c, long timeout, int flags)
{
long end = jiffies + timeout;
- if (unlikely(SCHEDULER_STOPPED()))
+ if (SCHEDULER_STOPPED())
return (0);
if (flags != 0)
OpenPOWER on IntegriCloud