more
This commit is contained in:
parent
43d1015c37
commit
d64823d3a9
|
@ -33,6 +33,7 @@ struct SVArenaNode {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct SVMemAllocator {
|
struct SVMemAllocator {
|
||||||
|
T_REF_DECLARE()
|
||||||
TD_DLIST_NODE(SVMemAllocator);
|
TD_DLIST_NODE(SVMemAllocator);
|
||||||
uint64_t capacity;
|
uint64_t capacity;
|
||||||
uint64_t ssize;
|
uint64_t ssize;
|
||||||
|
|
|
@ -30,7 +30,6 @@ struct SVBufPool {
|
||||||
|
|
||||||
int vnodeOpenBufPool(SVnode *pVnode) {
|
int vnodeOpenBufPool(SVnode *pVnode) {
|
||||||
uint64_t capacity;
|
uint64_t capacity;
|
||||||
// EVMemAllocatorT type = E_V_ARENA_ALLOCATOR;
|
|
||||||
|
|
||||||
if ((pVnode->pBufPool = (SVBufPool *)calloc(1, sizeof(SVBufPool))) == NULL) {
|
if ((pVnode->pBufPool = (SVBufPool *)calloc(1, sizeof(SVBufPool))) == NULL) {
|
||||||
/* TODO */
|
/* TODO */
|
||||||
|
|
|
@ -15,7 +15,8 @@
|
||||||
|
|
||||||
#include "vnodeDef.h"
|
#include "vnodeDef.h"
|
||||||
|
|
||||||
const SVnodeCfg defaultVnodeOptions = {.wsize = 96 * 1024 * 1024, .walCfg = {.level = TAOS_WAL_WRITE}}; /* TODO */
|
const SVnodeCfg defaultVnodeOptions = {
|
||||||
|
.wsize = 96 * 1024 * 1024, .ssize = 1 * 1024 * 1024, .lsize = 1024, .walCfg = {.level = TAOS_WAL_WRITE}}; /* TODO */
|
||||||
|
|
||||||
void vnodeOptionsInit(SVnodeCfg *pVnodeOptions) { /* TODO */
|
void vnodeOptionsInit(SVnodeCfg *pVnodeOptions) { /* TODO */
|
||||||
vnodeOptionsCopy(pVnodeOptions, &defaultVnodeOptions);
|
vnodeOptionsCopy(pVnodeOptions, &defaultVnodeOptions);
|
||||||
|
|
Loading…
Reference in New Issue