All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch trivial 2.5.25] dst.c cleanup -- dst_total
@ 2002-07-12 10:57 Ravikiran G Thirumalai
  2002-07-12 22:03 ` David S. Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Ravikiran G Thirumalai @ 2002-07-12 10:57 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, David S. Miller , Patch Monkey

dst_total  is read only #if RT_CACHE_DEBUG >=2 , but is incremented and
decremented during dst_alloc and dst_destroy.  Following patch conditions
the atomic_inc and atomic_decs to dst_total with RT_CACHE_DEBUG >= 2 

dst_alloc routine (which incements dst_total) shows up with the tests 
suggested by Dave Miller for measuring RCU route cache changes. 
Profile ticks reduce by 15 % for dst_alloc on a 4 way with  the foll
patch (with the default -- RT_CACHE_DEBUG = 0 ).

-Kiran


--- linux-2.5.25-pure/net/core/dst.c	Sat Jul  6 05:12:31 2002
+++ linux-2.5.25/net/core/dst.c	Fri Jul 12 13:23:09 2002
@@ -29,7 +29,9 @@
  * 4) All operations modify state, so a spinlock is used.
  */
 static struct dst_entry 	*dst_garbage_list;
+#if RT_CACHE_DEBUG >= 2 
 static atomic_t			 dst_total = ATOMIC_INIT(0);
+#endif
 static spinlock_t		 dst_lock = SPIN_LOCK_UNLOCKED;
 
 static unsigned long dst_gc_timer_expires;
@@ -108,7 +110,9 @@
 	dst->lastuse = jiffies;
 	dst->input = dst_discard;
 	dst->output = dst_blackhole;
+#if RT_CACHE_DEBUG >= 2 
 	atomic_inc(&dst_total);
+#endif
 	atomic_inc(&ops->entries);
 	return dst;
 }
@@ -158,7 +162,9 @@
 		dst->ops->destroy(dst);
 	if (dst->dev)
 		dev_put(dst->dev);
+#if RT_CACHE_DEBUG >= 2 
 	atomic_dec(&dst_total);
+#endif
 	kmem_cache_free(dst->ops->kmem_cachep, dst);
 }
 

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

* Re: [patch trivial 2.5.25] dst.c cleanup -- dst_total
  2002-07-12 10:57 [patch trivial 2.5.25] dst.c cleanup -- dst_total Ravikiran G Thirumalai
@ 2002-07-12 22:03 ` David S. Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2002-07-12 22:03 UTC (permalink / raw)
  To: kiran; +Cc: torvalds, linux-kernel, trivial


Patch applied, thanks.

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

end of thread, other threads:[~2002-07-12 22:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-12 10:57 [patch trivial 2.5.25] dst.c cleanup -- dst_total Ravikiran G Thirumalai
2002-07-12 22:03 ` David S. Miller

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.