Kernel: Rename GenericInterruptHandler "invoking count" to "call count"

This commit is contained in:
Andreas Kling 2022-11-18 21:39:49 +01:00
commit 9b3db63e14
Notes: sideshowbarker 2024-07-17 04:20:56 +09:00
7 changed files with 13 additions and 11 deletions

View file

@ -36,7 +36,7 @@ ErrorOr<void> SysFSInterrupts::try_generate(KBufferBuilder& builder)
TRY(obj.add("controller"sv, handler.controller()));
TRY(obj.add("cpu_handler"sv, 0)); // FIXME: Determine the responsible CPU for each interrupt handler.
TRY(obj.add("device_sharing"sv, (unsigned)handler.sharing_devices_count()));
TRY(obj.add("call_count"sv, (unsigned)handler.get_invoking_count()));
TRY(obj.add("call_count"sv, handler.call_count()));
TRY(obj.finish());
return {};
})();