~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-12-09 20:06:21 UTC
  • mfrom: (1991 build)
  • mto: (2017.3.1 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2073.
  • Revision ID: brian@tangent.org-20101209200621-bjflgmj82j4bcnvq
Merge with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
228
228
sweep). */
229
229
#define BUF_FLUSH_FREE_BLOCK_MARGIN(b)  (5 + BUF_READ_AHEAD_AREA(b))
230
230
/** Extra margin to apply above BUF_FLUSH_FREE_BLOCK_MARGIN */
231
 
#define BUF_FLUSH_EXTRA_MARGIN(b)       (BUF_FLUSH_FREE_BLOCK_MARGIN(b) / 4 \
232
 
                                        + 100)
 
231
#define BUF_FLUSH_EXTRA_MARGIN(b)       ((BUF_FLUSH_FREE_BLOCK_MARGIN(b) / 4 \
 
232
                                        + 100) / srv_buf_pool_instances)
233
233
#endif /* !UNIV_HOTBACKUP */
234
234
 
235
235
#ifndef UNIV_NONINL