public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] IB/ehca: Reduce number of spin_lock/spin_unlocks in ehca_poll_eqs
@ 2009-11-27  3:13 Anton Blanchard
  2009-11-30  5:26 ` Roland Dreier
  0 siblings, 1 reply; 3+ messages in thread
From: Anton Blanchard @ 2009-11-27  3:13 UTC (permalink / raw)
  To: Hoang-Nam Nguyen, Christoph Raisch, Stefan Roscher,
	Alexander Schmidt, Joachim
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA


ftrace function_graph shows ehca_poll_eqs taking and dropping a spinlock
a lot:

 16)               |          .ehca_poll_eqs() {
 16)   0.492 us    |            ._spin_lock();
 16)   0.504 us    |            ._spin_lock_irqsave();
 16)   0.502 us    |            ._spin_unlock_irqrestore();
 16)   0.490 us    |            ._spin_lock_irqsave();
 16)   0.488 us    |            ._spin_unlock_irqrestore();
 16)   0.488 us    |            ._spin_lock_irqsave();
 16)   0.488 us    |            ._spin_unlock_irqrestore();
 16)   0.490 us    |            ._spin_lock_irqsave();
 16)   0.492 us    |            ._spin_unlock_irqrestore();

Since it's all the same spinlock, we can just take and drop it once.

Signed-off-by: Anton Blanchard <anton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org>
---

Index: linux.trees.git/drivers/infiniband/hw/ehca/ehca_main.c
===================================================================
--- linux.trees.git.orig/drivers/infiniband/hw/ehca/ehca_main.c	2009-11-27 10:17:29.000000000 +1100
+++ linux.trees.git/drivers/infiniband/hw/ehca/ehca_main.c	2009-11-27 10:19:08.000000000 +1100
@@ -957,15 +957,17 @@ void ehca_poll_eqs(unsigned long data)
 			int max = 3;
 			volatile u64 q_ofs, q_ofs2;
 			unsigned long flags;
+
 			spin_lock_irqsave(&eq->spinlock, flags);
+
 			q_ofs = eq->ipz_queue.current_q_offset;
-			spin_unlock_irqrestore(&eq->spinlock, flags);
 			do {
-				spin_lock_irqsave(&eq->spinlock, flags);
 				q_ofs2 = eq->ipz_queue.current_q_offset;
-				spin_unlock_irqrestore(&eq->spinlock, flags);
 				max--;
 			} while (q_ofs == q_ofs2 && max > 0);
+
+			spin_unlock_irqrestore(&eq->spinlock, flags);
+
 			if (q_ofs == q_ofs2)
 				ehca_process_eq(shca, 0);
 		}
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] IB/ehca: Reduce number of spin_lock/spin_unlocks in ehca_poll_eqs
  2009-11-27  3:13 [PATCH] IB/ehca: Reduce number of spin_lock/spin_unlocks in ehca_poll_eqs Anton Blanchard
@ 2009-11-30  5:26 ` Roland Dreier
       [not found]   ` <adad430y450.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Roland Dreier @ 2009-11-30  5:26 UTC (permalink / raw)
  To: Anton Blanchard
  Cc: Hoang-Nam Nguyen, Christoph Raisch, Stefan Roscher,
	Alexander Schmidt, Joachim Fenkes,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA


 > +
 >  			spin_lock_irqsave(&eq->spinlock, flags);
 > +
 >  			q_ofs = eq->ipz_queue.current_q_offset;
 > -			spin_unlock_irqrestore(&eq->spinlock, flags);
 >  			do {
 > -				spin_lock_irqsave(&eq->spinlock, flags);
 >  				q_ofs2 = eq->ipz_queue.current_q_offset;
 > -				spin_unlock_irqrestore(&eq->spinlock, flags);
 >  				max--;
 >  			} while (q_ofs == q_ofs2 && max > 0);
 > +
 > +			spin_unlock_irqrestore(&eq->spinlock, flags);
 > +

Does this loop have to drop the lock to give the EQ code a chance to
update the queue pointer?  If I understand this correctly, the EQ
polling code is just trying to have a fallback if interrupts don't
work...

 - R.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] IB/ehca: Reduce number of spin_lock/spin_unlocks in ehca_poll_eqs
       [not found]   ` <adad430y450.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
@ 2009-11-30  8:19     ` Hoang-Nam Nguyen
  0 siblings, 0 replies; 3+ messages in thread
From: Hoang-Nam Nguyen @ 2009-11-30  8:19 UTC (permalink / raw)
  To: Roland Dreier
  Cc: Alexander Schmidt, Anton Blanchard, Christoph Raisch,
	Joachim Fenkes, linux-rdma-u79uwXL29TY76Z2rM5mHXA, Stefan Roscher

Hi Roland,
Yes, you're right. The loop below is a fallback to detect possibly missing
irq events
by checking the eq pointer, which can be changed by irq handler.
@Anton, for above reason we can not remove the lock/unlock within the loop.
Thanks,
Nam

Roland Dreier <rdreier-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org> wrote on 30.11.2009 06:26:35:

> [image removed]
>
> Re: [PATCH] IB/ehca: Reduce number of spin_lock/spin_unlocks in
ehca_poll_eqs
>
> Roland Dreier
>
> to:
>
> Anton Blanchard
>
> 30.11.2009 06:26
>
> Cc:
>
> Hoang-Nam Nguyen, Christoph Raisch, Stefan Roscher, Alexander
> Schmidt, Joachim Fenkes, linux-rdma
>
>
>  > +
>  >           spin_lock_irqsave(&eq->spinlock, flags);
>  > +
>  >           q_ofs = eq->ipz_queue.current_q_offset;
>  > -         spin_unlock_irqrestore(&eq->spinlock, flags);
>  >           do {
>  > -            spin_lock_irqsave(&eq->spinlock, flags);
>  >              q_ofs2 = eq->ipz_queue.current_q_offset;
>  > -            spin_unlock_irqrestore(&eq->spinlock, flags);
>  >              max--;
>  >           } while (q_ofs == q_ofs2 && max > 0);
>  > +
>  > +         spin_unlock_irqrestore(&eq->spinlock, flags);
>  > +
>
> Does this loop have to drop the lock to give the EQ code a chance to
> update the queue pointer?  If I understand this correctly, the EQ
> polling code is just trying to have a fallback if interrupts don't
> work...
>
>  - R.

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-11-30  8:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-27  3:13 [PATCH] IB/ehca: Reduce number of spin_lock/spin_unlocks in ehca_poll_eqs Anton Blanchard
2009-11-30  5:26 ` Roland Dreier
     [not found]   ` <adad430y450.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
2009-11-30  8:19     ` Hoang-Nam Nguyen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox