[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1362128628-18457-1-git-send-email-lig.fnst@cn.fujitsu.com>
Date: Fri, 1 Mar 2013 17:03:47 +0800
From: liguang <lig.fnst@...fujitsu.com>
To: luciarosculete@...il.com, jkosina@...e.cz,
linux-kernel@...r.kernel.org
Cc: liguang <lig.fnst@...fujitsu.com>
Subject: [PATCH 1/2] semaphore: give an unlikely for down's timeout
Signed-off-by: liguang <lig.fnst@...fujitsu.com>
---
kernel/semaphore.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/semaphore.c b/kernel/semaphore.c
index 4567fc0..9c7017d 100644
--- a/kernel/semaphore.c
+++ b/kernel/semaphore.c
@@ -214,7 +214,7 @@ static inline int __sched __down_common(struct semaphore *sem, long state,
for (;;) {
if (signal_pending_state(state, task))
goto interrupted;
- if (timeout <= 0)
+ if (unlikely(timeout <= 0))
goto timed_out;
__set_task_state(task, state);
raw_spin_unlock_irq(&sem->lock);
--
1.7.2.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists