v28-0002-Testing-attempt-logging-plan-on-ever-CFI-call.patch
application/octet-stream
Filename: v28-0002-Testing-attempt-logging-plan-on-ever-CFI-call.patch
Type: application/octet-stream
Part: 1
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: format-patch
Series: patch v28-0002
Subject: Testing: attempt logging plan on ever CFI call
| File | + | − |
|---|---|---|
| src/include/miscadmin.h | 2 | 0 |
From 70eb33dcd509af1763997f3cb3ce55d29f1ea320 Mon Sep 17 00:00:00 2001
From: jcoleman <jtc331@gmail.com>
Date: Mon, 5 Jun 2023 18:08:49 +0000
Subject: [PATCH v28 2/2] Testing: attempt logging plan on ever CFI call
Co-authored-by: James Coleman <jamecoleman@paypal.com>
---
src/include/miscadmin.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index f805daec16..c6c6ffd204 100644
--- a/src/include/miscadmin.h
+++ b/src/include/miscadmin.h
@@ -118,9 +118,11 @@ extern void ProcessInterrupts(void);
unlikely(InterruptPending))
#endif
+extern void ProcessLogQueryPlanInterrupt(void);
/* Service interrupt, if one is pending and it's safe to service it now */
#define CHECK_FOR_INTERRUPTS() \
do { \
+ ProcessLogQueryPlanInterrupt(); \
if (INTERRUPTS_PENDING_CONDITION()) \
ProcessInterrupts(); \
} while(0)
--
2.20.1