Staticize malloc types.

Approved by:	lstewart
MFC after:	1 week
This commit is contained in:
Sergey Kandaurov 2011-04-13 11:28:46 +00:00
parent 54fc853acf
commit 6bed196c35
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=220592
6 changed files with 10 additions and 18 deletions

View File

@ -58,8 +58,7 @@ struct hhook {
STAILQ_ENTRY(hhook) hhk_next;
};
MALLOC_DECLARE(M_HHOOK);
MALLOC_DEFINE(M_HHOOK, "hhook", "Helper hooks are linked off hhook_head lists");
static MALLOC_DEFINE(M_HHOOK, "hhook", "Helper hooks are linked off hhook_head lists");
LIST_HEAD(hhookheadhead, hhook_head);
VNET_DEFINE(struct hhookheadhead, hhook_head_list);

View File

@ -127,8 +127,7 @@ static VNET_DEFINE(uint32_t, chd_qthresh) = 20;
#define V_chd_loss_fair VNET(chd_loss_fair)
#define V_chd_use_max VNET(chd_use_max)
MALLOC_DECLARE(M_CHD);
MALLOC_DEFINE(M_CHD, "chd data",
static MALLOC_DEFINE(M_CHD, "chd data",
"Per connection data required for the CHD congestion control algorithm");
struct cc_algo chd_cc_algo = {

View File

@ -98,8 +98,7 @@ struct cubic {
int t_last_cong;
};
MALLOC_DECLARE(M_CUBIC);
MALLOC_DEFINE(M_CUBIC, "cubic data",
static MALLOC_DEFINE(M_CUBIC, "cubic data",
"Per connection data required for the CUBIC congestion control algorithm");
struct cc_algo cubic_cc_algo = {

View File

@ -173,8 +173,7 @@ static VNET_DEFINE(u_int, htcp_rtt_scaling) = 0;
#define V_htcp_adaptive_backoff VNET(htcp_adaptive_backoff)
#define V_htcp_rtt_scaling VNET(htcp_rtt_scaling)
MALLOC_DECLARE(M_HTCP);
MALLOC_DEFINE(M_HTCP, "htcp data",
static MALLOC_DEFINE(M_HTCP, "htcp data",
"Per connection data required for the HTCP congestion control algorithm");
struct cc_algo htcp_cc_algo = {

View File

@ -105,8 +105,7 @@ static VNET_DEFINE(uint32_t, vegas_beta) = 3;
#define V_vegas_alpha VNET(vegas_alpha)
#define V_vegas_beta VNET(vegas_beta)
MALLOC_DECLARE(M_VEGAS);
MALLOC_DEFINE(M_VEGAS, "vegas data",
static MALLOC_DEFINE(M_VEGAS, "vegas data",
"Per connection data required for the Vegas congestion control algorithm");
struct cc_algo vegas_cc_algo = {

View File

@ -156,14 +156,11 @@ __FBSDID("$FreeBSD$");
#define THIRD_OCTET(X) (((X) & 0x0000FF00) >> 8)
#define FOURTH_OCTET(X) ((X) & 0x000000FF)
MALLOC_DECLARE(M_SIFTR);
MALLOC_DEFINE(M_SIFTR, "siftr", "dynamic memory used by SIFTR");
MALLOC_DECLARE(M_SIFTR_PKTNODE);
MALLOC_DEFINE(M_SIFTR_PKTNODE, "siftr_pktnode", "SIFTR pkt_node struct");
MALLOC_DECLARE(M_SIFTR_HASHNODE);
MALLOC_DEFINE(M_SIFTR_HASHNODE, "siftr_hashnode", "SIFTR flow_hash_node struct");
static MALLOC_DEFINE(M_SIFTR, "siftr", "dynamic memory used by SIFTR");
static MALLOC_DEFINE(M_SIFTR_PKTNODE, "siftr_pktnode",
"SIFTR pkt_node struct");
static MALLOC_DEFINE(M_SIFTR_HASHNODE, "siftr_hashnode",
"SIFTR flow_hash_node struct");
/* Used as links in the pkt manager queue. */
struct pkt_node {