All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Reduce overhead in find_domain_by_id() [0/2]
@ 2006-12-06  1:35 Santos, Jose Renato G
  2006-12-06  8:43 ` Keir Fraser
  2006-12-06 10:41 ` Emmanuel Ackaouy
  0 siblings, 2 replies; 9+ messages in thread
From: Santos, Jose Renato G @ 2006-12-06  1:35 UTC (permalink / raw)
  To: xen-devel; +Cc: Yoshio Turner, Jose Renato Santos, G John Janakiraman


This is a set of patches to improve performance of find_domain_by_id().
find_domain_by_id shows up high in profiles for network I/O intensive
workloads.
Most of the cost for this function comes from 3 main functions (of
aproximate equal costs): 1)read_lock(), 2)read_unlock() and
3)get_domain().
These patches replace the lock used for accessing domain_list and
domain_hash with a lock free RCU scheme. Experiments confirm that the
cost of find_domain_by_id() is in fact reduced by 2/3. 
The patches apply cleanly to changeset 12732.

Renato

Patches:
  1/2 - Import linux RCU code into Xen
  2/2 - replace domlist_lock operations by RCU operations

Signed-off-by: Jose Renato Santos <jsantos@hpl.hp.com>

^ permalink raw reply	[flat|nested] 9+ messages in thread
* RE: [PATCH] Reduce overhead in find_domain_by_id() [0/2]
@ 2006-12-06 11:52 Apparao, Padmashree K
  2006-12-06 12:12 ` Keir Fraser
  0 siblings, 1 reply; 9+ messages in thread
From: Apparao, Padmashree K @ 2006-12-06 11:52 UTC (permalink / raw)
  To: Keir Fraser, Santos, Jose Renato G, xen-devel
  Cc: Yoshio Turner, Jose Renato Santos, G John Janakiraman


Keir,


Earlier this summer I had done some experiments with Iperf and found
that find_domain_id was consuming 7% of cpu while do_grant_table_op was
consuming 10.5%. A quick fix to figure what the upper bound of
performance gain was to remove the hash table lookups in
find_domain_by_id and we saw a 12% improvement in perf receive
performance.
The results of these finding were published in our paper at VTDC.
In that paper we also discuss how the inter vm communication by grant
tables was consuming a considerable amount of time and what could be
possibly done to optimize.

I will send the paper is a separate note to you and Renato.

Thanks
- Padma



-----Original Message-----
From: xen-devel-bounces@lists.xensource.com
[mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of Keir Fraser
Sent: Wednesday, December 06, 2006 12:44 AM
To: Santos, Jose Renato G; xen-devel@lists.xensource.com
Cc: Yoshio Turner; Jose Renato Santos; G John Janakiraman
Subject: Re: [Xen-devel] [PATCH] Reduce overhead in find_domain_by_id()
[0/2]

On 6/12/06 1:35 am, "Santos, Jose Renato G" <joserenato.santos@hp.com>
wrote:

> 
> This is a set of patches to improve performance of
find_domain_by_id().
> find_domain_by_id shows up high in profiles for network I/O intensive
> workloads.
> Most of the cost for this function comes from 3 main functions (of
> aproximate equal costs): 1)read_lock(), 2)read_unlock() and
> 3)get_domain().
> These patches replace the lock used for accessing domain_list and
> domain_hash with a lock free RCU scheme. Experiments confirm that the
> cost of find_domain_by_id() is in fact reduced by 2/3.
> The patches apply cleanly to changeset 12732.

Do you have numbers for performance improvement on a macro benchmark?

 -- Keir


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

end of thread, other threads:[~2006-12-08  4:17 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-06  1:35 [PATCH] Reduce overhead in find_domain_by_id() [0/2] Santos, Jose Renato G
2006-12-06  8:43 ` Keir Fraser
2006-12-06 10:41 ` Emmanuel Ackaouy
2006-12-07  4:07   ` Santos, Jose Renato G
  -- strict thread matches above, loose matches on Subject: below --
2006-12-06 11:52 Apparao, Padmashree K
2006-12-06 12:12 ` Keir Fraser
2006-12-07  3:49   ` Santos, Jose Renato G
2006-12-07 12:01     ` Keir Fraser
2006-12-08  4:17       ` Santos, Jose Renato G

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.