6767bool zero_damaged_pages = false;
6868int bgwriter_lru_maxpages = 100 ;
6969double bgwriter_lru_multiplier = 2.0 ;
70- bool track_iotiming = false;
70+ bool track_io_timing = false;
7171
7272/*
7373 * How many buffers PrefetchBuffer callers should try to stay ahead of their
@@ -441,12 +441,12 @@ ReadBuffer_common(SMgrRelation smgr, char relpersistence, ForkNumber forkNum,
441441instr_time io_start ,
442442io_time ;
443443
444- if (track_iotiming )
444+ if (track_io_timing )
445445INSTR_TIME_SET_CURRENT (io_start );
446446
447447smgrread (smgr ,forkNum ,blockNum , (char * )bufBlock );
448448
449- if (track_iotiming )
449+ if (track_io_timing )
450450{
451451INSTR_TIME_SET_CURRENT (io_time );
452452INSTR_TIME_SUBTRACT (io_time ,io_start );
@@ -1938,7 +1938,7 @@ FlushBuffer(volatile BufferDesc *buf, SMgrRelation reln)
19381938buf -> flags &= ~BM_JUST_DIRTIED ;
19391939UnlockBufHdr (buf );
19401940
1941- if (track_iotiming )
1941+ if (track_io_timing )
19421942INSTR_TIME_SET_CURRENT (io_start );
19431943
19441944smgrwrite (reln ,
@@ -1947,7 +1947,7 @@ FlushBuffer(volatile BufferDesc *buf, SMgrRelation reln)
19471947 (char * )BufHdrGetBlock (buf ),
19481948 false);
19491949
1950- if (track_iotiming )
1950+ if (track_io_timing )
19511951{
19521952INSTR_TIME_SET_CURRENT (io_time );
19531953INSTR_TIME_SUBTRACT (io_time ,io_start );