67
67
bool zero_damaged_pages = false;
68
68
int bgwriter_lru_maxpages = 100 ;
69
69
double bgwriter_lru_multiplier = 2.0 ;
70
- bool track_iotiming = false;
70
+ bool track_io_timing = false;
71
71
72
72
/*
73
73
* How many buffers PrefetchBuffer callers should try to stay ahead of their
@@ -441,12 +441,12 @@ ReadBuffer_common(SMgrRelation smgr, char relpersistence, ForkNumber forkNum,
441
441
instr_time io_start ,
442
442
io_time ;
443
443
444
- if (track_iotiming )
444
+ if (track_io_timing )
445
445
INSTR_TIME_SET_CURRENT (io_start );
446
446
447
447
smgrread (smgr ,forkNum ,blockNum , (char * )bufBlock );
448
448
449
- if (track_iotiming )
449
+ if (track_io_timing )
450
450
{
451
451
INSTR_TIME_SET_CURRENT (io_time );
452
452
INSTR_TIME_SUBTRACT (io_time ,io_start );
@@ -1938,7 +1938,7 @@ FlushBuffer(volatile BufferDesc *buf, SMgrRelation reln)
1938
1938
buf -> flags &= ~BM_JUST_DIRTIED ;
1939
1939
UnlockBufHdr (buf );
1940
1940
1941
- if (track_iotiming )
1941
+ if (track_io_timing )
1942
1942
INSTR_TIME_SET_CURRENT (io_start );
1943
1943
1944
1944
smgrwrite (reln ,
@@ -1947,7 +1947,7 @@ FlushBuffer(volatile BufferDesc *buf, SMgrRelation reln)
1947
1947
(char * )BufHdrGetBlock (buf ),
1948
1948
false);
1949
1949
1950
- if (track_iotiming )
1950
+ if (track_io_timing )
1951
1951
{
1952
1952
INSTR_TIME_SET_CURRENT (io_time );
1953
1953
INSTR_TIME_SUBTRACT (io_time ,io_start );