PostgreSQL Source Code git master
aio.c File Reference
#include "postgres.h"
#include "lib/ilist.h"
#include "miscadmin.h"
#include "port/atomics.h"
#include "storage/aio.h"
#include "storage/aio_internal.h"
#include "storage/aio_subsys.h"
#include "utils/guc.h"
#include "utils/guc_hooks.h"
#include "utils/injection_point.h"
#include "utils/resowner.h"
#include "utils/wait_event_types.h"
Include dependency graph for aio.c:

Go to the source code of this file.

Macros

#define PGAIO_HS_TOSTR_CASE(sym)   case PGAIO_HS_##sym: return #sym
 

Functions

static void pgaio_io_update_state (PgAioHandle *ioh, PgAioHandleState new_state)
 
static void pgaio_io_reclaim (PgAioHandle *ioh)
 
static void pgaio_io_resowner_register (PgAioHandle *ioh)
 
static void pgaio_io_wait_for_free (void)
 
static PgAioHandlepgaio_io_from_wref (PgAioWaitRef *iow, uint64 *ref_generation)
 
static const char * pgaio_io_state_get_name (PgAioHandleState s)
 
static void pgaio_io_wait (PgAioHandle *ioh, uint64 ref_generation)
 
PgAioHandlepgaio_io_acquire (struct ResourceOwnerData *resowner, PgAioReturn *ret)
 
PgAioHandlepgaio_io_acquire_nb (struct ResourceOwnerData *resowner, PgAioReturn *ret)
 
void pgaio_io_release (PgAioHandle *ioh)
 
void pgaio_io_release_resowner (dlist_node *ioh_node, bool on_error)
 
void pgaio_io_set_flag (PgAioHandle *ioh, PgAioHandleFlags flag)
 
int pgaio_io_get_id (PgAioHandle *ioh)
 
ProcNumber pgaio_io_get_owner (PgAioHandle *ioh)
 
void pgaio_io_get_wref (PgAioHandle *ioh, PgAioWaitRef *iow)
 
void pgaio_io_stage (PgAioHandle *ioh, PgAioOp op)
 
bool pgaio_io_needs_synchronous_execution (PgAioHandle *ioh)
 
void pgaio_io_prepare_submit (PgAioHandle *ioh)
 
void pgaio_io_process_completion (PgAioHandle *ioh, int result)
 
bool pgaio_io_was_recycled (PgAioHandle *ioh, uint64 ref_generation, PgAioHandleState *state)
 
const char * pgaio_io_get_state_name (PgAioHandle *ioh)
 
const char * pgaio_result_status_string (PgAioResultStatus rs)
 
void pgaio_wref_clear (PgAioWaitRef *iow)
 
bool pgaio_wref_valid (PgAioWaitRef *iow)
 
int pgaio_wref_get_id (PgAioWaitRef *iow)
 
void pgaio_wref_wait (PgAioWaitRef *iow)
 
bool pgaio_wref_check_done (PgAioWaitRef *iow)
 
void pgaio_enter_batchmode (void)
 
void pgaio_exit_batchmode (void)
 
bool pgaio_have_staged (void)
 
void pgaio_submit_staged (void)
 
void pgaio_error_cleanup (void)
 
void AtEOXact_Aio (bool is_commit)
 
void pgaio_closing_fd (int fd)
 
void pgaio_shutdown (int code, Datum arg)
 
void assign_io_method (int newval, void *extra)
 
bool check_io_max_concurrency (int *newval, void **extra, GucSource source)
 

Variables

const struct config_enum_entry io_method_options []
 
int io_method = DEFAULT_IO_METHOD
 
int io_max_concurrency = -1
 
PgAioCtlpgaio_ctl
 
PgAioBackendpgaio_my_backend
 
static const IoMethodOps *const pgaio_method_ops_table []
 
const IoMethodOpspgaio_method_ops
 

Macro Definition Documentation

◆ PGAIO_HS_TOSTR_CASE

#define PGAIO_HS_TOSTR_CASE (   sym)    case PGAIO_HS_##sym: return #sym

Function Documentation

◆ assign_io_method()

void assign_io_method ( int  newval,
void *  extra 
)

Definition at line 1302 of file aio.c.

1303{
1306
1308}
const IoMethodOps * pgaio_method_ops
Definition: aio.c:93
static const IoMethodOps *const pgaio_method_ops_table[]
Definition: aio.c:84
const struct config_enum_entry io_method_options[]
Definition: aio.c:64
#define lengthof(array)
Definition: c.h:759
#define newval
Assert(PointerIsAligned(start, uint64))

References Assert(), io_method_options, lengthof, newval, pgaio_method_ops, and pgaio_method_ops_table.

◆ AtEOXact_Aio()

void AtEOXact_Aio ( bool  is_commit)

Definition at line 1173 of file aio.c.

1174{
1175 /*
1176 * We should never be in batch mode at transactional boundaries. In case
1177 * an error was thrown while in batch mode, pgaio_error_cleanup() should
1178 * have exited batchmode.
1179 *
1180 * In case we are in batchmode somehow, make sure to submit all staged
1181 * IOs, other backends may need them to complete to continue.
1182 */
1184 {
1186 elog(WARNING, "open AIO batch at end of (sub-)transaction");
1187 }
1188
1189 /*
1190 * As we aren't in batchmode, there shouldn't be any unsubmitted IOs.
1191 */
1193}
PgAioBackend * pgaio_my_backend
Definition: aio.c:81
void pgaio_error_cleanup(void)
Definition: aio.c:1145
#define WARNING
Definition: elog.h:36
#define elog(elevel,...)
Definition: elog.h:225
uint16 num_staged_ios
Definition: aio_internal.h:208

References Assert(), elog, PgAioBackend::in_batchmode, PgAioBackend::num_staged_ios, pgaio_error_cleanup(), pgaio_my_backend, and WARNING.

Referenced by AbortSubTransaction(), AbortTransaction(), CommitTransaction(), pgaio_shutdown(), and PrepareTransaction().

◆ check_io_max_concurrency()

bool check_io_max_concurrency ( int *  newval,
void **  extra,
GucSource  source 
)

Definition at line 1311 of file aio.c.

1312{
1313 if (*newval == -1)
1314 {
1315 /*
1316 * Auto-tuning will be applied later during startup, as auto-tuning
1317 * depends on the value of various GUCs.
1318 */
1319 return true;
1320 }
1321 else if (*newval == 0)
1322 {
1323 GUC_check_errdetail("Only -1 or values bigger than 0 are valid.");
1324 return false;
1325 }
1326
1327 return true;
1328}
#define GUC_check_errdetail
Definition: guc.h:481

References GUC_check_errdetail, and newval.

◆ pgaio_closing_fd()

void pgaio_closing_fd ( int  fd)

Definition at line 1200 of file aio.c.

1201{
1202 /*
1203 * Might be called before AIO is initialized or in a subprocess that
1204 * doesn't use AIO.
1205 */
1206 if (!pgaio_my_backend)
1207 return;
1208
1209 /*
1210 * For now just submit all staged IOs - we could be more selective, but
1211 * it's probably not worth it.
1212 */
1214 {
1216 "submitting %d IOs before FD %d gets closed",
1219 }
1220
1221 /*
1222 * If requested by the IO method, wait for all IOs that use the
1223 * to-be-closed FD.
1224 */
1226 {
1227 /*
1228 * As waiting for one IO to complete may complete multiple IOs, we
1229 * can't just use a mutable list iterator. The maximum number of
1230 * in-flight IOs is fairly small, so just restart the loop after
1231 * waiting for an IO.
1232 */
1234 {
1235 dlist_iter iter;
1236 PgAioHandle *ioh = NULL;
1237 uint64 generation;
1238
1240 {
1241 ioh = dclist_container(PgAioHandle, node, iter.cur);
1242
1243 generation = ioh->generation;
1244
1245 if (pgaio_io_uses_fd(ioh, fd))
1246 break;
1247 else
1248 ioh = NULL;
1249 }
1250
1251 if (!ioh)
1252 break;
1253
1255 "waiting for IO before FD %d gets closed, %d in-flight IOs",
1257
1258 /* see comment in pgaio_io_wait_for_free() about raciness */
1259 pgaio_io_wait(ioh, generation);
1260 }
1261 }
1262}
void pgaio_submit_staged(void)
Definition: aio.c:1103
static void pgaio_io_wait(PgAioHandle *ioh, uint64 ref_generation)
Definition: aio.c:569
#define pgaio_debug(elevel, msg,...)
Definition: aio_internal.h:376
#define pgaio_debug_io(elevel, ioh, msg,...)
Definition: aio_internal.h:389
bool pgaio_io_uses_fd(PgAioHandle *ioh, int fd)
Definition: aio_io.c:197
uint64_t uint64
Definition: c.h:503
#define DEBUG2
Definition: elog.h:29
#define dclist_container(type, membername, ptr)
Definition: ilist.h:947
static uint32 dclist_count(const dclist_head *head)
Definition: ilist.h:932
static bool dclist_is_empty(const dclist_head *head)
Definition: ilist.h:682
#define dclist_foreach(iter, lhead)
Definition: ilist.h:970
static int fd(const char *x, int i)
Definition: preproc-init.c:105
bool wait_on_fd_before_close
Definition: aio_internal.h:262
dclist_head in_flight_ios
Definition: aio_internal.h:219
uint64 generation
Definition: aio_internal.h:146
dlist_node * cur
Definition: ilist.h:179

References dlist_iter::cur, dclist_container, dclist_count(), dclist_foreach, dclist_is_empty(), DEBUG2, fd(), PgAioHandle::generation, PgAioBackend::in_flight_ios, PgAioBackend::num_staged_ios, pgaio_debug, pgaio_debug_io, pgaio_io_uses_fd(), pgaio_io_wait(), pgaio_method_ops, pgaio_my_backend, pgaio_submit_staged(), and IoMethodOps::wait_on_fd_before_close.

Referenced by CloseTransientFile(), FileClose(), FreeDesc(), and LruDelete().

◆ pgaio_enter_batchmode()

void pgaio_enter_batchmode ( void  )

Definition at line 1061 of file aio.c.

1062{
1064 elog(ERROR, "starting batch while batch already in progress");
1066}
#define ERROR
Definition: elog.h:39

References elog, ERROR, PgAioBackend::in_batchmode, and pgaio_my_backend.

Referenced by batch_start(), read_rel_block_ll(), and read_stream_look_ahead().

◆ pgaio_error_cleanup()

void pgaio_error_cleanup ( void  )

Definition at line 1145 of file aio.c.

1146{
1147 /*
1148 * It is possible that code errored out after pgaio_enter_batchmode() but
1149 * before pgaio_exit_batchmode() was called. In that case we need to
1150 * submit the IO now.
1151 */
1153 {
1155
1157 }
1158
1159 /*
1160 * As we aren't in batchmode, there shouldn't be any unsubmitted IOs.
1161 */
1163}

References Assert(), PgAioBackend::in_batchmode, PgAioBackend::num_staged_ios, pgaio_my_backend, and pgaio_submit_staged().

Referenced by AbortSubTransaction(), AbortTransaction(), AtEOXact_Aio(), AutoVacLauncherMain(), BackgroundWriterMain(), CheckpointerMain(), pgarch_archiveXlog(), WalSndErrorCleanup(), WalSummarizerMain(), and WalWriterMain().

◆ pgaio_exit_batchmode()

void pgaio_exit_batchmode ( void  )

◆ pgaio_have_staged()

bool pgaio_have_staged ( void  )

◆ pgaio_io_acquire()

PgAioHandle * pgaio_io_acquire ( struct ResourceOwnerData resowner,
PgAioReturn ret 
)

Definition at line 159 of file aio.c.

160{
161 PgAioHandle *h;
162
163 while (true)
164 {
165 h = pgaio_io_acquire_nb(resowner, ret);
166
167 if (h != NULL)
168 return h;
169
170 /*
171 * Evidently all handles by this backend are in use. Just wait for
172 * some to complete.
173 */
175 }
176}
static void pgaio_io_wait_for_free(void)
Definition: aio.c:751
PgAioHandle * pgaio_io_acquire_nb(struct ResourceOwnerData *resowner, PgAioReturn *ret)
Definition: aio.c:185

References pgaio_io_acquire_nb(), and pgaio_io_wait_for_free().

Referenced by AsyncReadBuffers(), handle_get(), handle_get_and_error(), handle_get_release(), handle_get_twice(), and read_rel_block_ll().

◆ pgaio_io_acquire_nb()

PgAioHandle * pgaio_io_acquire_nb ( struct ResourceOwnerData resowner,
PgAioReturn ret 
)

Definition at line 185 of file aio.c.

186{
187 PgAioHandle *ioh = NULL;
188
190 {
193 }
194
196 elog(ERROR, "API violation: Only one IO can be handed out");
197
198 /*
199 * Probably not needed today, as interrupts should not process this IO,
200 * but...
201 */
203
205 {
207
208 ioh = dclist_container(PgAioHandle, node, ion);
209
210 Assert(ioh->state == PGAIO_HS_IDLE);
212
215
216 if (resowner)
218
219 if (ret)
220 {
221 ioh->report_return = ret;
223 }
224 }
225
227
228 return ioh;
229}
static void pgaio_io_update_state(PgAioHandle *ioh, PgAioHandleState new_state)
Definition: aio.c:383
static void pgaio_io_resowner_register(PgAioHandle *ioh)
Definition: aio.c:406
@ PGAIO_HS_IDLE
Definition: aio_internal.h:46
@ PGAIO_HS_HANDED_OUT
Definition: aio_internal.h:53
#define PGAIO_SUBMIT_BATCH_SIZE
Definition: aio_internal.h:28
@ PGAIO_RS_UNKNOWN
Definition: aio_types.h:80
ProcNumber MyProcNumber
Definition: globals.c:91
static dlist_node * dclist_pop_head_node(dclist_head *head)
Definition: ilist.h:789
#define RESUME_INTERRUPTS()
Definition: miscadmin.h:136
#define HOLD_INTERRUPTS()
Definition: miscadmin.h:134
dclist_head idle_ios
Definition: aio_internal.h:191
PgAioHandle * handed_out_io
Definition: aio_internal.h:200
int32 owner_procno
Definition: aio_internal.h:125
PgAioReturn * report_return
Definition: aio_internal.h:171
PgAioHandleState state
Definition: aio_internal.h:99
uint32 status
Definition: aio_types.h:108
PgAioResult result
Definition: aio_types.h:132

References Assert(), dclist_container, dclist_is_empty(), dclist_pop_head_node(), elog, ERROR, PgAioBackend::handed_out_io, HOLD_INTERRUPTS, PgAioBackend::idle_ios, MyProcNumber, PgAioBackend::num_staged_ios, PgAioHandle::owner_procno, PGAIO_HS_HANDED_OUT, PGAIO_HS_IDLE, pgaio_io_resowner_register(), pgaio_io_update_state(), pgaio_my_backend, PGAIO_RS_UNKNOWN, PGAIO_SUBMIT_BATCH_SIZE, pgaio_submit_staged(), PgAioHandle::report_return, PgAioReturn::result, RESUME_INTERRUPTS, PgAioHandle::state, and PgAioResult::status.

Referenced by AsyncReadBuffers(), and pgaio_io_acquire().

◆ pgaio_io_from_wref()

static PgAioHandle * pgaio_io_from_wref ( PgAioWaitRef iow,
uint64 ref_generation 
)
static

Definition at line 871 of file aio.c.

872{
873 PgAioHandle *ioh;
874
876
877 ioh = &pgaio_ctl->io_handles[iow->aio_index];
878
879 *ref_generation = ((uint64) iow->generation_upper) << 32 |
880 iow->generation_lower;
881
882 Assert(*ref_generation != 0);
883
884 return ioh;
885}
PgAioCtl * pgaio_ctl
Definition: aio.c:78
PgAioHandle * io_handles
Definition: aio_internal.h:246
uint32 io_handle_count
Definition: aio_internal.h:245
uint32 generation_upper
Definition: aio_types.h:45
uint32 aio_index
Definition: aio_types.h:35
uint32 generation_lower
Definition: aio_types.h:46

References PgAioWaitRef::aio_index, Assert(), PgAioWaitRef::generation_lower, PgAioWaitRef::generation_upper, PgAioCtl::io_handle_count, PgAioCtl::io_handles, and pgaio_ctl.

Referenced by pgaio_wref_check_done(), and pgaio_wref_wait().

◆ pgaio_io_get_id()

int pgaio_io_get_id ( PgAioHandle ioh)

◆ pgaio_io_get_owner()

ProcNumber pgaio_io_get_owner ( PgAioHandle ioh)

Definition at line 352 of file aio.c.

353{
354 return ioh->owner_procno;
355}

References PgAioHandle::owner_procno.

Referenced by buffer_readv_complete(), and smgr_aio_reopen().

◆ pgaio_io_get_state_name()

const char * pgaio_io_get_state_name ( PgAioHandle ioh)

Definition at line 908 of file aio.c.

909{
910 return pgaio_io_state_get_name(ioh->state);
911}
static const char * pgaio_io_state_get_name(PgAioHandleState s)
Definition: aio.c:888

References pgaio_io_state_get_name(), and PgAioHandle::state.

Referenced by pg_get_aios(), and pgaio_io_wait().

◆ pgaio_io_get_wref()

void pgaio_io_get_wref ( PgAioHandle ioh,
PgAioWaitRef iow 
)

◆ pgaio_io_needs_synchronous_execution()

bool pgaio_io_needs_synchronous_execution ( PgAioHandle ioh)

Definition at line 480 of file aio.c.

481{
482 /*
483 * If the caller said to execute the IO synchronously, do so.
484 *
485 * XXX: We could optimize the logic when to execute synchronously by first
486 * checking if there are other IOs in flight and only synchronously
487 * executing if not. Unclear whether that'll be sufficiently common to be
488 * worth worrying about.
489 */
490 if (ioh->flags & PGAIO_HF_SYNCHRONOUS)
491 return true;
492
493 /* Check if the IO method requires synchronous execution of IO */
496
497 return false;
498}
@ PGAIO_HF_SYNCHRONOUS
Definition: aio.h:70
bool(* needs_synchronous_execution)(PgAioHandle *ioh)
Definition: aio_internal.h:288

References PgAioHandle::flags, IoMethodOps::needs_synchronous_execution, PGAIO_HF_SYNCHRONOUS, and pgaio_method_ops.

Referenced by pgaio_io_stage().

◆ pgaio_io_prepare_submit()

void pgaio_io_prepare_submit ( PgAioHandle ioh)

Definition at line 507 of file aio.c.

508{
510
512}
@ PGAIO_HS_SUBMITTED
Definition: aio_internal.h:69
static void dclist_push_tail(dclist_head *head, dlist_node *node)
Definition: ilist.h:709
dlist_node node
Definition: aio_internal.h:140

References dclist_push_tail(), PgAioBackend::in_flight_ios, PgAioHandle::node, PGAIO_HS_SUBMITTED, pgaio_io_update_state(), and pgaio_my_backend.

Referenced by pgaio_io_stage(), and pgaio_worker_submit().

◆ pgaio_io_process_completion()

void pgaio_io_process_completion ( PgAioHandle ioh,
int  result 
)

Definition at line 525 of file aio.c.

526{
528
530
531 ioh->result = result;
532
534
535 INJECTION_POINT("aio-process-completion-before-shared", ioh);
536
538
540
541 /* condition variable broadcast ensures state is visible before wakeup */
543
544 /* contains call to pgaio_io_call_complete_local() */
545 if (ioh->owner_procno == MyProcNumber)
546 pgaio_io_reclaim(ioh);
547}
static void pgaio_io_reclaim(PgAioHandle *ioh)
Definition: aio.c:665
void pgaio_io_call_complete_shared(PgAioHandle *ioh)
Definition: aio_callback.c:225
@ PGAIO_HS_COMPLETED_SHARED
Definition: aio_internal.h:82
@ PGAIO_HS_COMPLETED_IO
Definition: aio_internal.h:72
void ConditionVariableBroadcast(ConditionVariable *cv)
volatile uint32 CritSectionCount
Definition: globals.c:46
#define INJECTION_POINT(name, arg)
ConditionVariable cv
Definition: aio_internal.h:153

References Assert(), ConditionVariableBroadcast(), CritSectionCount, PgAioHandle::cv, INJECTION_POINT, MyProcNumber, PgAioHandle::owner_procno, PGAIO_HS_COMPLETED_IO, PGAIO_HS_COMPLETED_SHARED, PGAIO_HS_SUBMITTED, pgaio_io_call_complete_shared(), pgaio_io_reclaim(), pgaio_io_update_state(), PgAioHandle::result, and PgAioHandle::state.

Referenced by IoWorkerMain(), and pgaio_io_perform_synchronously().

◆ pgaio_io_reclaim()

static void pgaio_io_reclaim ( PgAioHandle ioh)
static

Definition at line 665 of file aio.c.

666{
667 /* This is only ok if it's our IO */
669 Assert(ioh->state != PGAIO_HS_IDLE);
670
671 /* see comment in function header */
673
674 /*
675 * It's a bit ugly, but right now the easiest place to put the execution
676 * of local completion callbacks is this function, as we need to execute
677 * local callbacks just before reclaiming at multiple callsites.
678 */
680 {
681 PgAioResult local_result;
682
683 local_result = pgaio_io_call_complete_local(ioh);
685
686 if (ioh->report_return)
687 {
688 ioh->report_return->result = local_result;
690 }
691 }
692
694 "reclaiming: distilled_result: (status %s, id %u, error_data %d), raw_result: %d",
696 ioh->distilled_result.id,
698 ioh->result);
699
700 /* if the IO has been defined, it's on the in-flight list, remove */
701 if (ioh->state != PGAIO_HS_HANDED_OUT)
703
704 if (ioh->resowner)
705 {
707 ioh->resowner = NULL;
708 }
709
710 Assert(!ioh->resowner);
711
712 /*
713 * Update generation & state first, before resetting the IO's fields,
714 * otherwise a concurrent "viewer" could think the fields are valid, even
715 * though they are being reset. Increment the generation first, so that
716 * we can assert elsewhere that we never wait for an IDLE IO. While it's
717 * a bit weird for the state to go backwards for a generation, it's OK
718 * here, as there cannot be references to the "reborn" IO yet. Can't
719 * update both at once, so something has to give.
720 */
721 ioh->generation++;
723
724 /* ensure the state update is visible before we reset fields */
726
727 ioh->op = PGAIO_OP_INVALID;
729 ioh->flags = 0;
730 ioh->num_callbacks = 0;
731 ioh->handle_data_len = 0;
732 ioh->report_return = NULL;
733 ioh->result = 0;
735
736 /*
737 * We push the IO to the head of the idle IO list, that seems more cache
738 * efficient in cases where only a few IOs are used.
739 */
741
743}
const char * pgaio_result_status_string(PgAioResultStatus rs)
Definition: aio.c:914
@ PGAIO_TID_INVALID
Definition: aio.h:119
@ PGAIO_OP_INVALID
Definition: aio.h:90
PgAioResult pgaio_io_call_complete_local(PgAioHandle *ioh)
Definition: aio_callback.c:282
@ PGAIO_HS_COMPLETED_LOCAL
Definition: aio_internal.h:89
#define pg_write_barrier()
Definition: atomics.h:157
#define DEBUG4
Definition: elog.h:27
static void dclist_delete_from(dclist_head *head, dlist_node *node)
Definition: ilist.h:763
static void dclist_push_head(dclist_head *head, dlist_node *node)
Definition: ilist.h:693
void ResourceOwnerForgetAioHandle(ResourceOwner owner, struct dlist_node *ioh_node)
Definition: resowner.c:1110
PgAioTargetData target_data
Definition: aio_internal.h:181
struct ResourceOwnerData * resowner
Definition: aio_internal.h:142
PgAioResult distilled_result
Definition: aio_internal.h:156
uint8 handle_data_len
Definition: aio_internal.h:122
PgAioOp op
Definition: aio_internal.h:105
uint8 num_callbacks
Definition: aio_internal.h:110
dlist_node resowner_node
Definition: aio_internal.h:143
PgAioTargetID target
Definition: aio_internal.h:102
uint32 error_data
Definition: aio_types.h:111
uint32 id
Definition: aio_types.h:105
PgAioTargetData target_data
Definition: aio_types.h:133

References Assert(), dclist_delete_from(), dclist_push_head(), DEBUG4, PgAioHandle::distilled_result, PgAioResult::error_data, PgAioHandle::flags, PgAioHandle::generation, PgAioHandle::handle_data_len, HOLD_INTERRUPTS, PgAioResult::id, PgAioBackend::idle_ios, PgAioBackend::in_flight_ios, MyProcNumber, PgAioHandle::node, PgAioHandle::num_callbacks, PgAioHandle::op, PgAioHandle::owner_procno, pg_write_barrier, pgaio_debug_io, PGAIO_HS_COMPLETED_LOCAL, PGAIO_HS_COMPLETED_SHARED, PGAIO_HS_HANDED_OUT, PGAIO_HS_IDLE, pgaio_io_call_complete_local(), pgaio_io_update_state(), pgaio_my_backend, PGAIO_OP_INVALID, pgaio_result_status_string(), PGAIO_RS_UNKNOWN, PGAIO_TID_INVALID, PgAioHandle::report_return, ResourceOwnerForgetAioHandle(), PgAioHandle::resowner, PgAioHandle::resowner_node, PgAioHandle::result, PgAioReturn::result, RESUME_INTERRUPTS, PgAioHandle::state, PgAioResult::status, PgAioHandle::target, PgAioHandle::target_data, and PgAioReturn::target_data.

Referenced by pgaio_io_process_completion(), pgaio_io_release(), pgaio_io_release_resowner(), pgaio_io_wait(), pgaio_io_wait_for_free(), and pgaio_wref_check_done().

◆ pgaio_io_release()

void pgaio_io_release ( PgAioHandle ioh)

Definition at line 237 of file aio.c.

238{
240 {
242 Assert(ioh->resowner);
243
245
246 /*
247 * Note that no interrupts are processed between the handed_out_io
248 * check and the call to reclaim - that's important as otherwise an
249 * interrupt could have already reclaimed the handle.
250 */
251 pgaio_io_reclaim(ioh);
252 }
253 else
254 {
255 elog(ERROR, "release in unexpected state");
256 }
257}

References Assert(), elog, ERROR, PgAioBackend::handed_out_io, PGAIO_HS_HANDED_OUT, pgaio_io_reclaim(), pgaio_my_backend, PgAioHandle::resowner, and PgAioHandle::state.

Referenced by AsyncReadBuffers(), handle_get_release(), and handle_release_last().

◆ pgaio_io_release_resowner()

void pgaio_io_release_resowner ( dlist_node ioh_node,
bool  on_error 
)

Definition at line 263 of file aio.c.

264{
265 PgAioHandle *ioh = dlist_container(PgAioHandle, resowner_node, ioh_node);
266
267 Assert(ioh->resowner);
268
269 /*
270 * Otherwise an interrupt, in the middle of releasing the IO, could end up
271 * trying to wait for the IO, leading to state confusion.
272 */
274
276 ioh->resowner = NULL;
277
278 switch (ioh->state)
279 {
280 case PGAIO_HS_IDLE:
281 elog(ERROR, "unexpected");
282 break;
285
287 {
289 if (!on_error)
290 elog(WARNING, "leaked AIO handle");
291 }
292
293 pgaio_io_reclaim(ioh);
294 break;
295 case PGAIO_HS_DEFINED:
296 case PGAIO_HS_STAGED:
297 if (!on_error)
298 elog(WARNING, "AIO handle was not submitted");
300 break;
305 /* this is expected to happen */
306 break;
307 }
308
309 /*
310 * Need to unregister the reporting of the IO's result, the memory it's
311 * referencing likely has gone away.
312 */
313 if (ioh->report_return)
314 ioh->report_return = NULL;
315
317}
#define dlist_container(type, membername, ptr)
Definition: ilist.h:593

References Assert(), dlist_container, elog, ERROR, PgAioBackend::handed_out_io, HOLD_INTERRUPTS, PGAIO_HS_COMPLETED_IO, PGAIO_HS_COMPLETED_LOCAL, PGAIO_HS_COMPLETED_SHARED, PGAIO_HS_DEFINED, PGAIO_HS_HANDED_OUT, PGAIO_HS_IDLE, PGAIO_HS_STAGED, PGAIO_HS_SUBMITTED, pgaio_io_reclaim(), pgaio_my_backend, pgaio_submit_staged(), PgAioHandle::report_return, ResourceOwnerForgetAioHandle(), PgAioHandle::resowner, PgAioHandle::resowner_node, RESUME_INTERRUPTS, PgAioHandle::state, and WARNING.

Referenced by ResourceOwnerReleaseInternal().

◆ pgaio_io_resowner_register()

static void pgaio_io_resowner_register ( PgAioHandle ioh)
static

Definition at line 406 of file aio.c.

407{
408 Assert(!ioh->resowner);
410
413}
ResourceOwner CurrentResourceOwner
Definition: resowner.c:173
void ResourceOwnerRememberAioHandle(ResourceOwner owner, struct dlist_node *ioh_node)
Definition: resowner.c:1104

References Assert(), CurrentResourceOwner, ResourceOwnerRememberAioHandle(), PgAioHandle::resowner, and PgAioHandle::resowner_node.

Referenced by pgaio_io_acquire_nb().

◆ pgaio_io_set_flag()

void pgaio_io_set_flag ( PgAioHandle ioh,
PgAioHandleFlags  flag 
)

Definition at line 327 of file aio.c.

328{
330
331 ioh->flags |= flag;
332}
char * flag(int b)
Definition: test-ctype.c:33

References Assert(), flag(), PgAioHandle::flags, PGAIO_HS_HANDED_OUT, and PgAioHandle::state.

Referenced by AsyncReadBuffers(), mdstartreadv(), and read_rel_block_ll().

◆ pgaio_io_stage()

void pgaio_io_stage ( PgAioHandle ioh,
PgAioOp  op 
)

Definition at line 421 of file aio.c.

422{
423 bool needs_synchronous;
424
428
429 /*
430 * Otherwise an interrupt, in the middle of staging and possibly executing
431 * the IO, could end up trying to wait for the IO, leading to state
432 * confusion.
433 */
435
436 ioh->op = op;
437 ioh->result = 0;
438
440
441 /* allow a new IO to be staged */
443
445
447
448 /*
449 * Synchronous execution has to be executed, well, synchronously, so check
450 * that first.
451 */
452 needs_synchronous = pgaio_io_needs_synchronous_execution(ioh);
453
455 "staged (synchronous: %d, in_batch: %d)",
456 needs_synchronous, pgaio_my_backend->in_batchmode);
457
458 if (!needs_synchronous)
459 {
462
463 /*
464 * Unless code explicitly opted into batching IOs, submit the IO
465 * immediately.
466 */
469 }
470 else
471 {
474 }
475
477}
bool pgaio_io_needs_synchronous_execution(PgAioHandle *ioh)
Definition: aio.c:480
void pgaio_io_prepare_submit(PgAioHandle *ioh)
Definition: aio.c:507
void pgaio_io_call_stage(PgAioHandle *ioh)
Definition: aio_callback.c:199
void pgaio_io_perform_synchronously(PgAioHandle *ioh)
Definition: aio_io.c:116
bool pgaio_io_has_target(PgAioHandle *ioh)
Definition: aio_target.c:40
#define DEBUG3
Definition: elog.h:28
PgAioHandle * staged_ios[PGAIO_SUBMIT_BATCH_SIZE]
Definition: aio_internal.h:209

References Assert(), DEBUG3, PgAioBackend::handed_out_io, HOLD_INTERRUPTS, PgAioBackend::in_batchmode, PgAioBackend::num_staged_ios, PgAioHandle::op, pgaio_debug_io, PGAIO_HS_DEFINED, PGAIO_HS_HANDED_OUT, PGAIO_HS_STAGED, pgaio_io_call_stage(), pgaio_io_has_target(), pgaio_io_needs_synchronous_execution(), pgaio_io_perform_synchronously(), pgaio_io_prepare_submit(), pgaio_io_update_state(), pgaio_my_backend, PGAIO_SUBMIT_BATCH_SIZE, pgaio_submit_staged(), PgAioHandle::result, RESUME_INTERRUPTS, PgAioBackend::staged_ios, and PgAioHandle::state.

Referenced by pgaio_io_start_readv(), and pgaio_io_start_writev().

◆ pgaio_io_state_get_name()

static const char * pgaio_io_state_get_name ( PgAioHandleState  s)
static

Definition at line 888 of file aio.c.

889{
890#define PGAIO_HS_TOSTR_CASE(sym) case PGAIO_HS_##sym: return #sym
891 switch (s)
892 {
894 PGAIO_HS_TOSTR_CASE(HANDED_OUT);
895 PGAIO_HS_TOSTR_CASE(DEFINED);
896 PGAIO_HS_TOSTR_CASE(STAGED);
897 PGAIO_HS_TOSTR_CASE(SUBMITTED);
898 PGAIO_HS_TOSTR_CASE(COMPLETED_IO);
899 PGAIO_HS_TOSTR_CASE(COMPLETED_SHARED);
900 PGAIO_HS_TOSTR_CASE(COMPLETED_LOCAL);
901 }
902#undef PGAIO_HS_TOSTR_CASE
903
904 return NULL; /* silence compiler */
905}
#define PGAIO_HS_TOSTR_CASE(sym)

References PGAIO_HS_TOSTR_CASE.

Referenced by pgaio_io_get_state_name(), and pgaio_io_update_state().

◆ pgaio_io_update_state()

static void pgaio_io_update_state ( PgAioHandle ioh,
PgAioHandleState  new_state 
)
inlinestatic

Definition at line 383 of file aio.c.

384{
385 /*
386 * All callers need to have held interrupts in some form, otherwise
387 * interrupt processing could wait for the IO to complete, while in an
388 * intermediary state.
389 */
391
393 "updating state to %s",
394 pgaio_io_state_get_name(new_state));
395
396 /*
397 * Ensure the changes signified by the new state are visible before the
398 * new state becomes visible.
399 */
401
402 ioh->state = new_state;
403}
#define DEBUG5
Definition: elog.h:26
#define INTERRUPTS_CAN_BE_PROCESSED()
Definition: miscadmin.h:130

References Assert(), DEBUG5, INTERRUPTS_CAN_BE_PROCESSED, pg_write_barrier, pgaio_debug_io, pgaio_io_state_get_name(), and PgAioHandle::state.

Referenced by pgaio_io_acquire_nb(), pgaio_io_prepare_submit(), pgaio_io_process_completion(), pgaio_io_reclaim(), and pgaio_io_stage().

◆ pgaio_io_wait()

static void pgaio_io_wait ( PgAioHandle ioh,
uint64  ref_generation 
)
static

Definition at line 569 of file aio.c.

570{
572 bool am_owner;
573
574 am_owner = ioh->owner_procno == MyProcNumber;
575
576 if (pgaio_io_was_recycled(ioh, ref_generation, &state))
577 return;
578
579 if (am_owner)
580 {
585 {
586 elog(PANIC, "waiting for own IO %d in wrong state: %s",
588 }
589 }
590
591 while (true)
592 {
593 if (pgaio_io_was_recycled(ioh, ref_generation, &state))
594 return;
595
596 switch (state)
597 {
598 case PGAIO_HS_IDLE:
600 elog(ERROR, "IO in wrong state: %d", state);
601 break;
602
604
605 /*
606 * If we need to wait via the IO method, do so now. Don't
607 * check via the IO method if the issuing backend is executing
608 * the IO synchronously.
609 */
611 {
612 pgaio_method_ops->wait_one(ioh, ref_generation);
613 continue;
614 }
615 /* fallthrough */
616
617 /* waiting for owner to submit */
618 case PGAIO_HS_DEFINED:
619 case PGAIO_HS_STAGED:
620 /* waiting for reaper to complete */
621 /* fallthrough */
623 /* shouldn't be able to hit this otherwise */
625 /* ensure we're going to get woken up */
627
628 while (!pgaio_io_was_recycled(ioh, ref_generation, &state))
629 {
632 break;
633 ConditionVariableSleep(&ioh->cv, WAIT_EVENT_AIO_IO_COMPLETION);
634 }
635
637 break;
638
641
642 /*
643 * Note that no interrupts are processed between
644 * pgaio_io_was_recycled() and this check - that's important
645 * as otherwise an interrupt could have already reclaimed the
646 * handle.
647 */
648 if (am_owner)
649 pgaio_io_reclaim(ioh);
650 return;
651 }
652 }
653}
int pgaio_io_get_id(PgAioHandle *ioh)
Definition: aio.c:339
const char * pgaio_io_get_state_name(PgAioHandle *ioh)
Definition: aio.c:908
bool pgaio_io_was_recycled(PgAioHandle *ioh, uint64 ref_generation, PgAioHandleState *state)
Definition: aio.c:556
PgAioHandleState
Definition: aio_internal.h:44
bool ConditionVariableCancelSleep(void)
void ConditionVariablePrepareToSleep(ConditionVariable *cv)
void ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info)
#define PANIC
Definition: elog.h:42
bool IsUnderPostmaster
Definition: globals.c:121
void(* wait_one)(PgAioHandle *ioh, uint64 ref_generation)
Definition: aio_internal.h:323
Definition: regguts.h:323

References Assert(), ConditionVariableCancelSleep(), ConditionVariablePrepareToSleep(), ConditionVariableSleep(), PgAioHandle::cv, elog, ERROR, PgAioHandle::flags, IsUnderPostmaster, MyProcNumber, PgAioHandle::owner_procno, PANIC, PGAIO_HF_SYNCHRONOUS, PGAIO_HS_COMPLETED_IO, PGAIO_HS_COMPLETED_LOCAL, PGAIO_HS_COMPLETED_SHARED, PGAIO_HS_DEFINED, PGAIO_HS_HANDED_OUT, PGAIO_HS_IDLE, PGAIO_HS_STAGED, PGAIO_HS_SUBMITTED, pgaio_io_get_id(), pgaio_io_get_state_name(), pgaio_io_reclaim(), pgaio_io_was_recycled(), pgaio_method_ops, and IoMethodOps::wait_one.

Referenced by pgaio_closing_fd(), pgaio_io_wait_for_free(), pgaio_shutdown(), and pgaio_wref_wait().

◆ pgaio_io_wait_for_free()

static void pgaio_io_wait_for_free ( void  )
static

Definition at line 751 of file aio.c.

752{
753 int reclaimed = 0;
754
755 pgaio_debug(DEBUG2, "waiting for free IO with %d pending, %d in-flight, %d idle IOs",
759
760 /*
761 * First check if any of our IOs actually have completed - when using
762 * worker, that'll often be the case. We could do so as part of the loop
763 * below, but that'd potentially lead us to wait for some IO submitted
764 * before.
765 */
766 for (int i = 0; i < io_max_concurrency; i++)
767 {
769
771 {
772 /*
773 * Note that no interrupts are processed between the state check
774 * and the call to reclaim - that's important as otherwise an
775 * interrupt could have already reclaimed the handle.
776 */
777 pgaio_io_reclaim(ioh);
778 reclaimed++;
779 }
780 }
781
782 if (reclaimed > 0)
783 return;
784
785 /*
786 * If we have any unsubmitted IOs, submit them now. We'll start waiting in
787 * a second, so it's better they're in flight. This also addresses the
788 * edge-case that all IOs are unsubmitted.
789 */
792
793 /* possibly some IOs finished during submission */
795 return;
796
799 errmsg_internal("no free IOs despite no in-flight IOs"),
800 errdetail_internal("%d pending, %d in-flight, %d idle IOs",
804
805 /*
806 * Wait for the oldest in-flight IO to complete.
807 *
808 * XXX: Reusing the general IO wait is suboptimal, we don't need to wait
809 * for that specific IO to complete, we just need *any* IO to complete.
810 */
811 {
814 uint64 generation = ioh->generation;
815
816 switch (ioh->state)
817 {
818 /* should not be in in-flight list */
819 case PGAIO_HS_IDLE:
820 case PGAIO_HS_DEFINED:
822 case PGAIO_HS_STAGED:
824 elog(ERROR, "shouldn't get here with io:%d in state %d",
825 pgaio_io_get_id(ioh), ioh->state);
826 break;
827
831 "waiting for free io with %d in flight",
833
834 /*
835 * In a more general case this would be racy, because the
836 * generation could increase after we read ioh->state above.
837 * But we are only looking at IOs by the current backend and
838 * the IO can only be recycled by this backend. Even this is
839 * only OK because we get the handle's generation before
840 * potentially processing interrupts, e.g. as part of
841 * pgaio_debug_io().
842 */
843 pgaio_io_wait(ioh, generation);
844 break;
845
847
848 /*
849 * It's possible that another backend just finished this IO.
850 *
851 * Note that no interrupts are processed between the state
852 * check and the call to reclaim - that's important as
853 * otherwise an interrupt could have already reclaimed the
854 * handle.
855 */
856 pgaio_io_reclaim(ioh);
857 break;
858 }
859
861 elog(PANIC, "no idle IO after waiting for IO to terminate");
862 return;
863 }
864}
int io_max_concurrency
Definition: aio.c:75
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1158
int errdetail_internal(const char *fmt,...)
Definition: elog.c:1231
#define ereport(elevel,...)
Definition: elog.h:149
#define dclist_head_element(type, membername, lhead)
Definition: ilist.h:955
int i
Definition: isn.c:77
uint32 io_handle_off
Definition: aio_internal.h:188

References dclist_count(), dclist_head_element, dclist_is_empty(), DEBUG2, elog, ereport, errdetail_internal(), errmsg_internal(), ERROR, PgAioHandle::generation, i, PgAioBackend::idle_ios, PgAioBackend::in_flight_ios, PgAioBackend::io_handle_off, PgAioCtl::io_handles, io_max_concurrency, PgAioBackend::num_staged_ios, PANIC, pgaio_ctl, pgaio_debug, pgaio_debug_io, PGAIO_HS_COMPLETED_IO, PGAIO_HS_COMPLETED_LOCAL, PGAIO_HS_COMPLETED_SHARED, PGAIO_HS_DEFINED, PGAIO_HS_HANDED_OUT, PGAIO_HS_IDLE, PGAIO_HS_STAGED, PGAIO_HS_SUBMITTED, pgaio_io_get_id(), pgaio_io_reclaim(), pgaio_io_wait(), pgaio_my_backend, pgaio_submit_staged(), and PgAioHandle::state.

Referenced by pgaio_io_acquire().

◆ pgaio_io_was_recycled()

bool pgaio_io_was_recycled ( PgAioHandle ioh,
uint64  ref_generation,
PgAioHandleState state 
)

Definition at line 556 of file aio.c.

557{
558 *state = ioh->state;
560
561 return ioh->generation != ref_generation;
562}
#define pg_read_barrier()
Definition: atomics.h:156

References PgAioHandle::generation, pg_read_barrier, and PgAioHandle::state.

Referenced by pgaio_io_wait(), and pgaio_wref_check_done().

◆ pgaio_result_status_string()

const char * pgaio_result_status_string ( PgAioResultStatus  rs)

Definition at line 914 of file aio.c.

915{
916 switch (rs)
917 {
918 case PGAIO_RS_UNKNOWN:
919 return "UNKNOWN";
920 case PGAIO_RS_OK:
921 return "OK";
922 case PGAIO_RS_WARNING:
923 return "WARNING";
924 case PGAIO_RS_PARTIAL:
925 return "PARTIAL";
926 case PGAIO_RS_ERROR:
927 return "ERROR";
928 }
929
930 return NULL; /* silence compiler */
931}
@ PGAIO_RS_OK
Definition: aio_types.h:81
@ PGAIO_RS_PARTIAL
Definition: aio_types.h:82
@ PGAIO_RS_ERROR
Definition: aio_types.h:84
@ PGAIO_RS_WARNING
Definition: aio_types.h:83

References PGAIO_RS_ERROR, PGAIO_RS_OK, PGAIO_RS_PARTIAL, PGAIO_RS_UNKNOWN, and PGAIO_RS_WARNING.

Referenced by pg_get_aios(), pgaio_io_call_complete_local(), pgaio_io_call_complete_shared(), and pgaio_io_reclaim().

◆ pgaio_shutdown()

void pgaio_shutdown ( int  code,
Datum  arg 
)

Definition at line 1268 of file aio.c.

1269{
1272
1273 /* first clean up resources as we would at a transaction boundary */
1274 AtEOXact_Aio(code == 0);
1275
1276 /*
1277 * Before exiting, make sure that all IOs are finished. That has two main
1278 * purposes:
1279 *
1280 * - Some kernel-level AIO mechanisms don't deal well with the issuer of
1281 * an AIO exiting before IO completed
1282 *
1283 * - It'd be confusing to see partially finished IOs in stats views etc
1284 */
1286 {
1288 uint64 generation = ioh->generation;
1289
1291 "waiting for IO to complete during shutdown, %d in-flight IOs",
1293
1294 /* see comment in pgaio_io_wait_for_free() about raciness */
1295 pgaio_io_wait(ioh, generation);
1296 }
1297
1298 pgaio_my_backend = NULL;
1299}
void AtEOXact_Aio(bool is_commit)
Definition: aio.c:1173

References Assert(), AtEOXact_Aio(), dclist_count(), dclist_head_element, dclist_is_empty(), DEBUG2, PgAioHandle::generation, PgAioBackend::handed_out_io, PgAioBackend::in_flight_ios, pgaio_debug_io, pgaio_io_wait(), and pgaio_my_backend.

Referenced by pgaio_init_backend().

◆ pgaio_submit_staged()

void pgaio_submit_staged ( void  )

Definition at line 1103 of file aio.c.

1104{
1105 int total_submitted = 0;
1106 int did_submit;
1107
1109 return;
1110
1111
1113
1116
1118
1119 total_submitted += did_submit;
1120
1121 Assert(total_submitted == did_submit);
1122
1124
1126 "aio: submitted %d IOs",
1127 total_submitted);
1128}
#define START_CRIT_SECTION()
Definition: miscadmin.h:150
#define END_CRIT_SECTION()
Definition: miscadmin.h:152
int(* submit)(uint16 num_staged_ios, PgAioHandle **staged_ios)
Definition: aio_internal.h:302

References Assert(), DEBUG4, END_CRIT_SECTION, PgAioBackend::num_staged_ios, pgaio_debug, pgaio_method_ops, pgaio_my_backend, PgAioBackend::staged_ios, START_CRIT_SECTION, and IoMethodOps::submit.

Referenced by AsyncReadBuffers(), pgaio_closing_fd(), pgaio_error_cleanup(), pgaio_exit_batchmode(), pgaio_io_acquire_nb(), pgaio_io_release_resowner(), pgaio_io_stage(), pgaio_io_wait_for_free(), and ReadBuffersCanStartIO().

◆ pgaio_wref_check_done()

bool pgaio_wref_check_done ( PgAioWaitRef iow)

Definition at line 985 of file aio.c.

986{
987 uint64 ref_generation;
989 bool am_owner;
990 PgAioHandle *ioh;
991
992 ioh = pgaio_io_from_wref(iow, &ref_generation);
993
994 if (pgaio_io_was_recycled(ioh, ref_generation, &state))
995 return true;
996
997 if (state == PGAIO_HS_IDLE)
998 return true;
999
1000 am_owner = ioh->owner_procno == MyProcNumber;
1001
1004 {
1005 /*
1006 * Note that no interrupts are processed between
1007 * pgaio_io_was_recycled() and this check - that's important as
1008 * otherwise an interrupt could have already reclaimed the handle.
1009 */
1010 if (am_owner)
1011 pgaio_io_reclaim(ioh);
1012 return true;
1013 }
1014
1015 /*
1016 * XXX: It likely would be worth checking in with the io method, to give
1017 * the IO method a chance to check if there are completion events queued.
1018 */
1019
1020 return false;
1021}
static PgAioHandle * pgaio_io_from_wref(PgAioWaitRef *iow, uint64 *ref_generation)
Definition: aio.c:871

References MyProcNumber, PgAioHandle::owner_procno, PGAIO_HS_COMPLETED_LOCAL, PGAIO_HS_COMPLETED_SHARED, PGAIO_HS_IDLE, pgaio_io_from_wref(), pgaio_io_reclaim(), and pgaio_io_was_recycled().

Referenced by WaitReadBuffers().

◆ pgaio_wref_clear()

void pgaio_wref_clear ( PgAioWaitRef iow)

◆ pgaio_wref_get_id()

int pgaio_wref_get_id ( PgAioWaitRef iow)

Definition at line 960 of file aio.c.

961{
963 return iow->aio_index;
964}
bool pgaio_wref_valid(PgAioWaitRef *iow)
Definition: aio.c:951

References PgAioWaitRef::aio_index, Assert(), and pgaio_wref_valid().

◆ pgaio_wref_valid()

bool pgaio_wref_valid ( PgAioWaitRef iow)

◆ pgaio_wref_wait()

void pgaio_wref_wait ( PgAioWaitRef iow)

Definition at line 971 of file aio.c.

972{
973 uint64 ref_generation;
974 PgAioHandle *ioh;
975
976 ioh = pgaio_io_from_wref(iow, &ref_generation);
977
978 pgaio_io_wait(ioh, ref_generation);
979}

References pgaio_io_from_wref(), and pgaio_io_wait().

Referenced by InvalidateLocalBuffer(), read_rel_block_ll(), StartLocalBufferIO(), WaitIO(), and WaitReadBuffers().

Variable Documentation

◆ io_max_concurrency

int io_max_concurrency = -1

◆ io_method

int io_method = DEFAULT_IO_METHOD

◆ io_method_options

const struct config_enum_entry io_method_options[]
Initial value:
= {
{"sync", IOMETHOD_SYNC, false},
{"worker", IOMETHOD_WORKER, false},
{NULL, 0, false}
}
@ IOMETHOD_WORKER
Definition: aio.h:35
@ IOMETHOD_SYNC
Definition: aio.h:34

Definition at line 64 of file aio.c.

Referenced by assign_io_method().

◆ pgaio_ctl

◆ pgaio_method_ops

◆ pgaio_method_ops_table

const IoMethodOps* const pgaio_method_ops_table[]
static
Initial value:
= {
}
const IoMethodOps pgaio_sync_ops
Definition: method_sync.c:28
const IoMethodOps pgaio_worker_ops
Definition: method_worker.c:84

Definition at line 84 of file aio.c.

Referenced by assign_io_method().

◆ pgaio_my_backend