From 91e0fd0f8eedede326538a42522ad627b6eb86e9 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Wed, 12 Nov 2025 12:33:38 -0400 Subject: [PATCH] IoUringAssmEngn: Disable debugging for compact kernel results --- stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp b/stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp index 1eacbdb..2b34cfc 100644 --- a/stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp +++ b/stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp @@ -524,12 +524,15 @@ public: return; } +#if 0 // Artificially create random dummy slots for testing context->engine.randomDummySlotFiller(context->loop); +#endif // Fill un-assembled slots with dummy datagrams context->engine.fillUnAssembledSlotsWithDummyDgrams(); +#if 0 // Print first 4 bytes of each slot (whether assembled or not) if (context->engine.frameAssemblyDesc) { @@ -537,6 +540,7 @@ public: context->engine.printSlotBytes(i, 4); } } +#endif if (context->loop.nSucceeded.load() >= context->loop.nTotal) {