scylla-gdb: Don't show io_queue executing and queued resources

These counters are no longer accounted by io-queue code and are always
zero. Even more -- accounting removal happened years ago and we don't
have Scylla versions built with seastar older than that.

Signed-off-by: Pavel Emelyanov <xemul@scylladb.com>

Closes scylladb/scylladb#24835
This commit is contained in:
Pavel Emelyanov
2025-07-04 13:16:18 +03:00
parent 31ac99493f
commit d2d22170b4

View File

@@ -3779,8 +3779,6 @@ class scylla_io_queues(gdb.Command):
Capacity tail: Ticket(weight: 73168384, size: 100561888)
Capacity head: Ticket(weight: 77360511, size: 104242143)
Resources executing: Ticket(weight: 2176, size: 514048)
Resources queued: Ticket(weight: 384, size: 98304)
Handles: (1)
Class 0x6000005d7278:
Ticket(weight: 128, size: 32768)
@@ -3899,8 +3897,6 @@ class scylla_io_queues(gdb.Command):
gdb.write("\tCapacity head: {}\n".format(self.ticket(std_atomic(fg['_capacity_head']).get())))
gdb.write("\n")
gdb.write("\tResources executing: {}\n".format(self.ticket(fq['_resources_executing'])))
gdb.write("\tResources queued: {}\n".format(self.ticket(fq['_resources_queued'])))
handles = std_priority_queue(fq['_handles'])
gdb.write("\tHandles: ({})\n".format(len(handles)))
for pclass_ptr in handles: