PostgreSQL Source Code  git master
sync.h File Reference
Include dependency graph for sync.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  FileTag
 

Typedefs

typedef enum SyncRequestType SyncRequestType
 
typedef enum SyncRequestHandler SyncRequestHandler
 
typedef struct FileTag FileTag
 

Enumerations

enum  SyncRequestType { SYNC_REQUEST , SYNC_UNLINK_REQUEST , SYNC_FORGET_REQUEST , SYNC_FILTER_REQUEST }
 
enum  SyncRequestHandler {
  SYNC_HANDLER_MD = 0 , SYNC_HANDLER_CLOG , SYNC_HANDLER_COMMIT_TS , SYNC_HANDLER_MULTIXACT_OFFSET ,
  SYNC_HANDLER_MULTIXACT_MEMBER , SYNC_HANDLER_NONE
}
 

Functions

void InitSync (void)
 
void SyncPreCheckpoint (void)
 
void SyncPostCheckpoint (void)
 
void ProcessSyncRequests (void)
 
void RememberSyncRequest (const FileTag *ftag, SyncRequestType type)
 
bool RegisterSyncRequest (const FileTag *ftag, SyncRequestType type, bool retryOnError)
 

Typedef Documentation

◆ FileTag

typedef struct FileTag FileTag

◆ SyncRequestHandler

◆ SyncRequestType

Enumeration Type Documentation

◆ SyncRequestHandler

Enumerator
SYNC_HANDLER_MD 
SYNC_HANDLER_CLOG 
SYNC_HANDLER_COMMIT_TS 
SYNC_HANDLER_MULTIXACT_OFFSET 
SYNC_HANDLER_MULTIXACT_MEMBER 
SYNC_HANDLER_NONE 

Definition at line 35 of file sync.h.

36 {
37  SYNC_HANDLER_MD = 0,
SyncRequestHandler
Definition: sync.h:36
@ SYNC_HANDLER_MD
Definition: sync.h:37
@ SYNC_HANDLER_COMMIT_TS
Definition: sync.h:39
@ SYNC_HANDLER_MULTIXACT_MEMBER
Definition: sync.h:41
@ SYNC_HANDLER_CLOG
Definition: sync.h:38
@ SYNC_HANDLER_NONE
Definition: sync.h:42
@ SYNC_HANDLER_MULTIXACT_OFFSET
Definition: sync.h:40

◆ SyncRequestType

Enumerator
SYNC_REQUEST 
SYNC_UNLINK_REQUEST 
SYNC_FORGET_REQUEST 
SYNC_FILTER_REQUEST 

Definition at line 23 of file sync.h.

24 {
25  SYNC_REQUEST, /* schedule a call of sync function */
26  SYNC_UNLINK_REQUEST, /* schedule a call of unlink function */
27  SYNC_FORGET_REQUEST, /* forget all calls for a tag */
28  SYNC_FILTER_REQUEST /* forget all calls satisfying match fn */
SyncRequestType
Definition: sync.h:24
@ SYNC_FILTER_REQUEST
Definition: sync.h:28
@ SYNC_FORGET_REQUEST
Definition: sync.h:27
@ SYNC_UNLINK_REQUEST
Definition: sync.h:26
@ SYNC_REQUEST
Definition: sync.h:25

Function Documentation

◆ InitSync()

void InitSync ( void  )

Definition at line 131 of file sync.c.

132 {
133  /*
134  * Create pending-operations hashtable if we need it. Currently, we need
135  * it if we are standalone (not under a postmaster) or if we are a
136  * checkpointer auxiliary process.
137  */
139  {
140  HASHCTL hash_ctl;
141 
142  /*
143  * XXX: The checkpointer needs to add entries to the pending ops table
144  * when absorbing fsync requests. That is done within a critical
145  * section, which isn't usually allowed, but we make an exception. It
146  * means that there's a theoretical possibility that you run out of
147  * memory while absorbing fsync requests, which leads to a PANIC.
148  * Fortunately the hash table is small so that's unlikely to happen in
149  * practice.
150  */
152  "Pending ops context",
155 
156  hash_ctl.keysize = sizeof(FileTag);
157  hash_ctl.entrysize = sizeof(PendingFsyncEntry);
158  hash_ctl.hcxt = pendingOpsCxt;
159  pendingOps = hash_create("Pending Ops Table",
160  100L,
161  &hash_ctl,
164  }
165 }
HTAB * hash_create(const char *tabname, long nelem, const HASHCTL *info, int flags)
Definition: dynahash.c:350
bool IsUnderPostmaster
Definition: globals.c:113
#define HASH_CONTEXT
Definition: hsearch.h:102
#define HASH_ELEM
Definition: hsearch.h:95
#define HASH_BLOBS
Definition: hsearch.h:97
MemoryContext TopMemoryContext
Definition: mcxt.c:141
void MemoryContextAllowInCriticalSection(MemoryContext context, bool allow)
Definition: mcxt.c:603
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:153
#define AmCheckpointerProcess()
Definition: miscadmin.h:455
#define NIL
Definition: pg_list.h:68
Size keysize
Definition: hsearch.h:75
Size entrysize
Definition: hsearch.h:76
MemoryContext hcxt
Definition: hsearch.h:86
static List * pendingUnlinks
Definition: sync.c:78
static HTAB * pendingOps
Definition: sync.c:77
static MemoryContext pendingOpsCxt
Definition: sync.c:40
struct FileTag FileTag

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, AmCheckpointerProcess, HASHCTL::entrysize, HASH_BLOBS, HASH_CONTEXT, hash_create(), HASH_ELEM, HASHCTL::hcxt, IsUnderPostmaster, HASHCTL::keysize, MemoryContextAllowInCriticalSection(), NIL, pendingOps, pendingOpsCxt, pendingUnlinks, and TopMemoryContext.

Referenced by BaseInit().

◆ ProcessSyncRequests()

void ProcessSyncRequests ( void  )

Definition at line 293 of file sync.c.

294 {
295  static bool sync_in_progress = false;
296 
297  HASH_SEQ_STATUS hstat;
298  PendingFsyncEntry *entry;
299  int absorb_counter;
300 
301  /* Statistics on sync times */
302  int processed = 0;
303  instr_time sync_start,
304  sync_end,
305  sync_diff;
306  uint64 elapsed;
307  uint64 longest = 0;
308  uint64 total_elapsed = 0;
309 
310  /*
311  * This is only called during checkpoints, and checkpoints should only
312  * occur in processes that have created a pendingOps.
313  */
314  if (!pendingOps)
315  elog(ERROR, "cannot sync without a pendingOps table");
316 
317  /*
318  * If we are in the checkpointer, the sync had better include all fsync
319  * requests that were queued by backends up to this point. The tightest
320  * race condition that could occur is that a buffer that must be written
321  * and fsync'd for the checkpoint could have been dumped by a backend just
322  * before it was visited by BufferSync(). We know the backend will have
323  * queued an fsync request before clearing the buffer's dirtybit, so we
324  * are safe as long as we do an Absorb after completing BufferSync().
325  */
327 
328  /*
329  * To avoid excess fsync'ing (in the worst case, maybe a never-terminating
330  * checkpoint), we want to ignore fsync requests that are entered into the
331  * hashtable after this point --- they should be processed next time,
332  * instead. We use sync_cycle_ctr to tell old entries apart from new
333  * ones: new ones will have cycle_ctr equal to the incremented value of
334  * sync_cycle_ctr.
335  *
336  * In normal circumstances, all entries present in the table at this point
337  * will have cycle_ctr exactly equal to the current (about to be old)
338  * value of sync_cycle_ctr. However, if we fail partway through the
339  * fsync'ing loop, then older values of cycle_ctr might remain when we
340  * come back here to try again. Repeated checkpoint failures would
341  * eventually wrap the counter around to the point where an old entry
342  * might appear new, causing us to skip it, possibly allowing a checkpoint
343  * to succeed that should not have. To forestall wraparound, any time the
344  * previous ProcessSyncRequests() failed to complete, run through the
345  * table and forcibly set cycle_ctr = sync_cycle_ctr.
346  *
347  * Think not to merge this loop with the main loop, as the problem is
348  * exactly that that loop may fail before having visited all the entries.
349  * From a performance point of view it doesn't matter anyway, as this path
350  * will never be taken in a system that's functioning normally.
351  */
352  if (sync_in_progress)
353  {
354  /* prior try failed, so update any stale cycle_ctr values */
355  hash_seq_init(&hstat, pendingOps);
356  while ((entry = (PendingFsyncEntry *) hash_seq_search(&hstat)) != NULL)
357  {
358  entry->cycle_ctr = sync_cycle_ctr;
359  }
360  }
361 
362  /* Advance counter so that new hashtable entries are distinguishable */
363  sync_cycle_ctr++;
364 
365  /* Set flag to detect failure if we don't reach the end of the loop */
366  sync_in_progress = true;
367 
368  /* Now scan the hashtable for fsync requests to process */
369  absorb_counter = FSYNCS_PER_ABSORB;
370  hash_seq_init(&hstat, pendingOps);
371  while ((entry = (PendingFsyncEntry *) hash_seq_search(&hstat)) != NULL)
372  {
373  int failures;
374 
375  /*
376  * If the entry is new then don't process it this time; it is new.
377  * Note "continue" bypasses the hash-remove call at the bottom of the
378  * loop.
379  */
380  if (entry->cycle_ctr == sync_cycle_ctr)
381  continue;
382 
383  /* Else assert we haven't missed it */
384  Assert((CycleCtr) (entry->cycle_ctr + 1) == sync_cycle_ctr);
385 
386  /*
387  * If fsync is off then we don't have to bother opening the file at
388  * all. (We delay checking until this point so that changing fsync on
389  * the fly behaves sensibly.)
390  */
391  if (enableFsync)
392  {
393  /*
394  * If in checkpointer, we want to absorb pending requests every so
395  * often to prevent overflow of the fsync request queue. It is
396  * unspecified whether newly-added entries will be visited by
397  * hash_seq_search, but we don't care since we don't need to
398  * process them anyway.
399  */
400  if (--absorb_counter <= 0)
401  {
403  absorb_counter = FSYNCS_PER_ABSORB;
404  }
405 
406  /*
407  * The fsync table could contain requests to fsync segments that
408  * have been deleted (unlinked) by the time we get to them. Rather
409  * than just hoping an ENOENT (or EACCES on Windows) error can be
410  * ignored, what we do on error is absorb pending requests and
411  * then retry. Since mdunlink() queues a "cancel" message before
412  * actually unlinking, the fsync request is guaranteed to be
413  * marked canceled after the absorb if it really was this case.
414  * DROP DATABASE likewise has to tell us to forget fsync requests
415  * before it starts deletions.
416  */
417  for (failures = 0; !entry->canceled; failures++)
418  {
419  char path[MAXPGPATH];
420 
421  INSTR_TIME_SET_CURRENT(sync_start);
422  if (syncsw[entry->tag.handler].sync_syncfiletag(&entry->tag,
423  path) == 0)
424  {
425  /* Success; update statistics about sync timing */
426  INSTR_TIME_SET_CURRENT(sync_end);
427  sync_diff = sync_end;
428  INSTR_TIME_SUBTRACT(sync_diff, sync_start);
429  elapsed = INSTR_TIME_GET_MICROSEC(sync_diff);
430  if (elapsed > longest)
431  longest = elapsed;
432  total_elapsed += elapsed;
433  processed++;
434 
435  if (log_checkpoints)
436  elog(DEBUG1, "checkpoint sync: number=%d file=%s time=%.3f ms",
437  processed,
438  path,
439  (double) elapsed / 1000);
440 
441  break; /* out of retry loop */
442  }
443 
444  /*
445  * It is possible that the relation has been dropped or
446  * truncated since the fsync request was entered. Therefore,
447  * allow ENOENT, but only if we didn't fail already on this
448  * file.
449  */
450  if (!FILE_POSSIBLY_DELETED(errno) || failures > 0)
453  errmsg("could not fsync file \"%s\": %m",
454  path)));
455  else
456  ereport(DEBUG1,
458  errmsg_internal("could not fsync file \"%s\" but retrying: %m",
459  path)));
460 
461  /*
462  * Absorb incoming requests and check to see if a cancel
463  * arrived for this relation fork.
464  */
466  absorb_counter = FSYNCS_PER_ABSORB; /* might as well... */
467  } /* end retry loop */
468  }
469 
470  /* We are done with this entry, remove it */
471  if (hash_search(pendingOps, &entry->tag, HASH_REMOVE, NULL) == NULL)
472  elog(ERROR, "pendingOps corrupted");
473  } /* end loop over hashtable entries */
474 
475  /* Return sync performance metrics for report at checkpoint end */
476  CheckpointStats.ckpt_sync_rels = processed;
478  CheckpointStats.ckpt_agg_sync_time = total_elapsed;
479 
480  /* Flag successful completion of ProcessSyncRequests */
481  sync_in_progress = false;
482 }
void AbsorbSyncRequests(void)
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition: dynahash.c:953
void * hash_seq_search(HASH_SEQ_STATUS *status)
Definition: dynahash.c:1431
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition: dynahash.c:1421
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1156
int errcode_for_file_access(void)
Definition: elog.c:881
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define DEBUG1
Definition: elog.h:30
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
int data_sync_elevel(int elevel)
Definition: fd.c:3833
#define FILE_POSSIBLY_DELETED(err)
Definition: fd.h:82
bool enableFsync
Definition: globals.c:123
@ HASH_REMOVE
Definition: hsearch.h:115
#define INSTR_TIME_SET_CURRENT(t)
Definition: instr_time.h:122
#define INSTR_TIME_SUBTRACT(x, y)
Definition: instr_time.h:181
#define INSTR_TIME_GET_MICROSEC(t)
Definition: instr_time.h:194
Assert(fmt[strlen(fmt) - 1] !='\n')
#define MAXPGPATH
static chr * longest(struct vars *v, struct dfa *d, chr *start, chr *stop, int *hitstopp)
Definition: rege_dfa.c:42
uint64 ckpt_agg_sync_time
Definition: xlog.h:170
uint64 ckpt_longest_sync
Definition: xlog.h:169
int ckpt_sync_rels
Definition: xlog.h:168
int16 handler
Definition: sync.h:52
FileTag tag
Definition: sync.c:65
CycleCtr cycle_ctr
Definition: sync.c:66
bool canceled
Definition: sync.c:67
int(* sync_syncfiletag)(const FileTag *ftag, char *path)
Definition: sync.c:93
static const SyncOps syncsw[]
Definition: sync.c:102
static CycleCtr sync_cycle_ctr
Definition: sync.c:81
#define FSYNCS_PER_ABSORB
Definition: sync.c:85
uint16 CycleCtr
Definition: sync.c:61
bool log_checkpoints
Definition: xlog.c:132
CheckpointStatsData CheckpointStats
Definition: xlog.c:212

References AbsorbSyncRequests(), Assert(), PendingFsyncEntry::canceled, CheckpointStats, CheckpointStatsData::ckpt_agg_sync_time, CheckpointStatsData::ckpt_longest_sync, CheckpointStatsData::ckpt_sync_rels, PendingFsyncEntry::cycle_ctr, data_sync_elevel(), DEBUG1, elog(), enableFsync, ereport, errcode_for_file_access(), errmsg(), errmsg_internal(), ERROR, FILE_POSSIBLY_DELETED, FSYNCS_PER_ABSORB, FileTag::handler, HASH_REMOVE, hash_search(), hash_seq_init(), hash_seq_search(), INSTR_TIME_GET_MICROSEC, INSTR_TIME_SET_CURRENT, INSTR_TIME_SUBTRACT, log_checkpoints, longest(), MAXPGPATH, pendingOps, sync_cycle_ctr, SyncOps::sync_syncfiletag, syncsw, and PendingFsyncEntry::tag.

Referenced by CheckPointGuts().

◆ RegisterSyncRequest()

bool RegisterSyncRequest ( const FileTag ftag,
SyncRequestType  type,
bool  retryOnError 
)

Definition at line 587 of file sync.c.

589 {
590  bool ret;
591 
592  if (pendingOps != NULL)
593  {
594  /* standalone backend or startup process: fsync state is local */
595  RememberSyncRequest(ftag, type);
596  return true;
597  }
598 
599  for (;;)
600  {
601  /*
602  * Notify the checkpointer about it. If we fail to queue a message in
603  * retryOnError mode, we have to sleep and try again ... ugly, but
604  * hopefully won't happen often.
605  *
606  * XXX should we CHECK_FOR_INTERRUPTS in this loop? Escaping with an
607  * error in the case of SYNC_UNLINK_REQUEST would leave the
608  * no-longer-used file still present on disk, which would be bad, so
609  * I'm inclined to assume that the checkpointer will always empty the
610  * queue soon.
611  */
612  ret = ForwardSyncRequest(ftag, type);
613 
614  /*
615  * If we are successful in queueing the request, or we failed and were
616  * instructed not to retry on error, break.
617  */
618  if (ret || (!ret && !retryOnError))
619  break;
620 
623  }
624 
625  return ret;
626 }
bool ForwardSyncRequest(const FileTag *ftag, SyncRequestType type)
int WaitLatch(Latch *latch, int wakeEvents, long timeout, uint32 wait_event_info)
Definition: latch.c:492
#define WL_TIMEOUT
Definition: latch.h:128
#define WL_EXIT_ON_PM_DEATH
Definition: latch.h:130
void RememberSyncRequest(const FileTag *ftag, SyncRequestType type)
Definition: sync.c:494
@ WAIT_EVENT_REGISTER_SYNC_REQUEST
Definition: wait_event.h:150

References ForwardSyncRequest(), pendingOps, RememberSyncRequest(), generate_unaccent_rules::type, WAIT_EVENT_REGISTER_SYNC_REQUEST, WaitLatch(), WL_EXIT_ON_PM_DEATH, and WL_TIMEOUT.

Referenced by ForgetDatabaseSyncRequests(), register_dirty_segment(), register_forget_request(), register_unlink_segment(), SlruInternalDeleteSegment(), and SlruPhysicalWritePage().

◆ RememberSyncRequest()

void RememberSyncRequest ( const FileTag ftag,
SyncRequestType  type 
)

Definition at line 494 of file sync.c.

495 {
497 
498  if (type == SYNC_FORGET_REQUEST)
499  {
500  PendingFsyncEntry *entry;
501 
502  /* Cancel previously entered request */
504  ftag,
505  HASH_FIND,
506  NULL);
507  if (entry != NULL)
508  entry->canceled = true;
509  }
510  else if (type == SYNC_FILTER_REQUEST)
511  {
512  HASH_SEQ_STATUS hstat;
513  PendingFsyncEntry *pfe;
514  ListCell *cell;
515 
516  /* Cancel matching fsync requests */
517  hash_seq_init(&hstat, pendingOps);
518  while ((pfe = (PendingFsyncEntry *) hash_seq_search(&hstat)) != NULL)
519  {
520  if (pfe->tag.handler == ftag->handler &&
521  syncsw[ftag->handler].sync_filetagmatches(ftag, &pfe->tag))
522  pfe->canceled = true;
523  }
524 
525  /* Cancel matching unlink requests */
526  foreach(cell, pendingUnlinks)
527  {
529 
530  if (pue->tag.handler == ftag->handler &&
531  syncsw[ftag->handler].sync_filetagmatches(ftag, &pue->tag))
532  pue->canceled = true;
533  }
534  }
535  else if (type == SYNC_UNLINK_REQUEST)
536  {
537  /* Unlink request: put it in the linked list */
539  PendingUnlinkEntry *entry;
540 
541  entry = palloc(sizeof(PendingUnlinkEntry));
542  entry->tag = *ftag;
544  entry->canceled = false;
545 
547 
548  MemoryContextSwitchTo(oldcxt);
549  }
550  else
551  {
552  /* Normal case: enter a request to fsync this segment */
554  PendingFsyncEntry *entry;
555  bool found;
556 
558 
560  ftag,
561  HASH_ENTER,
562  &found);
563  /* if new entry, or was previously canceled, initialize it */
564  if (!found || entry->canceled)
565  {
566  entry->cycle_ctr = sync_cycle_ctr;
567  entry->canceled = false;
568  }
569 
570  /*
571  * NB: it's intentional that we don't change cycle_ctr if the entry
572  * already exists. The cycle_ctr must represent the oldest fsync
573  * request that could be in the entry.
574  */
575 
576  MemoryContextSwitchTo(oldcxt);
577  }
578 }
@ HASH_FIND
Definition: hsearch.h:113
@ HASH_ENTER
Definition: hsearch.h:114
List * lappend(List *list, void *datum)
Definition: list.c:338
void * palloc(Size size)
Definition: mcxt.c:1226
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:138
#define lfirst(lc)
Definition: pg_list.h:172
FileTag tag
Definition: sync.c:72
CycleCtr cycle_ctr
Definition: sync.c:73
bool canceled
Definition: sync.c:74
bool(* sync_filetagmatches)(const FileTag *ftag, const FileTag *candidate)
Definition: sync.c:95
static CycleCtr checkpoint_cycle_ctr
Definition: sync.c:82

References Assert(), PendingFsyncEntry::canceled, PendingUnlinkEntry::canceled, checkpoint_cycle_ctr, PendingFsyncEntry::cycle_ctr, PendingUnlinkEntry::cycle_ctr, FileTag::handler, HASH_ENTER, HASH_FIND, hash_search(), hash_seq_init(), hash_seq_search(), lappend(), lfirst, MemoryContextSwitchTo(), palloc(), pendingOps, pendingOpsCxt, pendingUnlinks, sync_cycle_ctr, SyncOps::sync_filetagmatches, SYNC_FILTER_REQUEST, SYNC_FORGET_REQUEST, SYNC_REQUEST, SYNC_UNLINK_REQUEST, syncsw, PendingFsyncEntry::tag, PendingUnlinkEntry::tag, and generate_unaccent_rules::type.

Referenced by AbsorbSyncRequests(), and RegisterSyncRequest().

◆ SyncPostCheckpoint()

void SyncPostCheckpoint ( void  )

Definition at line 209 of file sync.c.

210 {
211  int absorb_counter;
212  ListCell *lc;
213 
214  absorb_counter = UNLINKS_PER_ABSORB;
215  foreach(lc, pendingUnlinks)
216  {
218  char path[MAXPGPATH];
219 
220  /* Skip over any canceled entries */
221  if (entry->canceled)
222  continue;
223 
224  /*
225  * New entries are appended to the end, so if the entry is new we've
226  * reached the end of old entries.
227  *
228  * Note: if just the right number of consecutive checkpoints fail, we
229  * could be fooled here by cycle_ctr wraparound. However, the only
230  * consequence is that we'd delay unlinking for one more checkpoint,
231  * which is perfectly tolerable.
232  */
233  if (entry->cycle_ctr == checkpoint_cycle_ctr)
234  break;
235 
236  /* Unlink the file */
237  if (syncsw[entry->tag.handler].sync_unlinkfiletag(&entry->tag,
238  path) < 0)
239  {
240  /*
241  * There's a race condition, when the database is dropped at the
242  * same time that we process the pending unlink requests. If the
243  * DROP DATABASE deletes the file before we do, we will get ENOENT
244  * here. rmtree() also has to ignore ENOENT errors, to deal with
245  * the possibility that we delete the file first.
246  */
247  if (errno != ENOENT)
250  errmsg("could not remove file \"%s\": %m", path)));
251  }
252 
253  /* Mark the list entry as canceled, just in case */
254  entry->canceled = true;
255 
256  /*
257  * As in ProcessSyncRequests, we don't want to stop absorbing fsync
258  * requests for a long time when there are many deletions to be done.
259  * We can safely call AbsorbSyncRequests() at this point in the loop.
260  */
261  if (--absorb_counter <= 0)
262  {
264  absorb_counter = UNLINKS_PER_ABSORB;
265  }
266  }
267 
268  /*
269  * If we reached the end of the list, we can just remove the whole list
270  * (remembering to pfree all the PendingUnlinkEntry objects). Otherwise,
271  * we must keep the entries at or after "lc".
272  */
273  if (lc == NULL)
274  {
277  }
278  else
279  {
280  int ntodelete = list_cell_number(pendingUnlinks, lc);
281 
282  for (int i = 0; i < ntodelete; i++)
284 
286  }
287 }
#define WARNING
Definition: elog.h:36
int i
Definition: isn.c:73
List * list_delete_first_n(List *list, int n)
Definition: list.c:982
void list_free_deep(List *list)
Definition: list.c:1559
void pfree(void *pointer)
Definition: mcxt.c:1456
static void * list_nth(const List *list, int n)
Definition: pg_list.h:299
static int list_cell_number(const List *l, const ListCell *c)
Definition: pg_list.h:333
int(* sync_unlinkfiletag)(const FileTag *ftag, char *path)
Definition: sync.c:94
#define UNLINKS_PER_ABSORB
Definition: sync.c:86

References AbsorbSyncRequests(), PendingUnlinkEntry::canceled, checkpoint_cycle_ctr, PendingUnlinkEntry::cycle_ctr, ereport, errcode_for_file_access(), errmsg(), FileTag::handler, i, lfirst, list_cell_number(), list_delete_first_n(), list_free_deep(), list_nth(), MAXPGPATH, NIL, pendingUnlinks, pfree(), SyncOps::sync_unlinkfiletag, syncsw, PendingUnlinkEntry::tag, UNLINKS_PER_ABSORB, and WARNING.

Referenced by CreateCheckPoint().

◆ SyncPreCheckpoint()

void SyncPreCheckpoint ( void  )

Definition at line 184 of file sync.c.

185 {
186  /*
187  * Operations such as DROP TABLESPACE assume that the next checkpoint will
188  * process all recently forwarded unlink requests, but if they aren't
189  * absorbed prior to advancing the cycle counter, they won't be processed
190  * until a future checkpoint. The following absorb ensures that any
191  * unlink requests forwarded before the checkpoint began will be processed
192  * in the current checkpoint.
193  */
195 
196  /*
197  * Any unlink requests arriving after this point will be assigned the next
198  * cycle counter, and won't be unlinked until next checkpoint.
199  */
201 }

References AbsorbSyncRequests(), and checkpoint_cycle_ctr.

Referenced by CreateCheckPoint().