tdbPCache.c 12.0 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
H
Hongze Cheng 已提交
15 16
#include "tdbInt.h"

H
Hongze Cheng 已提交
17 18
// #include <sys/types.h>
// #include <unistd.h>
H
Hongze Cheng 已提交
19

H
more  
Hongze Cheng 已提交
20
struct SPCache {
H
Hongze Cheng 已提交
21 22 23
  int         szPage;
  int         nPages;
  SPage     **aPage;
H
Hongze Cheng 已提交
24 25 26 27 28 29 30 31
  tdb_mutex_t mutex;
  int         nFree;
  SPage      *pFree;
  int         nPage;
  int         nHash;
  SPage     **pgHash;
  int         nRecyclable;
  SPage       lru;
H
Hongze Cheng 已提交
32 33
};

wafwerar's avatar
wafwerar 已提交
34 35 36
static inline uint32_t tdbPCachePageHash(const SPgid *pPgid) {
  uint32_t *t = (uint32_t *)((pPgid)->fileid);
  return (uint32_t)(t[0] + t[1] + t[2] + t[3] + t[4] + t[5] + (pPgid)->pgno);
wafwerar's avatar
wafwerar 已提交
37
}
H
Hongze Cheng 已提交
38

H
refact  
Hongze Cheng 已提交
39
static int    tdbPCacheOpenImpl(SPCache *pCache);
H
Hongze Cheng 已提交
40
static SPage *tdbPCacheFetchImpl(SPCache *pCache, const SPgid *pPgid, TXN *pTxn);
H
Hongze Cheng 已提交
41 42 43 44
static void   tdbPCachePinPage(SPCache *pCache, SPage *pPage);
static void   tdbPCacheRemovePageFromHash(SPCache *pCache, SPage *pPage);
static void   tdbPCacheAddPageToHash(SPCache *pCache, SPage *pPage);
static void   tdbPCacheUnpinPage(SPCache *pCache, SPage *pPage);
H
Hongze Cheng 已提交
45 46 47 48 49 50
static int    tdbPCacheCloseImpl(SPCache *pCache);

static void tdbPCacheInitLock(SPCache *pCache) { tdbMutexInit(&(pCache->mutex), NULL); }
static void tdbPCacheDestroyLock(SPCache *pCache) { tdbMutexDestroy(&(pCache->mutex)); }
static void tdbPCacheLock(SPCache *pCache) { tdbMutexLock(&(pCache->mutex)); }
static void tdbPCacheUnlock(SPCache *pCache) { tdbMutexUnlock(&(pCache->mutex)); }
H
Hongze Cheng 已提交
51

H
Hongze Cheng 已提交
52
int tdbPCacheOpen(int pageSize, int cacheSize, SPCache **ppCache) {
H
more  
Hongze Cheng 已提交
53
  SPCache *pCache;
H
Hongze Cheng 已提交
54 55
  void    *pPtr;
  SPage   *pPgHdr;
H
Hongze Cheng 已提交
56

H
Hongze Cheng 已提交
57
  pCache = (SPCache *)tdbOsCalloc(1, sizeof(*pCache) + sizeof(SPage *) * cacheSize);
H
more  
Hongze Cheng 已提交
58
  if (pCache == NULL) {
H
Hongze Cheng 已提交
59 60 61
    return -1;
  }

H
Hongze Cheng 已提交
62 63
  pCache->szPage = pageSize;
  pCache->nPages = cacheSize;
H
Hongze Cheng 已提交
64 65 66 67 68
  pCache->aPage = (SPage **)tdbOsCalloc(cacheSize, sizeof(SPage *));
  if (pCache->aPage == NULL) {
    tdbOsFree(pCache);
    return -1;
  }
H
Hongze Cheng 已提交
69

H
more  
Hongze Cheng 已提交
70
  if (tdbPCacheOpenImpl(pCache) < 0) {
H
Hongze Cheng 已提交
71
    tdbOsFree(pCache);
H
more  
Hongze Cheng 已提交
72
    return -1;
H
Hongze Cheng 已提交
73 74
  }

H
more  
Hongze Cheng 已提交
75
  *ppCache = pCache;
H
Hongze Cheng 已提交
76 77 78
  return 0;
}

H
Hongze Cheng 已提交
79
int tdbPCacheClose(SPCache *pCache) {
H
Hongze Cheng 已提交
80 81
  if (pCache) {
    tdbPCacheCloseImpl(pCache);
H
Hongze Cheng 已提交
82
    tdbOsFree(pCache->aPage);
H
Hongze Cheng 已提交
83 84
    tdbOsFree(pCache);
  }
H
Hongze Cheng 已提交
85
  return 0;
H
Hongze Cheng 已提交
86 87
}

H
Hongze Cheng 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
// TODO:
// if (pPage->id >= pCache->nPages) {
//   free(pPage);
//   pCache->aPage[pPage->id] = NULL;
// } else {
//   add to free list
// }

static int tdbPCacheAlterImpl(SPCache *pCache, int32_t nPage) {
  if (pCache->nPages == nPage) {
    return 0;
  } else if (pCache->nPages < nPage) {
    SPage **aPage = tdbOsCalloc(nPage, sizeof(SPage *));
    if (aPage == NULL) {
      return -1;
    }

H
Hongze Cheng 已提交
105
    for (int32_t iPage = pCache->nPages; iPage < nPage; iPage++) {
H
Hongze Cheng 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119
      if (tdbPageCreate(pCache->szPage, &aPage[iPage], tdbDefaultMalloc, NULL) < 0) {
        // TODO: handle error
        return -1;
      }

      // pPage->pgid = 0;
      aPage[iPage]->isAnchor = 0;
      aPage[iPage]->isLocal = 1;
      aPage[iPage]->nRef = 0;
      aPage[iPage]->pHashNext = NULL;
      aPage[iPage]->pLruNext = NULL;
      aPage[iPage]->pLruPrev = NULL;
      aPage[iPage]->pDirtyNext = NULL;

H
Hongze Cheng 已提交
120 121 122 123 124 125
      // add to local list
      aPage[iPage]->id = iPage;
    }

    // add page to free list
    for (int32_t iPage = pCache->nPages; iPage < nPage; iPage++) {
H
Hongze Cheng 已提交
126 127 128 129 130 131 132 133 134 135 136
      aPage[iPage]->pFreeNext = pCache->pFree;
      pCache->pFree = aPage[iPage];
      pCache->nFree++;
    }

    for (int32_t iPage = 0; iPage < pCache->nPage; iPage++) {
      aPage[iPage] = pCache->aPage[iPage];
    }

    tdbOsFree(pCache->aPage);
    pCache->aPage = aPage;
H
Hongze Cheng 已提交
137 138 139 140 141
  } else {
    for (SPage **ppPage = &pCache->pFree; *ppPage;) {
      int32_t iPage = (*ppPage)->id;

      if (iPage >= nPage) {
H
Hongze Cheng 已提交
142 143 144 145
        SPage *pPage = *ppPage;
        *ppPage = pPage->pFreeNext;
        pCache->aPage[pPage->id] = NULL;
        tdbPageDestroy(pPage, tdbDefaultFree, NULL);
H
Hongze Cheng 已提交
146 147 148 149 150
        pCache->nFree--;
      } else {
        ppPage = &(*ppPage)->pFreeNext;
      }
    }
H
Hongze Cheng 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
  }

  pCache->nPages = nPage;
  return 0;
}

int tdbPCacheAlter(SPCache *pCache, int32_t nPage) {
  int ret = 0;

  tdbPCacheLock(pCache);

  ret = tdbPCacheAlterImpl(pCache, nPage);

  tdbPCacheUnlock(pCache);

  return ret;
}

H
Hongze Cheng 已提交
169
SPage *tdbPCacheFetch(SPCache *pCache, const SPgid *pPgid, TXN *pTxn) {
H
refact  
Hongze Cheng 已提交
170
  SPage *pPage;
H
Hongze Cheng 已提交
171
  i32    nRef;
H
more  
Hongze Cheng 已提交
172

H
Hongze Cheng 已提交
173
  tdbPCacheLock(pCache);
H
Hongze Cheng 已提交
174

H
Hongze Cheng 已提交
175
  pPage = tdbPCacheFetchImpl(pCache, pPgid, pTxn);
H
Hongze Cheng 已提交
176
  if (pPage) {
H
Hongze Cheng 已提交
177
    nRef = tdbRefPage(pPage);
H
Hongze Cheng 已提交
178 179
  }

H
Hongze Cheng 已提交
180 181
  ASSERT(pPage);

H
Hongze Cheng 已提交
182
  tdbPCacheUnlock(pCache);
H
more  
Hongze Cheng 已提交
183

H
Hongze Cheng 已提交
184 185 186
  // printf("thread %" PRId64 " fetch page %d pgno %d pPage %p nRef %d\n", taosGetSelfPthreadId(), pPage->id,
  //        TDB_PAGE_PGNO(pPage), pPage, nRef);

M
Minglei Jin 已提交
187
  tdbDebug("pcache/fetch page %p/%d/%d/%d", pPage, TDB_PAGE_PGNO(pPage), pPage->id, nRef);
H
more  
Hongze Cheng 已提交
188
  return pPage;
H
Hongze Cheng 已提交
189 190
}

H
Hongze Cheng 已提交
191
void tdbPCacheRelease(SPCache *pCache, SPage *pPage, TXN *pTxn) {
H
Hongze Cheng 已提交
192 193
  i32 nRef;

H
Hongze Cheng 已提交
194 195
  ASSERT(pTxn);

H
Hongze Cheng 已提交
196 197
  // nRef = tdbUnrefPage(pPage);
  // ASSERT(nRef >= 0);
H
Hongze Cheng 已提交
198

H
Hongze Cheng 已提交
199 200
  tdbPCacheLock(pCache);
  nRef = tdbUnrefPage(pPage);
201
  tdbDebug("pcache/release page %p/%d/%d/%d", pPage, TDB_PAGE_PGNO(pPage), pPage->id, nRef);
H
Hongze Cheng 已提交
202
  if (nRef == 0) {
H
Hongze Cheng 已提交
203 204
    // test the nRef again to make sure
    // it is safe th handle the page
H
Hongze Cheng 已提交
205 206 207 208 209 210 211 212
    // nRef = tdbGetPageRef(pPage);
    // if (nRef == 0) {
    if (pPage->isLocal) {
      tdbPCacheUnpinPage(pCache, pPage);
    } else {
      if (TDB_TXN_IS_WRITE(pTxn)) {
        // remove from hash
        tdbPCacheRemovePageFromHash(pCache, pPage);
H
Hongze Cheng 已提交
213 214
      }

H
Hongze Cheng 已提交
215 216 217
      tdbPageDestroy(pPage, pTxn->xFree, pTxn->xArg);
    }
    // }
H
more  
Hongze Cheng 已提交
218
  }
H
Hongze Cheng 已提交
219 220 221
  tdbPCacheUnlock(pCache);
  // printf("thread %" PRId64 " relas page %d pgno %d pPage %p nRef %d\n", taosGetSelfPthreadId(), pPage->id,
  //        TDB_PAGE_PGNO(pPage), pPage, nRef);
H
Hongze Cheng 已提交
222 223
}

H
Hongze Cheng 已提交
224
int tdbPCacheGetPageSize(SPCache *pCache) { return pCache->szPage; }
H
more  
Hongze Cheng 已提交
225

H
Hongze Cheng 已提交
226
static SPage *tdbPCacheFetchImpl(SPCache *pCache, const SPgid *pPgid, TXN *pTxn) {
H
Hongze Cheng 已提交
227 228 229 230 231
  int    ret = 0;
  SPage *pPage = NULL;
  SPage *pPageH = NULL;

  ASSERT(pTxn);
H
more  
Hongze Cheng 已提交
232 233

  // 1. Search the hash table
wafwerar's avatar
wafwerar 已提交
234
  pPage = pCache->pgHash[tdbPCachePageHash(pPgid) % pCache->nHash];
H
more  
Hongze Cheng 已提交
235
  while (pPage) {
236
    if (pPage->pgid.pgno == pPgid->pgno && memcmp(pPage->pgid.fileid, pPgid->fileid, TDB_FILE_ID_LEN) == 0) break;
H
more  
Hongze Cheng 已提交
237 238 239
    pPage = pPage->pHashNext;
  }

H
refact  
Hongze Cheng 已提交
240
  if (pPage) {
H
Hongze Cheng 已提交
241 242 243 244
    if (pPage->isLocal || TDB_TXN_IS_WRITE(pTxn)) {
      tdbPCachePinPage(pCache, pPage);
      return pPage;
    }
H
more  
Hongze Cheng 已提交
245 246
  }

H
Hongze Cheng 已提交
247 248 249 250 251
  // 1. pPage == NULL
  // 2. pPage && pPage->isLocal == 0 && !TDB_TXN_IS_WRITE(pTxn)
  pPageH = pPage;
  pPage = NULL;

H
more  
Hongze Cheng 已提交
252 253 254 255 256 257 258 259 260 261 262
  // 2. Try to allocate a new page from the free list
  if (pCache->pFree) {
    pPage = pCache->pFree;
    pCache->pFree = pPage->pFreeNext;
    pCache->nFree--;
    pPage->pLruNext = NULL;
  }

  // 3. Try to Recycle a page
  if (!pPage && !pCache->lru.pLruPrev->isAnchor) {
    pPage = pCache->lru.pLruPrev;
H
Hongze Cheng 已提交
263 264
    tdbPCacheRemovePageFromHash(pCache, pPage);
    tdbPCachePinPage(pCache, pPage);
H
more  
Hongze Cheng 已提交
265 266
  }

H
Hongze Cheng 已提交
267
  // 4. Try a create new page
H
Hongze Cheng 已提交
268
  if (!pPage) {
H
Hongze Cheng 已提交
269
    ret = tdbPageCreate(pCache->szPage, &pPage, pTxn->xMalloc, pTxn->xArg);
H
Hongze Cheng 已提交
270 271 272 273 274 275 276 277 278
    if (ret < 0) {
      // TODO
      ASSERT(0);
      return NULL;
    }

    // init the page fields
    pPage->isAnchor = 0;
    pPage->isLocal = 0;
H
Hongze Cheng 已提交
279 280
    pPage->nRef = 0;
    pPage->id = -1;
H
Hongze Cheng 已提交
281
  }
H
more  
Hongze Cheng 已提交
282 283 284 285 286

  // 5. Page here are just created from a free list
  // or by recycling or allocated streesly,
  // need to initialize it
  if (pPage) {
H
Hongze Cheng 已提交
287 288 289
    if (pPageH) {
      // copy the page content
      memcpy(&(pPage->pgid), pPgid, sizeof(*pPgid));
290 291 292 293 294 295 296 297 298

      for (int nLoops = 0;;) {
        if (pPageH->pPager) break;
        if (++nLoops > 1000) {
          sched_yield();
          nLoops = 0;
        }
      }

H
Hongze Cheng 已提交
299 300 301 302
      pPage->pLruNext = NULL;
      pPage->pPager = pPageH->pPager;

      memcpy(pPage->pData, pPageH->pData, pPage->pageSize);
303 304
      tdbDebug("pcache/pPageH: %p %d %p %p %d", pPageH, pPageH->pPageHdr - pPageH->pData, pPageH->xCellSize, pPage,
               TDB_PAGE_PGNO(pPageH));
H
Hongze Cheng 已提交
305
      tdbPageInit(pPage, pPageH->pPageHdr - pPageH->pData, pPageH->xCellSize);
H
Hongze Cheng 已提交
306 307 308 309
      pPage->kLen = pPageH->kLen;
      pPage->vLen = pPageH->vLen;
      pPage->maxLocal = pPageH->maxLocal;
      pPage->minLocal = pPageH->minLocal;
H
Hongze Cheng 已提交
310 311 312 313 314 315 316 317 318
    } else {
      memcpy(&(pPage->pgid), pPgid, sizeof(*pPgid));
      pPage->pLruNext = NULL;
      pPage->pPager = NULL;

      if (pPage->isLocal || TDB_TXN_IS_WRITE(pTxn)) {
        tdbPCacheAddPageToHash(pCache, pPage);
      }
    }
H
more  
Hongze Cheng 已提交
319 320
  }

H
more  
Hongze Cheng 已提交
321
  return pPage;
H
more  
Hongze Cheng 已提交
322 323
}

H
Hongze Cheng 已提交
324
static void tdbPCachePinPage(SPCache *pCache, SPage *pPage) {
H
Hongze Cheng 已提交
325 326 327
  if (pPage->pLruNext != NULL) {
    ASSERT(tdbGetPageRef(pPage) == 0);

H
more  
Hongze Cheng 已提交
328 329 330 331 332
    pPage->pLruPrev->pLruNext = pPage->pLruNext;
    pPage->pLruNext->pLruPrev = pPage->pLruPrev;
    pPage->pLruNext = NULL;

    pCache->nRecyclable--;
H
Hongze Cheng 已提交
333

H
Hongze Cheng 已提交
334
    // printf("pin page %d pgno %d pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
335
    tdbDebug("pcache/pin page %p/%d/%d", pPage, TDB_PAGE_PGNO(pPage), pPage->id);
H
more  
Hongze Cheng 已提交
336
  }
H
more  
Hongze Cheng 已提交
337 338
}

H
Hongze Cheng 已提交
339 340
static void tdbPCacheUnpinPage(SPCache *pCache, SPage *pPage) {
  i32 nRef;
H
Hongze Cheng 已提交
341

H
Hongze Cheng 已提交
342
  ASSERT(pPage->isLocal);
H
Hongze Cheng 已提交
343
  ASSERT(!pPage->isDirty);
H
Hongze Cheng 已提交
344
  ASSERT(tdbGetPageRef(pPage) == 0);
H
Hongze Cheng 已提交
345

H
Hongze Cheng 已提交
346
  ASSERT(pPage->pLruNext == NULL);
H
more  
Hongze Cheng 已提交
347

H
Hongze Cheng 已提交
348 349 350 351
  pPage->pLruPrev = &(pCache->lru);
  pPage->pLruNext = pCache->lru.pLruNext;
  pCache->lru.pLruNext->pLruPrev = pPage;
  pCache->lru.pLruNext = pPage;
H
more  
Hongze Cheng 已提交
352 353

  pCache->nRecyclable++;
H
Hongze Cheng 已提交
354

H
Hongze Cheng 已提交
355
  // printf("unpin page %d pgno %d pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
356
  tdbDebug("pcache/unpin page %p/%d/%d", pPage, TDB_PAGE_PGNO(pPage), pPage->id);
H
more  
Hongze Cheng 已提交
357 358
}

H
Hongze Cheng 已提交
359
static void tdbPCacheRemovePageFromHash(SPCache *pCache, SPage *pPage) {
360 361 362
  uint32_t h = tdbPCachePageHash(&(pPage->pgid)) % pCache->nHash;

  SPage **ppPage = &(pCache->pgHash[h]);
363 364 365
  for (; (*ppPage) && *ppPage != pPage; ppPage = &((*ppPage)->pHashNext))
    ;

H
Hongze Cheng 已提交
366
  if (*ppPage) {
367 368
    *ppPage = pPage->pHashNext;
    pCache->nPage--;
H
Hongze Cheng 已提交
369 370
    // printf("rmv page %d to hash, pgno %d, pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
  }
H
Hongze Cheng 已提交
371

372
  tdbDebug("pcache/remove page %p/%d/%d from hash %" PRIu32, pPage, TDB_PAGE_PGNO(pPage), pPage->id, h);
H
more  
Hongze Cheng 已提交
373 374
}

H
Hongze Cheng 已提交
375
static void tdbPCacheAddPageToHash(SPCache *pCache, SPage *pPage) {
376
  uint32_t h = tdbPCachePageHash(&(pPage->pgid)) % pCache->nHash;
H
more  
Hongze Cheng 已提交
377 378 379 380 381

  pPage->pHashNext = pCache->pgHash[h];
  pCache->pgHash[h] = pPage;

  pCache->nPage++;
H
Hongze Cheng 已提交
382

H
Hongze Cheng 已提交
383
  // printf("add page %d to hash, pgno %d, pPage %p\n", pPage->id, TDB_PAGE_PGNO(pPage), pPage);
384
  tdbDebug("pcache/add page %p/%d/%d to hash %" PRIu32, pPage, TDB_PAGE_PGNO(pPage), pPage->id, h);
H
more  
Hongze Cheng 已提交
385 386 387
}

static int tdbPCacheOpenImpl(SPCache *pCache) {
H
refact  
Hongze Cheng 已提交
388
  SPage *pPage;
H
Hongze Cheng 已提交
389
  u8    *pPtr;
H
refact  
Hongze Cheng 已提交
390
  int    tsize;
H
Hongze Cheng 已提交
391
  int    ret;
H
more  
Hongze Cheng 已提交
392 393 394 395 396 397

  tdbPCacheInitLock(pCache);

  // Open the free list
  pCache->nFree = 0;
  pCache->pFree = NULL;
H
Hongze Cheng 已提交
398
  for (int i = 0; i < pCache->nPages; i++) {
H
Hongze Cheng 已提交
399
    if (tdbPageCreate(pCache->szPage, &pPage, tdbDefaultMalloc, NULL) < 0) {
H
Hongze Cheng 已提交
400
      // TODO: handle error
H
more  
Hongze Cheng 已提交
401 402 403 404 405
      return -1;
    }

    // pPage->pgid = 0;
    pPage->isAnchor = 0;
H
Hongze Cheng 已提交
406
    pPage->isLocal = 1;
H
Hongze Cheng 已提交
407
    pPage->nRef = 0;
H
more  
Hongze Cheng 已提交
408 409 410
    pPage->pHashNext = NULL;
    pPage->pLruNext = NULL;
    pPage->pLruPrev = NULL;
H
more  
Hongze Cheng 已提交
411
    pPage->pDirtyNext = NULL;
H
more  
Hongze Cheng 已提交
412

H
Hongze Cheng 已提交
413
    // add page to free list
H
more  
Hongze Cheng 已提交
414 415 416
    pPage->pFreeNext = pCache->pFree;
    pCache->pFree = pPage;
    pCache->nFree++;
H
Hongze Cheng 已提交
417 418

    // add to local list
H
Hongze Cheng 已提交
419 420
    pPage->id = i;
    pCache->aPage[i] = pPage;
H
more  
Hongze Cheng 已提交
421 422 423 424
  }

  // Open the hash table
  pCache->nPage = 0;
H
Hongze Cheng 已提交
425
  pCache->nHash = pCache->nPages < 8 ? 8 : pCache->nPages;
H
Hongze Cheng 已提交
426
  pCache->pgHash = (SPage **)tdbOsCalloc(pCache->nHash, sizeof(SPage *));
H
more  
Hongze Cheng 已提交
427 428 429 430 431 432 433 434 435 436 437 438
  if (pCache->pgHash == NULL) {
    // TODO
    return -1;
  }

  // Open LRU list
  pCache->nRecyclable = 0;
  pCache->lru.isAnchor = 1;
  pCache->lru.pLruNext = &(pCache->lru);
  pCache->lru.pLruPrev = &(pCache->lru);

  return 0;
H
Hongze Cheng 已提交
439 440
}

H
Hongze Cheng 已提交
441
static int tdbPCacheCloseImpl(SPCache *pCache) {
H
Hongze Cheng 已提交
442 443
  for (i32 iPage = 0; iPage < pCache->nPages; iPage++) {
    if (pCache->aPage[iPage]) {
H
Hongze Cheng 已提交
444
      tdbPageDestroy(pCache->aPage[iPage], tdbDefaultFree, NULL);
H
Hongze Cheng 已提交
445 446
      pCache->aPage[iPage] = NULL;
    }
H
Hongze Cheng 已提交
447 448
  }

H
Hongze Cheng 已提交
449
  tdbOsFree(pCache->pgHash);
H
Hongze Cheng 已提交
450
  tdbPCacheDestroyLock(pCache);
wmmhello's avatar
wmmhello 已提交
451
  return 0;
H
Hongze Cheng 已提交
452
}