commit | c16ed3b090df1d8452d4dea85400d9100f89e712 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat Jan 01 18:22:20 2022 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Sun Jan 02 19:35:26 2022 +0100 |
tree | ed537c6f5eca2aa2c5233df5afbbf9aff275fedb | |
parent | b46674a2839950769113c298d880ed01ca12339a [diff] |
MINOR: pool: introduce pool_item to represent shared pool items In order to support batch allocation from/to shared pools, we'll have to support a specific representation for pool objects. The new pool_item structure will be used for this. For now it only contains a "next" pointer that matches exactly the current storage model. The few functions that deal with the shared pool entries were adapted to use the new type. There is no functionality difference at this point.