@@ -752,7 +752,7 @@ pgaio_io_wait_for_free(void)
752
752
{
753
753
int reclaimed = 0 ;
754
754
755
- pgaio_debug (DEBUG2 , "waiting for free IO with %d pending, %d in-flight, %d idle IOs" ,
755
+ pgaio_debug (DEBUG2 , "waiting for free IO with %d pending, %u in-flight, %u idle IOs" ,
756
756
pgaio_my_backend -> num_staged_ios ,
757
757
dclist_count (& pgaio_my_backend -> in_flight_ios ),
758
758
dclist_count (& pgaio_my_backend -> idle_ios ));
@@ -797,7 +797,7 @@ pgaio_io_wait_for_free(void)
797
797
if (dclist_count (& pgaio_my_backend -> in_flight_ios ) == 0 )
798
798
ereport (ERROR ,
799
799
errmsg_internal ("no free IOs despite no in-flight IOs" ),
800
- errdetail_internal ("%d pending, %d in-flight, %d idle IOs" ,
800
+ errdetail_internal ("%d pending, %u in-flight, %u idle IOs" ,
801
801
pgaio_my_backend -> num_staged_ios ,
802
802
dclist_count (& pgaio_my_backend -> in_flight_ios ),
803
803
dclist_count (& pgaio_my_backend -> idle_ios )));
@@ -828,7 +828,7 @@ pgaio_io_wait_for_free(void)
828
828
case PGAIO_HS_COMPLETED_IO :
829
829
case PGAIO_HS_SUBMITTED :
830
830
pgaio_debug_io (DEBUG2 , ioh ,
831
- "waiting for free io with %d in flight" ,
831
+ "waiting for free io with %u in flight" ,
832
832
dclist_count (& pgaio_my_backend -> in_flight_ios ));
833
833
834
834
/*
@@ -1252,7 +1252,7 @@ pgaio_closing_fd(int fd)
1252
1252
break ;
1253
1253
1254
1254
pgaio_debug_io (DEBUG2 , ioh ,
1255
- "waiting for IO before FD %d gets closed, %d in-flight IOs" ,
1255
+ "waiting for IO before FD %d gets closed, %u in-flight IOs" ,
1256
1256
fd , dclist_count (& pgaio_my_backend -> in_flight_ios ));
1257
1257
1258
1258
/* see comment in pgaio_io_wait_for_free() about raciness */
@@ -1288,7 +1288,7 @@ pgaio_shutdown(int code, Datum arg)
1288
1288
uint64 generation = ioh -> generation ;
1289
1289
1290
1290
pgaio_debug_io (DEBUG2 , ioh ,
1291
- "waiting for IO to complete during shutdown, %d in-flight IOs" ,
1291
+ "waiting for IO to complete during shutdown, %u in-flight IOs" ,
1292
1292
dclist_count (& pgaio_my_backend -> in_flight_ios ));
1293
1293
1294
1294
/* see comment in pgaio_io_wait_for_free() about raciness */
0 commit comments