~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/buf0buf.h

  • Committer: Mark Atwood
  • Date: 2011-08-10 21:48:03 UTC
  • mfrom: (2258.3.6 percona-sign-problem)
  • Revision ID: me@mark.atwood.name-20110810214803-5y47vom6tw7ssw0e
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1560
1560
        time_t          last_printout_time;
1561
1561
                                        /*!< when buf_print_io was last time
1562
1562
                                        called */
1563
 
        buf_buddy_stat_t buddy_stat[BUF_BUDDY_SIZES + 1];
 
1563
        buf_buddy_stat_t buddy_stat[BUF_BUDDY_SIZES_MAX + 1];
1564
1564
                                        /*!< Statistics of buddy system,
1565
1565
                                        indexed by block size */
1566
1566
        buf_pool_stat_t stat;           /*!< current statistics */
1656
1656
        /* @{ */
1657
1657
        UT_LIST_BASE_NODE_T(buf_page_t) zip_clean;
1658
1658
                                        /*!< unmodified compressed pages */
1659
 
        UT_LIST_BASE_NODE_T(buf_page_t) zip_free[BUF_BUDDY_SIZES];
 
1659
        UT_LIST_BASE_NODE_T(buf_page_t) zip_free[BUF_BUDDY_SIZES_MAX];
1660
1660
                                        /*!< buddy free lists */
1661
1661
 
1662
1662
        buf_page_t                      watch[BUF_POOL_WATCH_SIZE];
1664
1664
                                        pool watches. Protected by
1665
1665
                                        buf_pool->mutex. */
1666
1666
 
1667
 
#if BUF_BUDDY_HIGH != UNIV_PAGE_SIZE
1668
 
# error "BUF_BUDDY_HIGH != UNIV_PAGE_SIZE"
1669
 
#endif
1670
1667
#if BUF_BUDDY_LOW > PAGE_ZIP_MIN_SIZE
1671
1668
# error "BUF_BUDDY_LOW > PAGE_ZIP_MIN_SIZE"
1672
1669
#endif