Commit 8a37b312 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Comment on struct sess size issues.

parent de08ec08
......@@ -624,7 +624,15 @@ struct req {
};
/*--------------------------------------------------------------------*/
/*--------------------------------------------------------------------
* Struct sess is a high memory-load structure because sessions typically
* hang around the waiter for relatively long time.
*
* The size goal for struct sess + struct memitem is <512 bytes
*
* Getting down to the next relevant size (<256 bytes because of how malloc
* works, is not realistic without a lot of code changes.
*/
struct sess {
unsigned magic;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment