Commit 329a29c2 authored by marko's avatar marko

branches/zip: Replace ib_ulonglong with ib_uint64_t, since we want exactly

64 bits.  "long long" might be longer than 64 bits on some systems.
parent 519ba6f4
...@@ -294,7 +294,7 @@ buf_page_is_corrupted( ...@@ -294,7 +294,7 @@ buf_page_is_corrupted(
ulint checksum_field; ulint checksum_field;
ulint old_checksum_field; ulint old_checksum_field;
#ifndef UNIV_HOTBACKUP #ifndef UNIV_HOTBACKUP
ib_ulonglong current_lsn; ib_uint64_t current_lsn;
#endif #endif
if (UNIV_LIKELY(!zip_size) if (UNIV_LIKELY(!zip_size)
&& memcmp(read_buf + FIL_PAGE_LSN + 4, && memcmp(read_buf + FIL_PAGE_LSN + 4,
...@@ -1554,7 +1554,7 @@ buf_page_optimistic_get_func( ...@@ -1554,7 +1554,7 @@ buf_page_optimistic_get_func(
/* out: TRUE if success */ /* out: TRUE if success */
ulint rw_latch,/* in: RW_S_LATCH, RW_X_LATCH */ ulint rw_latch,/* in: RW_S_LATCH, RW_X_LATCH */
buf_block_t* block, /* in: guessed buffer block */ buf_block_t* block, /* in: guessed buffer block */
ib_ulonglong modify_clock,/* in: modify clock value if mode is ib_uint64_t modify_clock,/* in: modify clock value if mode is
..._GUESS_ON_CLOCK */ ..._GUESS_ON_CLOCK */
const char* file, /* in: file name */ const char* file, /* in: file name */
ulint line, /* in: line where called */ ulint line, /* in: line where called */
......
...@@ -506,7 +506,7 @@ buf_flush_init_for_writing( ...@@ -506,7 +506,7 @@ buf_flush_init_for_writing(
/*=======================*/ /*=======================*/
byte* page, /* in/out: page */ byte* page, /* in/out: page */
void* page_zip_, /* in/out: compressed page, or NULL */ void* page_zip_, /* in/out: compressed page, or NULL */
ib_ulonglong newest_lsn) /* in: newest modification lsn ib_uint64_t newest_lsn) /* in: newest modification lsn
to the page */ to the page */
{ {
if (page_zip_) { if (page_zip_) {
...@@ -889,7 +889,7 @@ buf_flush_batch( ...@@ -889,7 +889,7 @@ buf_flush_batch(
ulint min_n, /* in: wished minimum mumber of blocks ulint min_n, /* in: wished minimum mumber of blocks
flushed (it is not guaranteed that the flushed (it is not guaranteed that the
actual number is that big, though) */ actual number is that big, though) */
ib_ulonglong lsn_limit) /* in the case BUF_FLUSH_LIST all ib_uint64_t lsn_limit) /* in the case BUF_FLUSH_LIST all
blocks whose oldest_modification is blocks whose oldest_modification is
smaller than this should be flushed smaller than this should be flushed
(if their number does not exceed (if their number does not exceed
...@@ -1134,7 +1134,7 @@ buf_flush_validate_low(void) ...@@ -1134,7 +1134,7 @@ buf_flush_validate_low(void)
/* out: TRUE if ok */ /* out: TRUE if ok */
{ {
buf_page_t* bpage; buf_page_t* bpage;
ib_ulonglong om; ib_uint64_t om;
UT_LIST_VALIDATE(flush_list, buf_page_t, buf_pool->flush_list); UT_LIST_VALIDATE(flush_list, buf_page_t, buf_pool->flush_list);
......
...@@ -1642,7 +1642,7 @@ fil_write_lsn_and_arch_no_to_file( ...@@ -1642,7 +1642,7 @@ fil_write_lsn_and_arch_no_to_file(
/*==============================*/ /*==============================*/
ulint sum_of_sizes, /* in: combined size of previous files ulint sum_of_sizes, /* in: combined size of previous files
in space, in database pages */ in space, in database pages */
ib_ulonglong lsn, /* in: lsn to write */ ib_uint64_t lsn, /* in: lsn to write */
ulint arch_log_no /* in: archived log number to write */ ulint arch_log_no /* in: archived log number to write */
__attribute__((unused))) __attribute__((unused)))
{ {
...@@ -1669,7 +1669,7 @@ ulint ...@@ -1669,7 +1669,7 @@ ulint
fil_write_flushed_lsn_to_data_files( fil_write_flushed_lsn_to_data_files(
/*================================*/ /*================================*/
/* out: DB_SUCCESS or error number */ /* out: DB_SUCCESS or error number */
ib_ulonglong lsn, /* in: lsn to write */ ib_uint64_t lsn, /* in: lsn to write */
ulint arch_log_no) /* in: latest archived log ulint arch_log_no) /* in: latest archived log
file number */ file number */
{ {
...@@ -1733,12 +1733,12 @@ fil_read_flushed_lsn_and_arch_log_no( ...@@ -1733,12 +1733,12 @@ fil_read_flushed_lsn_and_arch_log_no(
ulint* min_arch_log_no, /* in/out: */ ulint* min_arch_log_no, /* in/out: */
ulint* max_arch_log_no, /* in/out: */ ulint* max_arch_log_no, /* in/out: */
#endif /* UNIV_LOG_ARCHIVE */ #endif /* UNIV_LOG_ARCHIVE */
ib_ulonglong* min_flushed_lsn, /* in/out: */ ib_uint64_t* min_flushed_lsn, /* in/out: */
ib_ulonglong* max_flushed_lsn) /* in/out: */ ib_uint64_t* max_flushed_lsn) /* in/out: */
{ {
byte* buf; byte* buf;
byte* buf2; byte* buf2;
ib_ulonglong flushed_lsn; ib_uint64_t flushed_lsn;
buf2 = ut_malloc(2 * UNIV_PAGE_SIZE); buf2 = ut_malloc(2 * UNIV_PAGE_SIZE);
/* Align the memory for a possible read from a raw device */ /* Align the memory for a possible read from a raw device */
...@@ -2737,7 +2737,7 @@ fil_reset_too_high_lsns( ...@@ -2737,7 +2737,7 @@ fil_reset_too_high_lsns(
/* out: TRUE if success */ /* out: TRUE if success */
const char* name, /* in: table name in the const char* name, /* in: table name in the
databasename/tablename format */ databasename/tablename format */
ib_ulonglong current_lsn) /* in: reset lsn's if the lsn stamped ib_uint64_t current_lsn) /* in: reset lsn's if the lsn stamped
to FIL_PAGE_FILE_FLUSH_LSN in the to FIL_PAGE_FILE_FLUSH_LSN in the
first page is too high */ first page is too high */
{ {
...@@ -2745,7 +2745,7 @@ fil_reset_too_high_lsns( ...@@ -2745,7 +2745,7 @@ fil_reset_too_high_lsns(
char* filepath; char* filepath;
byte* page; byte* page;
byte* buf2; byte* buf2;
ib_ulonglong flush_lsn; ib_uint64_t flush_lsn;
ulint space_id; ulint space_id;
ib_longlong file_size; ib_longlong file_size;
ib_longlong offset; ib_longlong offset;
......
...@@ -477,7 +477,7 @@ struct btr_pcur_struct{ ...@@ -477,7 +477,7 @@ struct btr_pcur_struct{
old_rec record */ old_rec record */
buf_block_t* block_when_stored;/* buffer block when the position was buf_block_t* block_when_stored;/* buffer block when the position was
stored */ stored */
ib_ulonglong modify_clock; /* the modify clock value of the ib_uint64_t modify_clock; /* the modify clock value of the
buffer block when the cursor position buffer block when the cursor position
was stored */ was stored */
ulint pos_state; /* see TODO note below! ulint pos_state; /* see TODO note below!
......
...@@ -98,7 +98,7 @@ buf_pool_get_curr_size(void); ...@@ -98,7 +98,7 @@ buf_pool_get_curr_size(void);
Gets the smallest oldest_modification lsn for any page in the pool. Returns Gets the smallest oldest_modification lsn for any page in the pool. Returns
zero if all modified pages have been flushed to disk. */ zero if all modified pages have been flushed to disk. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
buf_pool_get_oldest_modification(void); buf_pool_get_oldest_modification(void);
/*==================================*/ /*==================================*/
/* out: oldest modification in pool, /* out: oldest modification in pool,
...@@ -166,7 +166,7 @@ buf_page_optimistic_get_func( ...@@ -166,7 +166,7 @@ buf_page_optimistic_get_func(
/* out: TRUE if success */ /* out: TRUE if success */
ulint rw_latch,/* in: RW_S_LATCH, RW_X_LATCH */ ulint rw_latch,/* in: RW_S_LATCH, RW_X_LATCH */
buf_block_t* block, /* in: guessed block */ buf_block_t* block, /* in: guessed block */
ib_ulonglong modify_clock,/* in: modify clock value if mode is ib_uint64_t modify_clock,/* in: modify clock value if mode is
..._GUESS_ON_CLOCK */ ..._GUESS_ON_CLOCK */
const char* file, /* in: file name */ const char* file, /* in: file name */
ulint line, /* in: line where called */ ulint line, /* in: line where called */
...@@ -357,7 +357,7 @@ buf_page_peek_if_search_hashed( ...@@ -357,7 +357,7 @@ buf_page_peek_if_search_hashed(
Gets the youngest modification log sequence number for a frame. Gets the youngest modification log sequence number for a frame.
Returns zero if not file page or no modification occurred yet. */ Returns zero if not file page or no modification occurred yet. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
buf_block_get_newest_modification( buf_block_get_newest_modification(
/*==============================*/ /*==============================*/
/* out: newest modification to page */ /* out: newest modification to page */
...@@ -375,7 +375,7 @@ buf_block_modify_clock_inc( ...@@ -375,7 +375,7 @@ buf_block_modify_clock_inc(
Returns the value of the modify clock. The caller must have an s-lock Returns the value of the modify clock. The caller must have an s-lock
or x-lock on the block. */ or x-lock on the block. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
buf_block_get_modify_clock( buf_block_get_modify_clock(
/*=======================*/ /*=======================*/
/* out: value */ /* out: value */
...@@ -750,11 +750,11 @@ struct buf_page_struct{ ...@@ -750,11 +750,11 @@ struct buf_page_struct{
UT_LIST_NODE_T(buf_page_t) flush_list; UT_LIST_NODE_T(buf_page_t) flush_list;
/* node of the modified, not yet /* node of the modified, not yet
flushed blocks list */ flushed blocks list */
ib_ulonglong newest_modification; ib_uint64_t newest_modification;
/* log sequence number of the youngest /* log sequence number of the youngest
modification to this block, zero if modification to this block, zero if
not modified */ not modified */
ib_ulonglong oldest_modification; ib_uint64_t oldest_modification;
/* log sequence number of the START of /* log sequence number of the START of
the log entry written of the oldest the log entry written of the oldest
modification to this block which has modification to this block which has
...@@ -846,7 +846,7 @@ struct buf_block_struct{ ...@@ -846,7 +846,7 @@ struct buf_block_struct{
protected by block->mutex */ protected by block->mutex */
/* 4. Optimistic search field */ /* 4. Optimistic search field */
ib_ulonglong modify_clock; /* this clock is incremented every ib_uint64_t modify_clock; /* this clock is incremented every
time a pointer to a record on the time a pointer to a record on the
page may become obsolete; this is page may become obsolete; this is
used in the optimistic cursor used in the optimistic cursor
......
...@@ -41,14 +41,14 @@ buf_pool_get_curr_size(void) ...@@ -41,14 +41,14 @@ buf_pool_get_curr_size(void)
Gets the smallest oldest_modification lsn for any page in the pool. Returns Gets the smallest oldest_modification lsn for any page in the pool. Returns
zero if all modified pages have been flushed to disk. */ zero if all modified pages have been flushed to disk. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
buf_pool_get_oldest_modification(void) buf_pool_get_oldest_modification(void)
/*==================================*/ /*==================================*/
/* out: oldest modification in pool, /* out: oldest modification in pool,
zero if none */ zero if none */
{ {
buf_page_t* bpage; buf_page_t* bpage;
ib_ulonglong lsn; ib_uint64_t lsn;
mutex_enter(&(buf_pool->mutex)); mutex_enter(&(buf_pool->mutex));
...@@ -484,13 +484,13 @@ buf_page_io_query( ...@@ -484,13 +484,13 @@ buf_page_io_query(
Gets the youngest modification log sequence number for a frame. Gets the youngest modification log sequence number for a frame.
Returns zero if not file page or no modification occurred yet. */ Returns zero if not file page or no modification occurred yet. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
buf_block_get_newest_modification( buf_block_get_newest_modification(
/*==============================*/ /*==============================*/
/* out: newest modification to page */ /* out: newest modification to page */
buf_block_t* block) /* in: block containing the page frame */ buf_block_t* block) /* in: block containing the page frame */
{ {
ib_ulonglong lsn; ib_uint64_t lsn;
mutex_enter(&(buf_pool->mutex)); mutex_enter(&(buf_pool->mutex));
...@@ -527,7 +527,7 @@ buf_block_modify_clock_inc( ...@@ -527,7 +527,7 @@ buf_block_modify_clock_inc(
Returns the value of the modify clock. The caller must have an s-lock Returns the value of the modify clock. The caller must have an s-lock
or x-lock on the block. */ or x-lock on the block. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
buf_block_get_modify_clock( buf_block_get_modify_clock(
/*=======================*/ /*=======================*/
/* out: value */ /* out: value */
......
...@@ -36,7 +36,7 @@ buf_flush_init_for_writing( ...@@ -36,7 +36,7 @@ buf_flush_init_for_writing(
/*=======================*/ /*=======================*/
byte* page, /* in/out: page */ byte* page, /* in/out: page */
void* page_zip_, /* in/out: compressed page, or NULL */ void* page_zip_, /* in/out: compressed page, or NULL */
ib_ulonglong newest_lsn); /* in: newest modification lsn ib_uint64_t newest_lsn); /* in: newest modification lsn
to the page */ to the page */
/*********************************************************************** /***********************************************************************
This utility flushes dirty blocks from the end of the LRU list or flush_list. This utility flushes dirty blocks from the end of the LRU list or flush_list.
...@@ -59,7 +59,7 @@ buf_flush_batch( ...@@ -59,7 +59,7 @@ buf_flush_batch(
ulint min_n, /* in: wished minimum mumber of blocks ulint min_n, /* in: wished minimum mumber of blocks
flushed (it is not guaranteed that the flushed (it is not guaranteed that the
actual number is that big, though) */ actual number is that big, though) */
ib_ulonglong lsn_limit); /* in the case BUF_FLUSH_LIST all ib_uint64_t lsn_limit); /* in the case BUF_FLUSH_LIST all
blocks whose oldest_modification is blocks whose oldest_modification is
smaller than this should be flushed smaller than this should be flushed
(if their number does not exceed (if their number does not exceed
...@@ -88,9 +88,9 @@ void ...@@ -88,9 +88,9 @@ void
buf_flush_recv_note_modification( buf_flush_recv_note_modification(
/*=============================*/ /*=============================*/
buf_block_t* block, /* in: block which is modified */ buf_block_t* block, /* in: block which is modified */
ib_ulonglong start_lsn, /* in: start lsn of the first mtr in a ib_uint64_t start_lsn, /* in: start lsn of the first mtr in a
set of mtr's */ set of mtr's */
ib_ulonglong end_lsn); /* in: end lsn of the last mtr in the ib_uint64_t end_lsn); /* in: end lsn of the last mtr in the
set of mtr's */ set of mtr's */
/************************************************************************ /************************************************************************
Returns TRUE if the file page block is immediately suitable for replacement, Returns TRUE if the file page block is immediately suitable for replacement,
......
...@@ -71,9 +71,9 @@ void ...@@ -71,9 +71,9 @@ void
buf_flush_recv_note_modification( buf_flush_recv_note_modification(
/*=============================*/ /*=============================*/
buf_block_t* block, /* in: block which is modified */ buf_block_t* block, /* in: block which is modified */
ib_ulonglong start_lsn, /* in: start lsn of the first mtr in a ib_uint64_t start_lsn, /* in: start lsn of the first mtr in a
set of mtr's */ set of mtr's */
ib_ulonglong end_lsn) /* in: end lsn of the last mtr in the ib_uint64_t end_lsn) /* in: end lsn of the last mtr in the
set of mtr's */ set of mtr's */
{ {
ut_ad(block); ut_ad(block);
......
...@@ -286,7 +286,7 @@ ulint ...@@ -286,7 +286,7 @@ ulint
fil_write_flushed_lsn_to_data_files( fil_write_flushed_lsn_to_data_files(
/*================================*/ /*================================*/
/* out: DB_SUCCESS or error number */ /* out: DB_SUCCESS or error number */
ib_ulonglong lsn, /* in: lsn to write */ ib_uint64_t lsn, /* in: lsn to write */
ulint arch_log_no); /* in: latest archived log ulint arch_log_no); /* in: latest archived log
file number */ file number */
/*********************************************************************** /***********************************************************************
...@@ -304,8 +304,8 @@ fil_read_flushed_lsn_and_arch_log_no( ...@@ -304,8 +304,8 @@ fil_read_flushed_lsn_and_arch_log_no(
ulint* min_arch_log_no, /* in/out: */ ulint* min_arch_log_no, /* in/out: */
ulint* max_arch_log_no, /* in/out: */ ulint* max_arch_log_no, /* in/out: */
#endif /* UNIV_LOG_ARCHIVE */ #endif /* UNIV_LOG_ARCHIVE */
ib_ulonglong* min_flushed_lsn, /* in/out: */ ib_uint64_t* min_flushed_lsn, /* in/out: */
ib_ulonglong* max_flushed_lsn); /* in/out: */ ib_uint64_t* max_flushed_lsn); /* in/out: */
/*********************************************************************** /***********************************************************************
Increments the count of pending insert buffer page merges, if space is not Increments the count of pending insert buffer page merges, if space is not
being deleted. */ being deleted. */
...@@ -457,7 +457,7 @@ fil_reset_too_high_lsns( ...@@ -457,7 +457,7 @@ fil_reset_too_high_lsns(
/* out: TRUE if success */ /* out: TRUE if success */
const char* name, /* in: table name in the const char* name, /* in: table name in the
databasename/tablename format */ databasename/tablename format */
ib_ulonglong current_lsn); /* in: reset lsn's if the lsn stamped ib_uint64_t current_lsn); /* in: reset lsn's if the lsn stamped
to FIL_PAGE_FILE_FLUSH_LSN in the to FIL_PAGE_FILE_FLUSH_LSN in the
first page is too high */ first page is too high */
/************************************************************************ /************************************************************************
......
This diff is collapsed.
...@@ -21,7 +21,7 @@ log_check_log_recs( ...@@ -21,7 +21,7 @@ log_check_log_recs(
the log segment in the the log segment in the
log_sys->buf log buffer */ log_sys->buf log buffer */
ulint len, /* in: segment length in bytes */ ulint len, /* in: segment length in bytes */
ib_ulonglong buf_start_lsn); /* in: buffer start lsn */ ib_uint64_t buf_start_lsn); /* in: buffer start lsn */
/**************************************************************** /****************************************************************
Gets a log block flush bit. */ Gets a log block flush bit. */
...@@ -164,7 +164,7 @@ void ...@@ -164,7 +164,7 @@ void
log_block_set_checkpoint_no( log_block_set_checkpoint_no(
/*========================*/ /*========================*/
byte* log_block, /* in: log block */ byte* log_block, /* in: log block */
ib_ulonglong no) /* in: checkpoint no */ ib_uint64_t no) /* in: checkpoint no */
{ {
mach_write_to_4(log_block + LOG_BLOCK_CHECKPOINT_NO, (ulint) no); mach_write_to_4(log_block + LOG_BLOCK_CHECKPOINT_NO, (ulint) no);
} }
...@@ -177,7 +177,7 @@ log_block_convert_lsn_to_no( ...@@ -177,7 +177,7 @@ log_block_convert_lsn_to_no(
/*========================*/ /*========================*/
/* out: log block number, /* out: log block number,
it is > 0 and <= 1G */ it is > 0 and <= 1G */
ib_ulonglong lsn) /* in: lsn of a byte within the block */ ib_uint64_t lsn) /* in: lsn of a byte within the block */
{ {
return(((ulint) (lsn / OS_FILE_LOG_BLOCK_SIZE) & 0x3FFFFFFFUL) + 1); return(((ulint) (lsn / OS_FILE_LOG_BLOCK_SIZE) & 0x3FFFFFFFUL) + 1);
} }
...@@ -244,7 +244,7 @@ void ...@@ -244,7 +244,7 @@ void
log_block_init( log_block_init(
/*===========*/ /*===========*/
byte* log_block, /* in: pointer to the log buffer */ byte* log_block, /* in: pointer to the log buffer */
ib_ulonglong lsn) /* in: lsn within the log block */ ib_uint64_t lsn) /* in: lsn within the log block */
{ {
ulint no; ulint no;
...@@ -268,7 +268,7 @@ void ...@@ -268,7 +268,7 @@ void
log_block_init_in_old_format( log_block_init_in_old_format(
/*=========================*/ /*=========================*/
byte* log_block, /* in: pointer to the log buffer */ byte* log_block, /* in: pointer to the log buffer */
ib_ulonglong lsn) /* in: lsn within the log block */ ib_uint64_t lsn) /* in: lsn within the log block */
{ {
ulint no; ulint no;
...@@ -289,19 +289,19 @@ log_block_init_in_old_format( ...@@ -289,19 +289,19 @@ log_block_init_in_old_format(
Writes to the log the string given. The log must be released with Writes to the log the string given. The log must be released with
log_release. */ log_release. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
log_reserve_and_write_fast( log_reserve_and_write_fast(
/*=======================*/ /*=======================*/
/* out: end lsn of the log record, /* out: end lsn of the log record,
zero if did not succeed */ zero if did not succeed */
byte* str, /* in: string */ byte* str, /* in: string */
ulint len, /* in: string length */ ulint len, /* in: string length */
ib_ulonglong* start_lsn,/* out: start lsn of the log record */ ib_uint64_t* start_lsn,/* out: start lsn of the log record */
ibool* success)/* out: TRUE if success */ ibool* success)/* out: TRUE if success */
{ {
log_t* log = log_sys; log_t* log = log_sys;
ulint data_len; ulint data_len;
ib_ulonglong lsn; ib_uint64_t lsn;
*success = TRUE; *success = TRUE;
...@@ -358,12 +358,12 @@ log_release(void) ...@@ -358,12 +358,12 @@ log_release(void)
/**************************************************************** /****************************************************************
Gets the current lsn. */ Gets the current lsn. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
log_get_lsn(void) log_get_lsn(void)
/*=============*/ /*=============*/
/* out: current lsn */ /* out: current lsn */
{ {
ib_ulonglong lsn; ib_uint64_t lsn;
mutex_enter(&(log_sys->mutex)); mutex_enter(&(log_sys->mutex));
......
...@@ -28,13 +28,13 @@ recv_read_cp_info_for_backup( ...@@ -28,13 +28,13 @@ recv_read_cp_info_for_backup(
/* out: TRUE if success */ /* out: TRUE if success */
byte* hdr, /* in: buffer containing the log group byte* hdr, /* in: buffer containing the log group
header */ header */
ib_ulonglong* lsn, /* out: checkpoint lsn */ ib_uint64_t* lsn, /* out: checkpoint lsn */
ulint* offset, /* out: checkpoint offset in the log group */ ulint* offset, /* out: checkpoint offset in the log group */
ulint* fsp_limit,/* out: fsp limit of space 0, ulint* fsp_limit,/* out: fsp limit of space 0,
1000000000 if the database is running 1000000000 if the database is running
with < version 3.23.50 of InnoDB */ with < version 3.23.50 of InnoDB */
ib_ulonglong* cp_no, /* out: checkpoint number */ ib_uint64_t* cp_no, /* out: checkpoint number */
ib_ulonglong* first_header_lsn); ib_uint64_t* first_header_lsn);
/* out: lsn of of the start of the /* out: lsn of of the start of the
first log file */ first log file */
/*********************************************************************** /***********************************************************************
...@@ -46,7 +46,7 @@ recv_scan_log_seg_for_backup( ...@@ -46,7 +46,7 @@ recv_scan_log_seg_for_backup(
/*=========================*/ /*=========================*/
byte* buf, /* in: buffer containing log data */ byte* buf, /* in: buffer containing log data */
ulint buf_len, /* in: data length in that buffer */ ulint buf_len, /* in: data length in that buffer */
ib_ulonglong* scanned_lsn, /* in/out: lsn of buffer start, ib_uint64_t* scanned_lsn, /* in/out: lsn of buffer start,
we return scanned lsn */ we return scanned lsn */
ulint* scanned_checkpoint_no, ulint* scanned_checkpoint_no,
/* in/out: 4 lowest bytes of the /* in/out: 4 lowest bytes of the
...@@ -95,11 +95,11 @@ recv_recovery_from_checkpoint_start( ...@@ -95,11 +95,11 @@ recv_recovery_from_checkpoint_start(
/*================================*/ /*================================*/
/* out: error code or DB_SUCCESS */ /* out: error code or DB_SUCCESS */
ulint type, /* in: LOG_CHECKPOINT or LOG_ARCHIVE */ ulint type, /* in: LOG_CHECKPOINT or LOG_ARCHIVE */
ib_ulonglong limit_lsn, /* in: recover up to this lsn ib_uint64_t limit_lsn, /* in: recover up to this lsn
if possible */ if possible */
ib_ulonglong min_flushed_lsn,/* in: min flushed lsn from ib_uint64_t min_flushed_lsn,/* in: min flushed lsn from
data files */ data files */
ib_ulonglong max_flushed_lsn);/* in: max flushed lsn from ib_uint64_t max_flushed_lsn);/* in: max flushed lsn from
data files */ data files */
/************************************************************ /************************************************************
Completes recovery from a checkpoint. */ Completes recovery from a checkpoint. */
...@@ -132,11 +132,11 @@ recv_scan_log_recs( ...@@ -132,11 +132,11 @@ recv_scan_log_recs(
byte* buf, /* in: buffer containing a log segment byte* buf, /* in: buffer containing a log segment
or garbage */ or garbage */
ulint len, /* in: buffer length */ ulint len, /* in: buffer length */
ib_ulonglong start_lsn, /* in: buffer start lsn */ ib_uint64_t start_lsn, /* in: buffer start lsn */
ib_ulonglong* contiguous_lsn, /* in/out: it is known that all log ib_uint64_t* contiguous_lsn, /* in/out: it is known that all log
groups contain contiguous log data up groups contain contiguous log data up
to this lsn */ to this lsn */
ib_ulonglong* group_scanned_lsn);/* out: scanning succeeded up to ib_uint64_t* group_scanned_lsn);/* out: scanning succeeded up to
this lsn */ this lsn */
/********************************************************** /**********************************************************
Resets the logs. The contents of log files will be lost! */ Resets the logs. The contents of log files will be lost! */
...@@ -144,7 +144,7 @@ Resets the logs. The contents of log files will be lost! */ ...@@ -144,7 +144,7 @@ Resets the logs. The contents of log files will be lost! */
void void
recv_reset_logs( recv_reset_logs(
/*============*/ /*============*/
ib_ulonglong lsn, /* in: reset to this lsn ib_uint64_t lsn, /* in: reset to this lsn
rounded up to be divisible by rounded up to be divisible by
OS_FILE_LOG_BLOCK_SIZE, after OS_FILE_LOG_BLOCK_SIZE, after
which we add which we add
...@@ -166,7 +166,7 @@ recv_reset_log_files_for_backup( ...@@ -166,7 +166,7 @@ recv_reset_log_files_for_backup(
const char* log_dir, /* in: log file directory path */ const char* log_dir, /* in: log file directory path */
ulint n_log_files, /* in: number of log files */ ulint n_log_files, /* in: number of log files */
ulint log_file_size, /* in: log file size */ ulint log_file_size, /* in: log file size */
ib_ulonglong lsn); /* in: new start lsn, must be ib_uint64_t lsn); /* in: new start lsn, must be
divisible by OS_FILE_LOG_BLOCK_SIZE */ divisible by OS_FILE_LOG_BLOCK_SIZE */
#endif /* UNIV_HOTBACKUP */ #endif /* UNIV_HOTBACKUP */
/************************************************************ /************************************************************
...@@ -214,9 +214,9 @@ ulint ...@@ -214,9 +214,9 @@ ulint
recv_recovery_from_archive_start( recv_recovery_from_archive_start(
/*=============================*/ /*=============================*/
/* out: error code or DB_SUCCESS */ /* out: error code or DB_SUCCESS */
ib_ulonglong min_flushed_lsn,/* in: min flushed lsn field from the ib_uint64_t min_flushed_lsn,/* in: min flushed lsn field from the
data files */ data files */
ib_ulonglong limit_lsn, /* in: recover up to this lsn if ib_uint64_t limit_lsn, /* in: recover up to this lsn if
possible */ possible */
ulint first_log_no); /* in: number of the first archived ulint first_log_no); /* in: number of the first archived
log file to use in the recovery; the log file to use in the recovery; the
...@@ -247,11 +247,11 @@ struct recv_struct{ ...@@ -247,11 +247,11 @@ struct recv_struct{
ulint len; /* log record body length in bytes */ ulint len; /* log record body length in bytes */
recv_data_t* data; /* chain of blocks containing the log record recv_data_t* data; /* chain of blocks containing the log record
body */ body */
ib_ulonglong start_lsn;/* start lsn of the log segment written by ib_uint64_t start_lsn;/* start lsn of the log segment written by
the mtr which generated this log record: NOTE the mtr which generated this log record: NOTE
that this is not necessarily the start lsn of that this is not necessarily the start lsn of
this log record */ this log record */
ib_ulonglong end_lsn;/* end lsn of the log segment written by ib_uint64_t end_lsn;/* end lsn of the log segment written by
the mtr which generated this log record: NOTE the mtr which generated this log record: NOTE
that this is not necessarily the end lsn of that this is not necessarily the end lsn of
this log record */ this log record */
...@@ -285,7 +285,7 @@ struct recv_sys_struct{ ...@@ -285,7 +285,7 @@ struct recv_sys_struct{
ibool apply_batch_on; ibool apply_batch_on;
/* this is TRUE when a log rec application /* this is TRUE when a log rec application
batch is running */ batch is running */
ib_ulonglong lsn; /* log sequence number */ ib_uint64_t lsn; /* log sequence number */
ulint last_log_buf_size; ulint last_log_buf_size;
/* size of the log buffer when the database /* size of the log buffer when the database
last time wrote to the log */ last time wrote to the log */
...@@ -297,12 +297,12 @@ struct recv_sys_struct{ ...@@ -297,12 +297,12 @@ struct recv_sys_struct{
preceding buffer */ preceding buffer */
byte* buf; /* buffer for parsing log records */ byte* buf; /* buffer for parsing log records */
ulint len; /* amount of data in buf */ ulint len; /* amount of data in buf */
ib_ulonglong parse_start_lsn; ib_uint64_t parse_start_lsn;
/* this is the lsn from which we were able to /* this is the lsn from which we were able to
start parsing log records and adding them to start parsing log records and adding them to
the hash table; zero if a suitable the hash table; zero if a suitable
start point not found yet */ start point not found yet */
ib_ulonglong scanned_lsn; ib_uint64_t scanned_lsn;
/* the log data has been scanned up to this /* the log data has been scanned up to this
lsn */ lsn */
ulint scanned_checkpoint_no; ulint scanned_checkpoint_no;
...@@ -311,10 +311,10 @@ struct recv_sys_struct{ ...@@ -311,10 +311,10 @@ struct recv_sys_struct{
ulint recovered_offset; ulint recovered_offset;
/* start offset of non-parsed log records in /* start offset of non-parsed log records in
buf */ buf */
ib_ulonglong recovered_lsn; ib_uint64_t recovered_lsn;
/* the log records have been parsed up to /* the log records have been parsed up to
this lsn */ this lsn */
ib_ulonglong limit_lsn;/* recovery should be made at most up to this ib_uint64_t limit_lsn;/* recovery should be made at most up to this
lsn */ lsn */
ibool found_corrupt_log; ibool found_corrupt_log;
/* this is set to TRUE if we during log /* this is set to TRUE if we during log
......
...@@ -187,7 +187,7 @@ void ...@@ -187,7 +187,7 @@ void
mach_write_ull( mach_write_ull(
/*===========*/ /*===========*/
byte* b, /* in: pointer to 8 bytes where to store */ byte* b, /* in: pointer to 8 bytes where to store */
ib_ulonglong n); /* in: 64-bit integer to be stored */ ib_uint64_t n); /* in: 64-bit integer to be stored */
/************************************************************ /************************************************************
The following function is used to fetch data from 8 consecutive The following function is used to fetch data from 8 consecutive
bytes. The most significant byte is at the lowest address. */ bytes. The most significant byte is at the lowest address. */
...@@ -201,7 +201,7 @@ mach_read_from_8( ...@@ -201,7 +201,7 @@ mach_read_from_8(
The following function is used to fetch data from 8 consecutive The following function is used to fetch data from 8 consecutive
bytes. The most significant byte is at the lowest address. */ bytes. The most significant byte is at the lowest address. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
mach_read_ull( mach_read_ull(
/*==========*/ /*==========*/
/* out: 64-bit integer */ /* out: 64-bit integer */
......
...@@ -281,7 +281,7 @@ void ...@@ -281,7 +281,7 @@ void
mach_write_ull( mach_write_ull(
/*===========*/ /*===========*/
byte* b, /* in: pointer to 8 bytes where to store */ byte* b, /* in: pointer to 8 bytes where to store */
ib_ulonglong n) /* in: 64-bit integer to be stored */ ib_uint64_t n) /* in: 64-bit integer to be stored */
{ {
ut_ad(b); ut_ad(b);
...@@ -314,16 +314,16 @@ mach_read_from_8( ...@@ -314,16 +314,16 @@ mach_read_from_8(
The following function is used to fetch data from 8 consecutive The following function is used to fetch data from 8 consecutive
bytes. The most significant byte is at the lowest address. */ bytes. The most significant byte is at the lowest address. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
mach_read_ull( mach_read_ull(
/*==========*/ /*==========*/
/* out: 64-bit integer */ /* out: 64-bit integer */
const byte* b) /* in: pointer to 8 bytes */ const byte* b) /* in: pointer to 8 bytes */
{ {
ib_ulonglong ull; ib_uint64_t ull;
ull = ((ib_ulonglong) mach_read_from_4(b)) << 32; ull = ((ib_uint64_t) mach_read_from_4(b)) << 32;
ull |= (ib_ulonglong) mach_read_from_4(b + 4); ull |= (ib_uint64_t) mach_read_from_4(b + 4);
return(ull); return(ull);
} }
......
...@@ -350,9 +350,9 @@ struct mtr_struct{ ...@@ -350,9 +350,9 @@ struct mtr_struct{
have been written to the mtr log */ have been written to the mtr log */
ulint log_mode; /* specifies which operations should be ulint log_mode; /* specifies which operations should be
logged; default value MTR_LOG_ALL */ logged; default value MTR_LOG_ALL */
ib_ulonglong start_lsn;/* start lsn of the possible log entry for ib_uint64_t start_lsn;/* start lsn of the possible log entry for
this mtr */ this mtr */
ib_ulonglong end_lsn;/* end lsn of the possible log entry for ib_uint64_t end_lsn;/* end lsn of the possible log entry for
this mtr */ this mtr */
ulint magic_n; ulint magic_n;
}; };
......
...@@ -78,8 +78,8 @@ int ...@@ -78,8 +78,8 @@ int
innobase_shutdown_for_mysql(void); innobase_shutdown_for_mysql(void);
/*=============================*/ /*=============================*/
/* out: DB_SUCCESS or error code */ /* out: DB_SUCCESS or error code */
extern ib_ulonglong srv_shutdown_lsn; extern ib_uint64_t srv_shutdown_lsn;
extern ib_ulonglong srv_start_lsn; extern ib_uint64_t srv_start_lsn;
#ifdef __NETWARE__ #ifdef __NETWARE__
void set_panic_flag_for_netware(void); void set_panic_flag_for_netware(void);
......
...@@ -446,7 +446,7 @@ struct trx_struct{ ...@@ -446,7 +446,7 @@ struct trx_struct{
were modifications by the transaction; were modifications by the transaction;
in that case we must flush the log in that case we must flush the log
in trx_commit_complete_for_mysql() */ in trx_commit_complete_for_mysql() */
ib_ulonglong commit_lsn; /* lsn at the time of the commit */ ib_uint64_t commit_lsn; /* lsn at the time of the commit */
ibool dict_operation; /* TRUE if the trx is used to create ibool dict_operation; /* TRUE if the trx is used to create
a table, create an index, or drop a a table, create an index, or drop a
table. This is a hint that the table table. This is a hint that the table
......
...@@ -202,10 +202,10 @@ typedef long int lint; ...@@ -202,10 +202,10 @@ typedef long int lint;
#ifdef __WIN__ #ifdef __WIN__
typedef __int64 ib_longlong; typedef __int64 ib_longlong;
typedef unsigned __int64 ib_ulonglong; typedef unsigned __int64 ib_uint64_t;
#else #else
typedef longlong ib_longlong; typedef longlong ib_longlong;
typedef ulonglong ib_ulonglong; typedef ulonglong ib_uint64_t;
#endif #endif
#ifndef __WIN__ #ifndef __WIN__
...@@ -223,8 +223,8 @@ typedef ulonglong ib_ulonglong; ...@@ -223,8 +223,8 @@ typedef ulonglong ib_ulonglong;
/* Maximum value for a ulint */ /* Maximum value for a ulint */
#define ULINT_MAX ((ulint)(-2)) #define ULINT_MAX ((ulint)(-2))
/* Maximum value for ib_ulonglong */ /* Maximum value for ib_uint64_t */
#define IB_ULONGLONG_MAX ((ib_ulonglong) (~0ULL)) #define IB_ULONGLONG_MAX ((ib_uint64_t) (~0ULL))
/* This 'ibool' type is used within Innobase. Remember that different included /* This 'ibool' type is used within Innobase. Remember that different included
headers may define 'bool' differently. Do not assume that 'bool' is a ulint! */ headers may define 'bool' differently. Do not assume that 'bool' is a ulint! */
......
...@@ -151,21 +151,21 @@ ut_dulint_align_up( ...@@ -151,21 +151,21 @@ ut_dulint_align_up(
/************************************************************ /************************************************************
Rounds a dulint downward to a multiple of a power of 2. */ Rounds a dulint downward to a multiple of a power of 2. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
ut_ulonglong_align_down( ut_ulonglong_align_down(
/*====================*/ /*====================*/
/* out: rounded value */ /* out: rounded value */
ib_ulonglong n, /* in: number to be rounded */ ib_uint64_t n, /* in: number to be rounded */
ulint align_no); /* in: align by this number ulint align_no); /* in: align by this number
which must be a power of 2 */ which must be a power of 2 */
/************************************************************ /************************************************************
Rounds ib_ulonglong upward to a multiple of a power of 2. */ Rounds ib_uint64_t upward to a multiple of a power of 2. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
ut_ulonglong_align_up( ut_ulonglong_align_up(
/*==================*/ /*==================*/
/* out: rounded value */ /* out: rounded value */
ib_ulonglong n, /* in: number to be rounded */ ib_uint64_t n, /* in: number to be rounded */
ulint align_no); /* in: align by this number ulint align_no); /* in: align by this number
which must be a power of 2 */ which must be a power of 2 */
/*********************************************************** /***********************************************************
......
...@@ -261,34 +261,34 @@ ut_dulint_align_up( ...@@ -261,34 +261,34 @@ ut_dulint_align_up(
} }
/************************************************************ /************************************************************
Rounds ib_ulonglong downward to a multiple of a power of 2. */ Rounds ib_uint64_t downward to a multiple of a power of 2. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
ut_ulonglong_align_down( ut_ulonglong_align_down(
/*====================*/ /*====================*/
/* out: rounded value */ /* out: rounded value */
ib_ulonglong n, /* in: number to be rounded */ ib_uint64_t n, /* in: number to be rounded */
ulint align_no) /* in: align by this number ulint align_no) /* in: align by this number
which must be a power of 2 */ which must be a power of 2 */
{ {
ut_ad(align_no > 0); ut_ad(align_no > 0);
ut_ad(ut_is_2pow(align_no)); ut_ad(ut_is_2pow(align_no));
return(n & (ib_ulonglong) ~(align_no - 1)); return(n & (ib_uint64_t) ~(align_no - 1));
} }
/************************************************************ /************************************************************
Rounds ib_ulonglong upward to a multiple of a power of 2. */ Rounds ib_uint64_t upward to a multiple of a power of 2. */
UNIV_INLINE UNIV_INLINE
ib_ulonglong ib_uint64_t
ut_ulonglong_align_up( ut_ulonglong_align_up(
/*==================*/ /*==================*/
/* out: rounded value */ /* out: rounded value */
ib_ulonglong n, /* in: number to be rounded */ ib_uint64_t n, /* in: number to be rounded */
ulint align_no) /* in: align by this number ulint align_no) /* in: align by this number
which must be a power of 2 */ which must be a power of 2 */
{ {
ib_ulonglong align_1 = (ib_ulonglong) align_no - 1; ib_uint64_t align_1 = (ib_uint64_t) align_no - 1;
ut_ad(align_no > 0); ut_ad(align_no > 0);
ut_ad(ut_is_2pow(align_no)); ut_ad(ut_is_2pow(align_no));
......
...@@ -159,11 +159,11 @@ log_fsp_current_free_limit_set_and_checkpoint( ...@@ -159,11 +159,11 @@ log_fsp_current_free_limit_set_and_checkpoint(
Returns the oldest modified block lsn in the pool, or log_sys->lsn if none Returns the oldest modified block lsn in the pool, or log_sys->lsn if none
exists. */ exists. */
static static
ib_ulonglong ib_uint64_t
log_buf_pool_get_oldest_modification(void) log_buf_pool_get_oldest_modification(void)
/*======================================*/ /*======================================*/
{ {
ib_ulonglong lsn; ib_uint64_t lsn;
#ifdef UNIV_SYNC_DEBUG #ifdef UNIV_SYNC_DEBUG
ut_ad(mutex_own(&(log_sys->mutex))); ut_ad(mutex_own(&(log_sys->mutex)));
...@@ -183,7 +183,7 @@ log_buf_pool_get_oldest_modification(void) ...@@ -183,7 +183,7 @@ log_buf_pool_get_oldest_modification(void)
Opens the log for log_write_low. The log must be closed with log_close and Opens the log for log_write_low. The log must be closed with log_close and
released with log_release. */ released with log_release. */
ib_ulonglong ib_uint64_t
log_reserve_and_open( log_reserve_and_open(
/*=================*/ /*=================*/
/* out: start lsn of the log record */ /* out: start lsn of the log record */
...@@ -327,15 +327,15 @@ log_write_low( ...@@ -327,15 +327,15 @@ log_write_low(
/**************************************************************** /****************************************************************
Closes the log. */ Closes the log. */
ib_ulonglong ib_uint64_t
log_close(void) log_close(void)
/*===========*/ /*===========*/
/* out: lsn */ /* out: lsn */
{ {
byte* log_block; byte* log_block;
ulint first_rec_group; ulint first_rec_group;
ib_ulonglong oldest_lsn; ib_uint64_t oldest_lsn;
ib_ulonglong lsn; ib_uint64_t lsn;
log_t* log = log_sys; log_t* log = log_sys;
ulint checkpoint_age; ulint checkpoint_age;
...@@ -429,7 +429,7 @@ log_pad_current_log_block(void) ...@@ -429,7 +429,7 @@ log_pad_current_log_block(void)
byte b = MLOG_DUMMY_RECORD; byte b = MLOG_DUMMY_RECORD;
ulint pad_length; ulint pad_length;
ulint i; ulint i;
ib_ulonglong lsn; ib_uint64_t lsn;
/* We retrieve lsn only because otherwise gcc crashed on HP-UX */ /* We retrieve lsn only because otherwise gcc crashed on HP-UX */
lsn = log_reserve_and_open(OS_FILE_LOG_BLOCK_SIZE); lsn = log_reserve_and_open(OS_FILE_LOG_BLOCK_SIZE);
...@@ -512,11 +512,11 @@ ulint ...@@ -512,11 +512,11 @@ ulint
log_group_calc_lsn_offset( log_group_calc_lsn_offset(
/*======================*/ /*======================*/
/* out: offset within the log group */ /* out: offset within the log group */
ib_ulonglong lsn, /* in: lsn, must be within 4 GB of ib_uint64_t lsn, /* in: lsn, must be within 4 GB of
group->lsn */ group->lsn */
log_group_t* group) /* in: log group */ log_group_t* group) /* in: log group */
{ {
ib_ulonglong gr_lsn; ib_uint64_t gr_lsn;
ib_longlong gr_lsn_size_offset; ib_longlong gr_lsn_size_offset;
ib_longlong difference; ib_longlong difference;
ib_longlong group_size; ib_longlong group_size;
...@@ -568,9 +568,9 @@ log_calc_where_lsn_is( ...@@ -568,9 +568,9 @@ log_calc_where_lsn_is(
/* out: log file number */ /* out: log file number */
ib_longlong* log_file_offset, /* out: offset in that file ib_longlong* log_file_offset, /* out: offset in that file
(including the header) */ (including the header) */
ib_ulonglong first_header_lsn, /* in: first log file start ib_uint64_t first_header_lsn, /* in: first log file start
lsn */ lsn */
ib_ulonglong lsn, /* in: lsn whose position to ib_uint64_t lsn, /* in: lsn whose position to
determine */ determine */
ulint n_log_files, /* in: total number of log ulint n_log_files, /* in: total number of log
files */ files */
...@@ -608,7 +608,7 @@ void ...@@ -608,7 +608,7 @@ void
log_group_set_fields( log_group_set_fields(
/*=================*/ /*=================*/
log_group_t* group, /* in: group */ log_group_t* group, /* in: group */
ib_ulonglong lsn) /* in: lsn for which the values should be ib_uint64_t lsn) /* in: lsn for which the values should be
set */ set */
{ {
group->lsn_offset = log_group_calc_lsn_offset(lsn, group); group->lsn_offset = log_group_calc_lsn_offset(lsn, group);
...@@ -1116,7 +1116,7 @@ log_group_file_header_flush( ...@@ -1116,7 +1116,7 @@ log_group_file_header_flush(
log_group_t* group, /* in: log group */ log_group_t* group, /* in: log group */
ulint nth_file, /* in: header to the nth file in the ulint nth_file, /* in: header to the nth file in the
log file space */ log file space */
ib_ulonglong start_lsn) /* in: log file data starts at this ib_uint64_t start_lsn) /* in: log file data starts at this
lsn */ lsn */
{ {
byte* buf; byte* buf;
...@@ -1182,7 +1182,7 @@ log_group_write_buf( ...@@ -1182,7 +1182,7 @@ log_group_write_buf(
byte* buf, /* in: buffer */ byte* buf, /* in: buffer */
ulint len, /* in: buffer len; must be divisible ulint len, /* in: buffer len; must be divisible
by OS_FILE_LOG_BLOCK_SIZE */ by OS_FILE_LOG_BLOCK_SIZE */
ib_ulonglong start_lsn, /* in: start lsn of the buffer; must ib_uint64_t start_lsn, /* in: start lsn of the buffer; must
be divisible by be divisible by
OS_FILE_LOG_BLOCK_SIZE */ OS_FILE_LOG_BLOCK_SIZE */
ulint new_data_offset)/* in: start offset of new data in ulint new_data_offset)/* in: start offset of new data in
...@@ -1300,7 +1300,7 @@ flush flushed enough. If not, starts a new flush. */ ...@@ -1300,7 +1300,7 @@ flush flushed enough. If not, starts a new flush. */
void void
log_write_up_to( log_write_up_to(
/*============*/ /*============*/
ib_ulonglong lsn, /* in: log sequence number up to which ib_uint64_t lsn, /* in: log sequence number up to which
the log should be written, the log should be written,
IB_ULONGLONG_MAX if not specified */ IB_ULONGLONG_MAX if not specified */
ulint wait, /* in: LOG_NO_WAIT, LOG_WAIT_ONE_GROUP, ulint wait, /* in: LOG_NO_WAIT, LOG_WAIT_ONE_GROUP,
...@@ -1517,7 +1517,7 @@ void ...@@ -1517,7 +1517,7 @@ void
log_buffer_flush_to_disk(void) log_buffer_flush_to_disk(void)
/*==========================*/ /*==========================*/
{ {
ib_ulonglong lsn; ib_uint64_t lsn;
mutex_enter(&(log_sys->mutex)); mutex_enter(&(log_sys->mutex));
...@@ -1538,7 +1538,7 @@ log_flush_margin(void) ...@@ -1538,7 +1538,7 @@ log_flush_margin(void)
{ {
ibool do_flush = FALSE; ibool do_flush = FALSE;
log_t* log = log_sys; log_t* log = log_sys;
ib_ulonglong lsn; ib_uint64_t lsn;
mutex_enter(&(log->mutex)); mutex_enter(&(log->mutex));
...@@ -1573,7 +1573,7 @@ log_preflush_pool_modified_pages( ...@@ -1573,7 +1573,7 @@ log_preflush_pool_modified_pages(
running, which means that we running, which means that we
could not start this flush could not start this flush
batch */ batch */
ib_ulonglong new_oldest, /* in: try to advance ib_uint64_t new_oldest, /* in: try to advance
oldest_modified_lsn at least oldest_modified_lsn at least
to this lsn */ to this lsn */
ibool sync) /* in: TRUE if synchronous ibool sync) /* in: TRUE if synchronous
...@@ -1695,8 +1695,8 @@ log_group_checkpoint( ...@@ -1695,8 +1695,8 @@ log_group_checkpoint(
{ {
log_group_t* group2; log_group_t* group2;
#ifdef UNIV_LOG_ARCHIVE #ifdef UNIV_LOG_ARCHIVE
ib_ulonglong archived_lsn; ib_uint64_t archived_lsn;
ib_ulonglong next_archived_lsn; ib_uint64_t next_archived_lsn;
#endif /* UNIV_LOG_ARCHIVE */ #endif /* UNIV_LOG_ARCHIVE */
ulint write_offset; ulint write_offset;
ulint fold; ulint fold;
...@@ -1816,13 +1816,13 @@ log_reset_first_header_and_checkpoint( ...@@ -1816,13 +1816,13 @@ log_reset_first_header_and_checkpoint(
/*==================================*/ /*==================================*/
byte* hdr_buf,/* in: buffer which will be written to the byte* hdr_buf,/* in: buffer which will be written to the
start of the first log file */ start of the first log file */
ib_ulonglong start) /* in: lsn of the start of the first log file; ib_uint64_t start) /* in: lsn of the start of the first log file;
we pretend that there is a checkpoint at we pretend that there is a checkpoint at
start + LOG_BLOCK_HDR_SIZE */ start + LOG_BLOCK_HDR_SIZE */
{ {
ulint fold; ulint fold;
byte* buf; byte* buf;
ib_ulonglong lsn; ib_uint64_t lsn;
mach_write_to_4(hdr_buf + LOG_GROUP_ID, 0); mach_write_to_4(hdr_buf + LOG_GROUP_ID, 0);
mach_write_ull(hdr_buf + LOG_FILE_START_LSN, start); mach_write_ull(hdr_buf + LOG_FILE_START_LSN, start);
...@@ -1921,7 +1921,7 @@ log_checkpoint( ...@@ -1921,7 +1921,7 @@ log_checkpoint(
parameter TRUE, a physical write will always be parameter TRUE, a physical write will always be
made to log files */ made to log files */
{ {
ib_ulonglong oldest_lsn; ib_uint64_t oldest_lsn;
if (recv_recovery_is_on()) { if (recv_recovery_is_on()) {
recv_apply_hashed_log_recs(TRUE); recv_apply_hashed_log_recs(TRUE);
...@@ -2002,7 +2002,7 @@ Makes a checkpoint at a given lsn or later. */ ...@@ -2002,7 +2002,7 @@ Makes a checkpoint at a given lsn or later. */
void void
log_make_checkpoint_at( log_make_checkpoint_at(
/*===================*/ /*===================*/
ib_ulonglong lsn, /* in: make a checkpoint at this or a ib_uint64_t lsn, /* in: make a checkpoint at this or a
later lsn, if IB_ULONGLONG_MAX, makes later lsn, if IB_ULONGLONG_MAX, makes
a checkpoint at the latest lsn */ a checkpoint at the latest lsn */
ibool write_always) /* in: the function normally checks if ibool write_always) /* in: the function normally checks if
...@@ -2034,7 +2034,7 @@ log_checkpoint_margin(void) ...@@ -2034,7 +2034,7 @@ log_checkpoint_margin(void)
ulint age; ulint age;
ulint checkpoint_age; ulint checkpoint_age;
ulint advance; ulint advance;
ib_ulonglong oldest_lsn; ib_uint64_t oldest_lsn;
ibool sync; ibool sync;
ibool checkpoint_sync; ibool checkpoint_sync;
ibool do_checkpoint; ibool do_checkpoint;
...@@ -2092,7 +2092,7 @@ log_checkpoint_margin(void) ...@@ -2092,7 +2092,7 @@ log_checkpoint_margin(void)
mutex_exit(&(log->mutex)); mutex_exit(&(log->mutex));
if (advance) { if (advance) {
ib_ulonglong new_oldest = oldest_lsn + advance; ib_uint64_t new_oldest = oldest_lsn + advance;
success = log_preflush_pool_modified_pages(new_oldest, sync); success = log_preflush_pool_modified_pages(new_oldest, sync);
...@@ -2131,8 +2131,8 @@ log_group_read_log_seg( ...@@ -2131,8 +2131,8 @@ log_group_read_log_seg(
ulint type, /* in: LOG_ARCHIVE or LOG_RECOVER */ ulint type, /* in: LOG_ARCHIVE or LOG_RECOVER */
byte* buf, /* in: buffer where to read */ byte* buf, /* in: buffer where to read */
log_group_t* group, /* in: log group */ log_group_t* group, /* in: log group */
ib_ulonglong start_lsn, /* in: read area start */ ib_uint64_t start_lsn, /* in: read area start */
ib_ulonglong end_lsn) /* in: read area end */ ib_uint64_t end_lsn) /* in: read area end */
{ {
ulint len; ulint len;
ulint source_offset; ulint source_offset;
...@@ -2203,7 +2203,7 @@ log_group_archive_file_header_write( ...@@ -2203,7 +2203,7 @@ log_group_archive_file_header_write(
ulint nth_file, /* in: header to the nth file in the ulint nth_file, /* in: header to the nth file in the
archive log file space */ archive log file space */
ulint file_no, /* in: archived file number */ ulint file_no, /* in: archived file number */
ib_ulonglong start_lsn) /* in: log file data starts at this ib_uint64_t start_lsn) /* in: log file data starts at this
lsn */ lsn */
{ {
byte* buf; byte* buf;
...@@ -2243,7 +2243,7 @@ log_group_archive_completed_header_write( ...@@ -2243,7 +2243,7 @@ log_group_archive_completed_header_write(
log_group_t* group, /* in: log group */ log_group_t* group, /* in: log group */
ulint nth_file, /* in: header to the nth file in the ulint nth_file, /* in: header to the nth file in the
archive log file space */ archive log file space */
ib_ulonglong end_lsn) /* in: end lsn of the file */ ib_uint64_t end_lsn) /* in: end lsn of the file */
{ {
byte* buf; byte* buf;
ulint dest_offset; ulint dest_offset;
...@@ -2279,8 +2279,8 @@ log_group_archive( ...@@ -2279,8 +2279,8 @@ log_group_archive(
log_group_t* group) /* in: log group */ log_group_t* group) /* in: log group */
{ {
os_file_t file_handle; os_file_t file_handle;
ib_ulonglong start_lsn; ib_uint64_t start_lsn;
ib_ulonglong end_lsn; ib_uint64_t end_lsn;
char name[1024]; char name[1024];
byte* buf; byte* buf;
ulint len; ulint len;
...@@ -2444,8 +2444,8 @@ log_archive_write_complete_groups(void) ...@@ -2444,8 +2444,8 @@ log_archive_write_complete_groups(void)
ulint end_offset; ulint end_offset;
ulint trunc_files; ulint trunc_files;
ulint n_files; ulint n_files;
ib_ulonglong start_lsn; ib_uint64_t start_lsn;
ib_ulonglong end_lsn; ib_uint64_t end_lsn;
ulint i; ulint i;
#ifdef UNIV_SYNC_DEBUG #ifdef UNIV_SYNC_DEBUG
...@@ -2587,8 +2587,8 @@ log_archive_do( ...@@ -2587,8 +2587,8 @@ log_archive_do(
archive */ archive */
{ {
ibool calc_new_limit; ibool calc_new_limit;
ib_ulonglong start_lsn; ib_uint64_t start_lsn;
ib_ulonglong limit_lsn; ib_uint64_t limit_lsn;
calc_new_limit = TRUE; calc_new_limit = TRUE;
loop: loop:
...@@ -2703,7 +2703,7 @@ void ...@@ -2703,7 +2703,7 @@ void
log_archive_all(void) log_archive_all(void)
/*=================*/ /*=================*/
{ {
ib_ulonglong present_lsn; ib_uint64_t present_lsn;
ulint dummy; ulint dummy;
mutex_enter(&(log_sys->mutex)); mutex_enter(&(log_sys->mutex));
...@@ -3038,7 +3038,7 @@ void ...@@ -3038,7 +3038,7 @@ void
logs_empty_and_mark_files_at_shutdown(void) logs_empty_and_mark_files_at_shutdown(void)
/*=======================================*/ /*=======================================*/
{ {
ib_ulonglong lsn; ib_uint64_t lsn;
ulint arch_log_no; ulint arch_log_no;
if (srv_print_verbose_log) { if (srv_print_verbose_log) {
...@@ -3229,10 +3229,10 @@ log_check_log_recs( ...@@ -3229,10 +3229,10 @@ log_check_log_recs(
the log segment in the the log segment in the
log_sys->buf log buffer */ log_sys->buf log buffer */
ulint len, /* in: segment length in bytes */ ulint len, /* in: segment length in bytes */
ib_ulonglong buf_start_lsn) /* in: buffer start lsn */ ib_uint64_t buf_start_lsn) /* in: buffer start lsn */
{ {
ib_ulonglong contiguous_lsn; ib_uint64_t contiguous_lsn;
ib_ulonglong scanned_lsn; ib_uint64_t scanned_lsn;
byte* start; byte* start;
byte* end; byte* end;
byte* buf1; byte* buf1;
...@@ -3279,7 +3279,7 @@ log_peek_lsn( ...@@ -3279,7 +3279,7 @@ log_peek_lsn(
/*=========*/ /*=========*/
/* out: TRUE if success, FALSE if /* out: TRUE if success, FALSE if
could not get the log system mutex */ could not get the log system mutex */
ib_ulonglong* lsn) /* out: if returns TRUE, current lsn is here */ ib_uint64_t* lsn) /* out: if returns TRUE, current lsn is here */
{ {
if (0 == mutex_enter_nowait(&(log_sys->mutex), __FILE__, __LINE__)) { if (0 == mutex_enter_nowait(&(log_sys->mutex), __FILE__, __LINE__)) {
*lsn = log_sys->lsn; *lsn = log_sys->lsn;
......
...@@ -97,7 +97,7 @@ ulint recv_n_pool_free_frames = 256; ...@@ -97,7 +97,7 @@ ulint recv_n_pool_free_frames = 256;
is bigger than the lsn we are able to scan up to, that is an indication that is bigger than the lsn we are able to scan up to, that is an indication that
the recovery failed and the database may be corrupt. */ the recovery failed and the database may be corrupt. */
ib_ulonglong recv_max_page_lsn; ib_uint64_t recv_max_page_lsn;
/************************************************************ /************************************************************
Creates the recovery system. */ Creates the recovery system. */
...@@ -218,20 +218,20 @@ void ...@@ -218,20 +218,20 @@ void
recv_truncate_group( recv_truncate_group(
/*================*/ /*================*/
log_group_t* group, /* in: log group */ log_group_t* group, /* in: log group */
ib_ulonglong recovered_lsn, /* in: recovery succeeded up to this ib_uint64_t recovered_lsn, /* in: recovery succeeded up to this
lsn */ lsn */
ib_ulonglong limit_lsn, /* in: this was the limit for ib_uint64_t limit_lsn, /* in: this was the limit for
recovery */ recovery */
ib_ulonglong checkpoint_lsn, /* in: recovery was started from this ib_uint64_t checkpoint_lsn, /* in: recovery was started from this
checkpoint */ checkpoint */
ib_ulonglong archived_lsn) /* in: the log has been archived up to ib_uint64_t archived_lsn) /* in: the log has been archived up to
this lsn */ this lsn */
{ {
ib_ulonglong start_lsn; ib_uint64_t start_lsn;
ib_ulonglong end_lsn; ib_uint64_t end_lsn;
ib_ulonglong finish_lsn1; ib_uint64_t finish_lsn1;
ib_ulonglong finish_lsn2; ib_uint64_t finish_lsn2;
ib_ulonglong finish_lsn; ib_uint64_t finish_lsn;
ulint len; ulint len;
ulint i; ulint i;
...@@ -322,11 +322,11 @@ recv_copy_group( ...@@ -322,11 +322,11 @@ recv_copy_group(
group */ group */
log_group_t* group, /* in: copy to this log log_group_t* group, /* in: copy to this log
group */ group */
ib_ulonglong recovered_lsn) /* in: recovery succeeded up ib_uint64_t recovered_lsn) /* in: recovery succeeded up
to this lsn */ to this lsn */
{ {
ib_ulonglong start_lsn; ib_uint64_t start_lsn;
ib_ulonglong end_lsn; ib_uint64_t end_lsn;
ulint len; ulint len;
if (group->scanned_lsn >= recovered_lsn) { if (group->scanned_lsn >= recovered_lsn) {
...@@ -375,10 +375,10 @@ recv_synchronize_groups( ...@@ -375,10 +375,10 @@ recv_synchronize_groups(
log group */ log group */
{ {
log_group_t* group; log_group_t* group;
ib_ulonglong start_lsn; ib_uint64_t start_lsn;
ib_ulonglong end_lsn; ib_uint64_t end_lsn;
ib_ulonglong recovered_lsn; ib_uint64_t recovered_lsn;
ib_ulonglong limit_lsn; ib_uint64_t limit_lsn;
recovered_lsn = recv_sys->recovered_lsn; recovered_lsn = recv_sys->recovered_lsn;
limit_lsn = recv_sys->limit_lsn; limit_lsn = recv_sys->limit_lsn;
...@@ -471,8 +471,8 @@ recv_find_max_checkpoint( ...@@ -471,8 +471,8 @@ recv_find_max_checkpoint(
LOG_CHECKPOINT_2 */ LOG_CHECKPOINT_2 */
{ {
log_group_t* group; log_group_t* group;
ib_ulonglong max_no; ib_uint64_t max_no;
ib_ulonglong checkpoint_no; ib_uint64_t checkpoint_no;
ulint field; ulint field;
byte* buf; byte* buf;
...@@ -569,18 +569,18 @@ recv_read_cp_info_for_backup( ...@@ -569,18 +569,18 @@ recv_read_cp_info_for_backup(
/* out: TRUE if success */ /* out: TRUE if success */
byte* hdr, /* in: buffer containing the log group byte* hdr, /* in: buffer containing the log group
header */ header */
ib_ulonglong* lsn, /* out: checkpoint lsn */ ib_uint64_t* lsn, /* out: checkpoint lsn */
ulint* offset, /* out: checkpoint offset in the log group */ ulint* offset, /* out: checkpoint offset in the log group */
ulint* fsp_limit,/* out: fsp limit of space 0, ulint* fsp_limit,/* out: fsp limit of space 0,
1000000000 if the database is running 1000000000 if the database is running
with < version 3.23.50 of InnoDB */ with < version 3.23.50 of InnoDB */
ib_ulonglong* cp_no, /* out: checkpoint number */ ib_uint64_t* cp_no, /* out: checkpoint number */
ib_ulonglong* first_header_lsn) ib_uint64_t* first_header_lsn)
/* out: lsn of of the start of the /* out: lsn of of the start of the
first log file */ first log file */
{ {
ulint max_cp = 0; ulint max_cp = 0;
ib_ulonglong max_cp_no = 0; ib_uint64_t max_cp_no = 0;
byte* cp_buf; byte* cp_buf;
cp_buf = hdr + LOG_CHECKPOINT_1; cp_buf = hdr + LOG_CHECKPOINT_1;
...@@ -676,7 +676,7 @@ recv_scan_log_seg_for_backup( ...@@ -676,7 +676,7 @@ recv_scan_log_seg_for_backup(
/*=========================*/ /*=========================*/
byte* buf, /* in: buffer containing log data */ byte* buf, /* in: buffer containing log data */
ulint buf_len, /* in: data length in that buffer */ ulint buf_len, /* in: data length in that buffer */
ib_ulonglong* scanned_lsn, /* in/out: lsn of buffer start, ib_uint64_t* scanned_lsn, /* in/out: lsn of buffer start,
we return scanned lsn */ we return scanned lsn */
ulint* scanned_checkpoint_no, ulint* scanned_checkpoint_no,
/* in/out: 4 lowest bytes of the /* in/out: 4 lowest bytes of the
...@@ -1040,8 +1040,8 @@ recv_add_to_hash_table( ...@@ -1040,8 +1040,8 @@ recv_add_to_hash_table(
ulint page_no, /* in: page number */ ulint page_no, /* in: page number */
byte* body, /* in: log record body */ byte* body, /* in: log record body */
byte* rec_end, /* in: log record end */ byte* rec_end, /* in: log record end */
ib_ulonglong start_lsn, /* in: start lsn of the mtr */ ib_uint64_t start_lsn, /* in: start lsn of the mtr */
ib_ulonglong end_lsn) /* in: end lsn of the mtr */ ib_uint64_t end_lsn) /* in: end lsn of the mtr */
{ {
recv_t* recv; recv_t* recv;
ulint len; ulint len;
...@@ -1168,10 +1168,10 @@ recv_recover_page( ...@@ -1168,10 +1168,10 @@ recv_recover_page(
recv_addr_t* recv_addr; recv_addr_t* recv_addr;
recv_t* recv; recv_t* recv;
byte* buf; byte* buf;
ib_ulonglong start_lsn; ib_uint64_t start_lsn;
ib_ulonglong end_lsn; ib_uint64_t end_lsn;
ib_ulonglong page_lsn; ib_uint64_t page_lsn;
ib_ulonglong page_newest_lsn; ib_uint64_t page_newest_lsn;
ibool modification_to_page; ibool modification_to_page;
ibool success; ibool success;
mtr_t mtr; mtr_t mtr;
...@@ -1764,11 +1764,11 @@ recv_parse_log_rec( ...@@ -1764,11 +1764,11 @@ recv_parse_log_rec(
/*********************************************************** /***********************************************************
Calculates the new value for lsn when more data is added to the log. */ Calculates the new value for lsn when more data is added to the log. */
static static
ib_ulonglong ib_uint64_t
recv_calc_lsn_on_data_add( recv_calc_lsn_on_data_add(
/*======================*/ /*======================*/
ib_ulonglong lsn, /* in: old lsn */ ib_uint64_t lsn, /* in: old lsn */
ib_ulonglong len) /* in: this many bytes of data is ib_uint64_t len) /* in: this many bytes of data is
added, log block headers not included */ added, log block headers not included */
{ {
ulint frag_len; ulint frag_len;
...@@ -1883,8 +1883,8 @@ recv_parse_log_recs( ...@@ -1883,8 +1883,8 @@ recv_parse_log_recs(
ulint single_rec; ulint single_rec;
ulint len; ulint len;
ulint total_len; ulint total_len;
ib_ulonglong new_recovered_lsn; ib_uint64_t new_recovered_lsn;
ib_ulonglong old_lsn; ib_uint64_t old_lsn;
byte type; byte type;
ulint space; ulint space;
ulint page_no; ulint page_no;
...@@ -2118,7 +2118,7 @@ recv_sys_add_to_parsing_buf( ...@@ -2118,7 +2118,7 @@ recv_sys_add_to_parsing_buf(
/*========================*/ /*========================*/
/* out: TRUE if more data added */ /* out: TRUE if more data added */
byte* log_block, /* in: log block */ byte* log_block, /* in: log block */
ib_ulonglong scanned_lsn) /* in: lsn of how far we were able ib_uint64_t scanned_lsn) /* in: lsn of how far we were able
to find data in this log block */ to find data in this log block */
{ {
ulint more_len; ulint more_len;
...@@ -2224,16 +2224,16 @@ recv_scan_log_recs( ...@@ -2224,16 +2224,16 @@ recv_scan_log_recs(
byte* buf, /* in: buffer containing a log segment byte* buf, /* in: buffer containing a log segment
or garbage */ or garbage */
ulint len, /* in: buffer length */ ulint len, /* in: buffer length */
ib_ulonglong start_lsn, /* in: buffer start lsn */ ib_uint64_t start_lsn, /* in: buffer start lsn */
ib_ulonglong* contiguous_lsn, /* in/out: it is known that all log ib_uint64_t* contiguous_lsn, /* in/out: it is known that all log
groups contain contiguous log data up groups contain contiguous log data up
to this lsn */ to this lsn */
ib_ulonglong* group_scanned_lsn)/* out: scanning succeeded up to ib_uint64_t* group_scanned_lsn)/* out: scanning succeeded up to
this lsn */ this lsn */
{ {
byte* log_block; byte* log_block;
ulint no; ulint no;
ib_ulonglong scanned_lsn; ib_uint64_t scanned_lsn;
ibool finished; ibool finished;
ulint data_len; ulint data_len;
ibool more_data; ibool more_data;
...@@ -2421,15 +2421,15 @@ void ...@@ -2421,15 +2421,15 @@ void
recv_group_scan_log_recs( recv_group_scan_log_recs(
/*=====================*/ /*=====================*/
log_group_t* group, /* in: log group */ log_group_t* group, /* in: log group */
ib_ulonglong* contiguous_lsn, /* in/out: it is known that all log ib_uint64_t* contiguous_lsn, /* in/out: it is known that all log
groups contain contiguous log data up groups contain contiguous log data up
to this lsn */ to this lsn */
ib_ulonglong* group_scanned_lsn)/* out: scanning succeeded up to ib_uint64_t* group_scanned_lsn)/* out: scanning succeeded up to
this lsn */ this lsn */
{ {
ibool finished; ibool finished;
ib_ulonglong start_lsn; ib_uint64_t start_lsn;
ib_ulonglong end_lsn; ib_uint64_t end_lsn;
finished = FALSE; finished = FALSE;
...@@ -2470,23 +2470,23 @@ recv_recovery_from_checkpoint_start( ...@@ -2470,23 +2470,23 @@ recv_recovery_from_checkpoint_start(
/*================================*/ /*================================*/
/* out: error code or DB_SUCCESS */ /* out: error code or DB_SUCCESS */
ulint type, /* in: LOG_CHECKPOINT or LOG_ARCHIVE */ ulint type, /* in: LOG_CHECKPOINT or LOG_ARCHIVE */
ib_ulonglong limit_lsn, /* in: recover up to this lsn ib_uint64_t limit_lsn, /* in: recover up to this lsn
if possible */ if possible */
ib_ulonglong min_flushed_lsn,/* in: min flushed lsn from ib_uint64_t min_flushed_lsn,/* in: min flushed lsn from
data files */ data files */
ib_ulonglong max_flushed_lsn)/* in: max flushed lsn from ib_uint64_t max_flushed_lsn)/* in: max flushed lsn from
data files */ data files */
{ {
log_group_t* group; log_group_t* group;
log_group_t* max_cp_group; log_group_t* max_cp_group;
log_group_t* up_to_date_group; log_group_t* up_to_date_group;
ulint max_cp_field; ulint max_cp_field;
ib_ulonglong checkpoint_lsn; ib_uint64_t checkpoint_lsn;
ib_ulonglong checkpoint_no; ib_uint64_t checkpoint_no;
ib_ulonglong old_scanned_lsn; ib_uint64_t old_scanned_lsn;
ib_ulonglong group_scanned_lsn; ib_uint64_t group_scanned_lsn;
ib_ulonglong contiguous_lsn; ib_uint64_t contiguous_lsn;
ib_ulonglong archived_lsn; ib_uint64_t archived_lsn;
ulint capacity; ulint capacity;
byte* buf; byte* buf;
byte log_hdr_buf[LOG_FILE_HDR_SIZE]; byte log_hdr_buf[LOG_FILE_HDR_SIZE];
...@@ -2901,7 +2901,7 @@ Resets the logs. The contents of log files will be lost! */ ...@@ -2901,7 +2901,7 @@ Resets the logs. The contents of log files will be lost! */
void void
recv_reset_logs( recv_reset_logs(
/*============*/ /*============*/
ib_ulonglong lsn, /* in: reset to this lsn ib_uint64_t lsn, /* in: reset to this lsn
rounded up to be divisible by rounded up to be divisible by
OS_FILE_LOG_BLOCK_SIZE, after OS_FILE_LOG_BLOCK_SIZE, after
which we add which we add
...@@ -2976,7 +2976,7 @@ recv_reset_log_files_for_backup( ...@@ -2976,7 +2976,7 @@ recv_reset_log_files_for_backup(
const char* log_dir, /* in: log file directory path */ const char* log_dir, /* in: log file directory path */
ulint n_log_files, /* in: number of log files */ ulint n_log_files, /* in: number of log files */
ulint log_file_size, /* in: log file size */ ulint log_file_size, /* in: log file size */
ib_ulonglong lsn) /* in: new start lsn, must be ib_uint64_t lsn) /* in: new start lsn, must be
divisible by OS_FILE_LOG_BLOCK_SIZE */ divisible by OS_FILE_LOG_BLOCK_SIZE */
{ {
os_file_t log_file; os_file_t log_file;
...@@ -3070,10 +3070,10 @@ log_group_recover_from_archive_file( ...@@ -3070,10 +3070,10 @@ log_group_recover_from_archive_file(
log_group_t* group) /* in: log group */ log_group_t* group) /* in: log group */
{ {
os_file_t file_handle; os_file_t file_handle;
ib_ulonglong start_lsn; ib_uint64_t start_lsn;
ib_ulonglong file_end_lsn; ib_uint64_t file_end_lsn;
ib_ulonglong dummy_lsn; ib_uint64_t dummy_lsn;
ib_ulonglong scanned_lsn; ib_uint64_t scanned_lsn;
ulint len; ulint len;
ibool ret; ibool ret;
byte* buf; byte* buf;
...@@ -3257,9 +3257,9 @@ ulint ...@@ -3257,9 +3257,9 @@ ulint
recv_recovery_from_archive_start( recv_recovery_from_archive_start(
/*=============================*/ /*=============================*/
/* out: error code or DB_SUCCESS */ /* out: error code or DB_SUCCESS */
ib_ulonglong min_flushed_lsn,/* in: min flushed lsn field from the ib_uint64_t min_flushed_lsn,/* in: min flushed lsn field from the
data files */ data files */
ib_ulonglong limit_lsn, /* in: recover up to this lsn if ib_uint64_t limit_lsn, /* in: recover up to this lsn if
possible */ possible */
ulint first_log_no) /* in: number of the first archived ulint first_log_no) /* in: number of the first archived
log file to use in the recovery; the log file to use in the recovery; the
......
...@@ -2512,7 +2512,7 @@ row_import_tablespace_for_mysql( ...@@ -2512,7 +2512,7 @@ row_import_tablespace_for_mysql(
{ {
dict_table_t* table; dict_table_t* table;
ibool success; ibool success;
ib_ulonglong current_lsn; ib_uint64_t current_lsn;
ulint err = DB_SUCCESS; ulint err = DB_SUCCESS;
ut_ad(trx->mysql_thread_id == os_thread_get_curr_id()); ut_ad(trx->mysql_thread_id == os_thread_get_curr_id());
......
...@@ -172,7 +172,7 @@ ulint srv_n_file_io_threads = ULINT_MAX; ...@@ -172,7 +172,7 @@ ulint srv_n_file_io_threads = ULINT_MAX;
#ifdef UNIV_LOG_ARCHIVE #ifdef UNIV_LOG_ARCHIVE
ibool srv_log_archive_on = FALSE; ibool srv_log_archive_on = FALSE;
ibool srv_archive_recovery = 0; ibool srv_archive_recovery = 0;
ib_ulonglong srv_archive_recovery_limit_lsn; ib_uint64_t srv_archive_recovery_limit_lsn;
#endif /* UNIV_LOG_ARCHIVE */ #endif /* UNIV_LOG_ARCHIVE */
ulint srv_lock_wait_timeout = 1024 * 1024 * 1024; ulint srv_lock_wait_timeout = 1024 * 1024 * 1024;
...@@ -2017,8 +2017,8 @@ srv_error_monitor_thread( ...@@ -2017,8 +2017,8 @@ srv_error_monitor_thread(
{ {
/* number of successive fatal timeouts observed */ /* number of successive fatal timeouts observed */
ulint fatal_cnt = 0; ulint fatal_cnt = 0;
ib_ulonglong old_lsn; ib_uint64_t old_lsn;
ib_ulonglong new_lsn; ib_uint64_t new_lsn;
old_lsn = srv_start_lsn; old_lsn = srv_start_lsn;
......
...@@ -57,9 +57,9 @@ Created 2/16/1996 Heikki Tuuri ...@@ -57,9 +57,9 @@ Created 2/16/1996 Heikki Tuuri
#include "que0que.h" #include "que0que.h"
/* Log sequence number immediately after startup */ /* Log sequence number immediately after startup */
ib_ulonglong srv_start_lsn; ib_uint64_t srv_start_lsn;
/* Log sequence number at shutdown */ /* Log sequence number at shutdown */
ib_ulonglong srv_shutdown_lsn; ib_uint64_t srv_shutdown_lsn;
#ifdef HAVE_DARWIN_THREADS #ifdef HAVE_DARWIN_THREADS
# include <sys/utsname.h> # include <sys/utsname.h>
...@@ -698,9 +698,9 @@ open_or_create_data_files( ...@@ -698,9 +698,9 @@ open_or_create_data_files(
ulint* max_arch_log_no,/* out: max of archived log ulint* max_arch_log_no,/* out: max of archived log
numbers in data files */ numbers in data files */
#endif /* UNIV_LOG_ARCHIVE */ #endif /* UNIV_LOG_ARCHIVE */
ib_ulonglong* min_flushed_lsn,/* out: min of flushed lsn ib_uint64_t* min_flushed_lsn,/* out: min of flushed lsn
values in data files */ values in data files */
ib_ulonglong* max_flushed_lsn,/* out: max of flushed lsn ib_uint64_t* max_flushed_lsn,/* out: max of flushed lsn
values in data files */ values in data files */
ulint* sum_of_new_sizes)/* out: sum of sizes of the ulint* sum_of_new_sizes)/* out: sum of sizes of the
new files added */ new files added */
...@@ -970,8 +970,8 @@ innobase_start_or_create_for_mysql(void) ...@@ -970,8 +970,8 @@ innobase_start_or_create_for_mysql(void)
ibool log_file_created; ibool log_file_created;
ibool log_created = FALSE; ibool log_created = FALSE;
ibool log_opened = FALSE; ibool log_opened = FALSE;
ib_ulonglong min_flushed_lsn; ib_uint64_t min_flushed_lsn;
ib_ulonglong max_flushed_lsn; ib_uint64_t max_flushed_lsn;
#ifdef UNIV_LOG_ARCHIVE #ifdef UNIV_LOG_ARCHIVE
ulint min_arch_log_no; ulint min_arch_log_no;
ulint max_arch_log_no; ulint max_arch_log_no;
...@@ -1385,7 +1385,7 @@ innobase_start_or_create_for_mysql(void) ...@@ -1385,7 +1385,7 @@ innobase_start_or_create_for_mysql(void)
return(DB_ERROR); return(DB_ERROR);
} }
if (max_flushed_lsn < (ib_ulonglong) 1000) { if (max_flushed_lsn < (ib_uint64_t) 1000) {
fprintf(stderr, fprintf(stderr,
"InnoDB: Cannot initialize created" "InnoDB: Cannot initialize created"
" log files because\n" " log files because\n"
......
...@@ -743,7 +743,7 @@ trx_commit_off_kernel( ...@@ -743,7 +743,7 @@ trx_commit_off_kernel(
trx_t* trx) /* in: transaction */ trx_t* trx) /* in: transaction */
{ {
page_t* update_hdr_page; page_t* update_hdr_page;
ib_ulonglong lsn; ib_uint64_t lsn;
trx_rseg_t* rseg; trx_rseg_t* rseg;
trx_undo_t* undo; trx_undo_t* undo;
ibool must_flush_log = FALSE; ibool must_flush_log = FALSE;
...@@ -1621,7 +1621,7 @@ trx_commit_complete_for_mysql( ...@@ -1621,7 +1621,7 @@ trx_commit_complete_for_mysql(
/* out: 0 or error number */ /* out: 0 or error number */
trx_t* trx) /* in: trx handle */ trx_t* trx) /* in: trx handle */
{ {
ib_ulonglong lsn = trx->commit_lsn; ib_uint64_t lsn = trx->commit_lsn;
ut_a(trx); ut_a(trx);
...@@ -1799,7 +1799,7 @@ trx_prepare_off_kernel( ...@@ -1799,7 +1799,7 @@ trx_prepare_off_kernel(
page_t* update_hdr_page; page_t* update_hdr_page;
trx_rseg_t* rseg; trx_rseg_t* rseg;
ibool must_flush_log = FALSE; ibool must_flush_log = FALSE;
ib_ulonglong lsn; ib_uint64_t lsn;
mtr_t mtr; mtr_t mtr;
#ifdef UNIV_SYNC_DEBUG #ifdef UNIV_SYNC_DEBUG
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment