diff options
author | Andy Grover <andy.grover@oracle.com> | 2010-03-29 19:52:12 -0400 |
---|---|---|
committer | Andy Grover <andy.grover@oracle.com> | 2010-09-08 21:12:19 -0400 |
commit | ab1a6926f589c51e7a57ce7544d85272c4acc854 (patch) | |
tree | dbe19519db76e5dea8d01864fcd4c39441d26b64 | |
parent | cf4b7389ee812817deeb11da1422004e01b50646 (diff) |
RDS: rds_message_unmapped() doesn't need to check if queue active
If the queue has nobody on it, then wake_up does nothing.
Signed-off-by: Andy Grover <andy.grover@oracle.com>
-rw-r--r-- | net/rds/message.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/rds/message.c b/net/rds/message.c index dd915e3e492d..9122b5392111 100644 --- a/net/rds/message.c +++ b/net/rds/message.c | |||
@@ -406,8 +406,7 @@ void rds_message_wait(struct rds_message *rm) | |||
406 | void rds_message_unmapped(struct rds_message *rm) | 406 | void rds_message_unmapped(struct rds_message *rm) |
407 | { | 407 | { |
408 | clear_bit(RDS_MSG_MAPPED, &rm->m_flags); | 408 | clear_bit(RDS_MSG_MAPPED, &rm->m_flags); |
409 | if (waitqueue_active(&rds_message_flush_waitq)) | 409 | wake_up(&rds_message_flush_waitq); |
410 | wake_up(&rds_message_flush_waitq); | ||
411 | } | 410 | } |
412 | EXPORT_SYMBOL_GPL(rds_message_unmapped); | 411 | EXPORT_SYMBOL_GPL(rds_message_unmapped); |
413 | 412 | ||