blob: 902c2428d41586ba6d346feeea09d1cd5aeb877f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*-------------------------------------------------------------------------
*
* method_sync.c
* AIO - perform "AIO" by executing it synchronously
*
* This method is mainly to check if AIO use causes regressions. Other IO
* methods might also fall back to the synchronous method for functionality
* they cannot provide.
*
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* src/backend/storage/aio/method_sync.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/aio.h"
#include "storage/aio_internal.h"
static bool pgaio_sync_needs_synchronous_execution(PgAioHandle *ioh);
static int pgaio_sync_submit(uint16 num_staged_ios, PgAioHandle **staged_ios);
const IoMethodOps pgaio_sync_ops = {
.needs_synchronous_execution = pgaio_sync_needs_synchronous_execution,
.submit = pgaio_sync_submit,
};
static bool
pgaio_sync_needs_synchronous_execution(PgAioHandle *ioh)
{
return true;
}
static int
pgaio_sync_submit(uint16 num_staged_ios, PgAioHandle **staged_ios)
{
elog(ERROR, "IO should have been executed synchronously");
return 0;
}
|