summaryrefslogtreecommitdiffstats
path: root/src/H5FDsubfiling
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDsubfiling')
-rw-r--r--src/H5FDsubfiling/H5FDioc_int.c6
-rw-r--r--src/H5FDsubfiling/H5FDioc_threads.c37
-rw-r--r--src/H5FDsubfiling/H5FDsubfile_int.c7
-rw-r--r--src/H5FDsubfiling/H5FDsubfiling.c63
-rw-r--r--src/H5FDsubfiling/H5subfiling_common.c29
5 files changed, 0 insertions, 142 deletions
diff --git a/src/H5FDsubfiling/H5FDioc_int.c b/src/H5FDsubfiling/H5FDioc_int.c
index fdde752..d7a62d1 100644
--- a/src/H5FDsubfiling/H5FDioc_int.c
+++ b/src/H5FDsubfiling/H5FDioc_int.c
@@ -88,9 +88,6 @@ cast_to_void(const void *data)
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
herr_t
@@ -259,9 +256,6 @@ done:
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
herr_t
diff --git a/src/H5FDsubfiling/H5FDioc_threads.c b/src/H5FDsubfiling/H5FDioc_threads.c
index 84831e1..3ac7a07 100644
--- a/src/H5FDsubfiling/H5FDioc_threads.c
+++ b/src/H5FDsubfiling/H5FDioc_threads.c
@@ -102,9 +102,6 @@ static void ioc_io_queue_add_entry(ioc_data_t *ioc_data, sf_work_request_t *wk_r
* Return: SUCCESS (0) or FAIL (-1) if any errors are detected
* for the multi-threaded initialization.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
int
@@ -259,9 +256,6 @@ finalize_ioc_threads(void *_sf_context)
* the thread will return from 'ioc_main' and the thread
* exit status will be checked by the main program.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static HG_THREAD_RETURN_TYPE
@@ -332,9 +326,6 @@ ioc_thread_main(void *arg)
* Return: None
* Errors: None
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static int
@@ -485,9 +476,6 @@ translate_opcode(io_op_t op)
*
* Return: (none) Doesn't fail.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static HG_THREAD_RETURN_TYPE
@@ -581,9 +569,6 @@ handle_work_request(void *arg)
*
* Return: integer result of mutex_lock request.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
void
@@ -600,9 +585,6 @@ H5FD_ioc_begin_thread_exclusive(void)
*
* Return: result of mutex_unlock operation.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
void
@@ -665,9 +647,6 @@ from the thread pool threads...
* function. Successful operations will return 0.
* Errors: An MPI related error value.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static int
@@ -854,9 +833,6 @@ done:
* function. Successful operations will return 0.
* Errors: An MPI related error value.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static int
@@ -1199,9 +1175,6 @@ done:
*
* Return: 0 if successful, 1 or an MPI error code on failure.
*
- * Programmer: John Mainzer
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
@@ -1264,8 +1237,6 @@ done:
* Return: Pointer to new instance of ioc_io_queue_entry_t
* on success, and NULL on failure.
*
- * Programmer: JRM -- 11/6/21
- *
*-------------------------------------------------------------------------
*/
static ioc_io_queue_entry_t *
@@ -1317,8 +1288,6 @@ ioc_io_queue_alloc_entry(void)
*
* Return: void.
*
- * Programmer: JRM -- 11/7/21
- *
*-------------------------------------------------------------------------
*/
static void
@@ -1438,8 +1407,6 @@ ioc_io_queue_add_entry(ioc_data_t *ioc_data, sf_work_request_t *wk_req_ptr)
*
* Return: void.
*
- * Programmer: JRM -- 11/7/21
- *
*-------------------------------------------------------------------------
*/
/* TODO: Keep an eye on statistics and optimize this algorithm if necessary. While it is O(N)
@@ -1604,8 +1571,6 @@ ioc_io_queue_dispatch_eligible_entries(ioc_data_t *ioc_data, hbool_t try_lock)
*
* Return: void.
*
- * Programmer: JRM -- 11/7/21
- *
*-------------------------------------------------------------------------
*/
static void
@@ -1688,8 +1653,6 @@ ioc_io_queue_complete_entry(ioc_data_t *ioc_data, ioc_io_queue_entry_t *entry_pt
*
* Return: void.
*
- * Programmer: JRM -- 11/6/21
- *
*-------------------------------------------------------------------------
*/
static void
diff --git a/src/H5FDsubfiling/H5FDsubfile_int.c b/src/H5FDsubfiling/H5FDsubfile_int.c
index b8b2725..68deb83 100644
--- a/src/H5FDsubfiling/H5FDsubfile_int.c
+++ b/src/H5FDsubfiling/H5FDsubfile_int.c
@@ -11,9 +11,6 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
- * Programmer: Richard Warren
- * Wednesday, July 1, 2020
- *
* Purpose: This is part of a parallel subfiling I/O driver.
*
*/
@@ -63,8 +60,6 @@
*
* Return: SUCCEED/FAIL
*
- * Programmer: JRM -- 12/13/21
- *
*-------------------------------------------------------------------------
*/
herr_t
@@ -276,8 +271,6 @@ done:
*
* Return: SUCCEED/FAIL
*
- * Programmer: JRM -- 1/18/22
- *
*-------------------------------------------------------------------------
*/
herr_t
diff --git a/src/H5FDsubfiling/H5FDsubfiling.c b/src/H5FDsubfiling/H5FDsubfiling.c
index 171eb8c..9f2f4c8 100644
--- a/src/H5FDsubfiling/H5FDsubfiling.c
+++ b/src/H5FDsubfiling/H5FDsubfiling.c
@@ -11,9 +11,6 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
- * Programmer: Richard Warren
- *
- *
* Purpose: An initial implementation of a subfiling VFD which is
* derived from other "stacked" VFDs such as the splitter,
* mirror, and family VFDs.
@@ -85,8 +82,6 @@ static hbool_t H5FD_mpi_self_initialized = FALSE;
* and should be kept or not as appropriate for the sub-filing VFD.
*
*
- * Programmer: Richard Warren
- *
***************************************************************************/
typedef struct H5FD_subfiling_t {
@@ -283,8 +278,6 @@ H5FD__subfiling_mpi_finalize(void)
* Return: Success: The driver ID for the subfiling driver
* Failure: H5I_INVALID_HID
*
- * Programmer: Richard Warren
- *
*-------------------------------------------------------------------------
*/
hid_t
@@ -443,9 +436,6 @@ done:
*
* Return: SUCCEED/FAIL
*
- * Programmer: John Mainzer
- * 9/10/17
- *
*-------------------------------------------------------------------------
*/
herr_t
@@ -530,9 +520,6 @@ done:
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: John Mainzer
- * 9/10/17
- *
*-------------------------------------------------------------------------
*/
herr_t
@@ -957,9 +944,6 @@ done:
*
* Failure: NULL
*
- * Programmer: John Mainzer
- * 9/8/17
- *
*-------------------------------------------------------------------------
*/
static void *
@@ -1038,9 +1022,6 @@ done:
*
* Failure: NULL
*
- * Programmer: John Mainzer
- * 9/8/17
- *
*-------------------------------------------------------------------------
*/
static void *
@@ -1080,9 +1061,6 @@ done:
*
* Return: SUCCEED (cannot fail)
*
- * Programmer: John Mainzer
- * 9/8/17
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1112,8 +1090,6 @@ H5FD__subfiling_fapl_free(void *_fa)
* caller, which is always H5FD_open().
* Failure: NULL
*
- * Programmer: Richard Warren
- *
*-------------------------------------------------------------------------
*/
static H5FD_t *
@@ -1366,8 +1342,6 @@ done:
* Return: Success: SUCCEED
* Failure: FAIL, file not closed.
*
- * Programmer: Richard Warren
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1393,8 +1367,6 @@ done:
* Failure: never fails (arguments were checked by the
* caller).
*
- * Programmer: Richard Warren
- *
*-------------------------------------------------------------------------
*/
static int
@@ -1424,9 +1396,6 @@ H5FD__subfiling_cmp(const H5FD_t *_f1, const H5FD_t *_f2)
*
* Return: SUCCEED (Can't fail)
*
- * Programmer: John Mainzer
- * 11/15/21
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1454,8 +1423,6 @@ H5FD__subfiling_query(const H5FD_t H5_ATTR_UNUSED *_file, unsigned long *flags /
*
* Return: The end-of-address marker.
*
- * Programmer: Richard Warren
- *
*-------------------------------------------------------------------------
*/
static haddr_t
@@ -1478,8 +1445,6 @@ H5FD__subfiling_get_eoa(const H5FD_t *_file, H5FD_mem_t H5_ATTR_UNUSED type)
*
* Return: SUCCEED (Can't fail)
*
- * Programmer: Richard Warren
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1564,8 +1529,6 @@ done:
* buffer BUF.
* Failure: FAIL, Contents of buffer BUF are undefined.
*
- * Programmer: Richard Warren
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1800,8 +1763,6 @@ done:
*
* Return: SUCCEED/FAIL
*
- * Programmer: Richard Warren
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -2069,8 +2030,6 @@ done:
* Failure: FAIL
* The contents of supplied buffers are undefined.
*
- * Programmer: RAW -- ??/??/21
- *
* Notes: Thus function doesn't actually implement vector read.
* Instead, it comverts the vector read call into a series
* of scalar read calls. Fix this when time permits.
@@ -2231,8 +2190,6 @@ done:
* input arguments are not valid, or the actual
* subfiling writes have failed for some reason.
*
- * Programmer: RAW -- ??/??/21
- *
* Notes: Thus function doesn't actually implement vector write.
* Instead, it comverts the vector write call into a series
* of scalar read calls. Fix this when time permits.
@@ -2380,8 +2337,6 @@ done:
*
* Return: SUCCEED/FAIL
*
- * Programmer: Richard Warren
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -2458,8 +2413,6 @@ done:
*
* Return: SUCCEED/FAIL
*
- * Programmer: Vailin Choi; May 2013
- *
*-------------------------------------------------------------------------
*/
#if 0
@@ -2492,8 +2445,6 @@ done:
*
* Return: SUCCEED/FAIL
*
- * Programmer: Vailin Choi; May 2013
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -2569,8 +2520,6 @@ done:
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: JRM -- 8/3/21
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -3062,9 +3011,6 @@ done:
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -3161,9 +3107,6 @@ done:
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -3292,9 +3235,6 @@ done:
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -3403,9 +3343,6 @@ done:
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static herr_t
diff --git a/src/H5FDsubfiling/H5subfiling_common.c b/src/H5FDsubfiling/H5subfiling_common.c
index 17cde45..8ddb3a3 100644
--- a/src/H5FDsubfiling/H5subfiling_common.c
+++ b/src/H5FDsubfiling/H5subfiling_common.c
@@ -621,9 +621,6 @@ done:
* Return: Success (0) or Faiure (non-zero)
* Errors: If MPI operations fail for some reason.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
herr_t
@@ -723,7 +720,6 @@ done:
/*
-------------------------------------------------------------------------
- Programmer: Richard Warren
Purpose: Called as part of a file open operation, we initialize a
subfiling context which includes the application topology
along with other relevant info such as the MPI objects
@@ -1165,7 +1161,6 @@ done:
/*
-------------------------------------------------------------------------
- Programmer: Richard Warren
Purpose: Return a character string which represents either the
default selection method: SELECT_IOC_ONE_PER_NODE; or
if the user has selected a method via the environment
@@ -1733,9 +1728,6 @@ done:
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1921,9 +1913,6 @@ done:
* Return: Success (0) or Faiure (non-zero)
* Errors: If MPI operations fail for some reason.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1983,9 +1972,6 @@ done:
* Errors: FAILs ONLY if storage for the mapping entry cannot
* be allocated.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -2057,9 +2043,6 @@ done:
* Return: None
* Errors: Cannot fail.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static void
@@ -2108,9 +2091,6 @@ clear_fid_map_entry(uint64_t file_id, int64_t sf_context_id)
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -2668,9 +2648,6 @@ done:
* Return: Success (0) or Faiure (non-zero)
* Errors: If MPI operations fail for some reason.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
/*-------------------------------------------------------------------------
@@ -2692,9 +2669,6 @@ done:
* Return: Success (0) or Faiure (non-zero)
* Errors: If MPI operations fail for some reason.
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
herr_t
@@ -2993,9 +2967,6 @@ done:
* Negative on failure or if the subfiling context doesn't
* exist
*
- * Programmer: Richard Warren
- * 7/17/2020
- *
*-------------------------------------------------------------------------
*/
int64_t