bmilekic 5c645322cc Make reference counting for mbuf clusters [only] work like in RELENG_4.
While I don't think this is the best solution, it certainly is the
fastest and in trying to find bottlenecks in network related code
I want this out of the way, so that I don't have to think about it.
What this means, for mbuf clusters anyway is:
- one less malloc() to do for every cluster allocation (replaced with
  a relatively quick calculation + assignment)
- no more free() in the cluster free case (replaced with empty space) :-)

This can offer a substantial throughput improvement, but it may not for
all cases.  Particularly noticable for larger buffer sends/recvs.
See http://people.freebsd.org/~bmilekic/code/measure2.txt for a rough
idea.
2002-07-30 21:06:27 +00:00
..
2002-06-19 20:44:48 +00:00
2002-07-20 02:56:34 +00:00
2002-06-29 17:26:22 +00:00
2002-06-30 03:01:44 +00:00
2002-07-26 08:07:55 +00:00
2002-06-29 17:26:22 +00:00
2002-07-30 12:02:41 +00:00