Skip to content

Commit 1e14929

Browse files
committed
Bug#35499931 NdbFS AsyncRequest request type names incomplete
Include all request types in the name printing function. Change-Id: Ie5a3ec65cc5f92d658d77d7292df549d6705e1d6
1 parent a9da7f1 commit 1e14929

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

storage/ndb/src/kernel/blocks/ndbfs/AsyncIoThread.cpp

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2008, 2022, Oracle and/or its affiliates.
1+
/* Copyright (c) 2008, 2023, Oracle and/or its affiliates.
22
33
This program is free software; you can redistribute it and/or modify
44
it under the terms of the GNU General Public License, version 2.0,
@@ -380,8 +380,18 @@ Request::actionName(Request::Action action)
380380
return "end";
381381
case Request::append:
382382
return "append";
383+
case Request::append_synch:
384+
return "append_synch";
383385
case Request::rmrf:
384386
return "rmrf";
387+
case Request::readPartial:
388+
return "readPartial";
389+
case Request::allocmem:
390+
return "allocmem";
391+
case Request::buildindx:
392+
return "buildindx";
393+
case Request::suspend:
394+
return "suspend";
385395
default:
386396
return "Unknown action";
387397
}

0 commit comments

Comments
 (0)