From 55357bd8bcd917f74c3da2a98bfcdf9cc1767a0e Mon Sep 17 00:00:00 2001 From: mattjala <124107509+mattjala@users.noreply.github.com> Date: Mon, 24 Jun 2024 12:04:48 -0500 Subject: [PATCH] Document that ctx VOL property isn't drawn from the FAPL (#4597) --- src/H5CX.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/H5CX.c b/src/H5CX.c index 2b25288f41c..8454ef7374a 100644 --- a/src/H5CX.c +++ b/src/H5CX.c @@ -349,7 +349,9 @@ typedef struct H5CX_t { bool high_bound_valid; /* Whether high_bound property is valid */ /* Cached VOL settings */ - H5VL_connector_prop_t vol_connector_prop; /* Property for VOL connector ID & info */ + H5VL_connector_prop_t vol_connector_prop; /* Property for VOL connector ID & info + This is treated as an independent field with + no relation to the property H5F_ACS_VOL_CONN_NAME stored on the FAPL */ bool vol_connector_prop_valid; /* Whether property for VOL connector ID & info is valid */ void *vol_wrap_ctx; /* VOL connector's "wrap context" for creating IDs */ bool vol_wrap_ctx_valid; /* Whether VOL connector's "wrap context" for creating IDs is valid */