diff --git a/Kernel/GlobalProcessExposed.cpp b/Kernel/GlobalProcessExposed.cpp index d1f312a164..cab35c8682 100644 --- a/Kernel/GlobalProcessExposed.cpp +++ b/Kernel/GlobalProcessExposed.cpp @@ -582,8 +582,7 @@ private: auto& info = proc.info(); auto obj = TRY(array.add_object()); TRY(obj.add("processor", proc.id())); - // FIXME: Rename this to use the same name everywhere. - TRY(obj.add("cpuid", info.vendor_id_string())); + TRY(obj.add("vendor_id", info.vendor_id_string())); TRY(obj.add("family", info.display_family())); auto features_array = TRY(obj.add_array("features")); diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index 59af7b682f..53ab6eda2f 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -133,7 +133,7 @@ public: { Vector processors_field; processors_field.empend("processor", "Processor", Gfx::TextAlignment::CenterRight); - processors_field.empend("cpuid", "CPUID", Gfx::TextAlignment::CenterLeft); + processors_field.empend("vendor_id", "Vendor ID", Gfx::TextAlignment::CenterLeft); processors_field.empend("brand", "Brand", Gfx::TextAlignment::CenterLeft); processors_field.empend("Features", Gfx::TextAlignment::CenterLeft, [](auto& object) { StringBuilder builder; diff --git a/Userland/Utilities/lscpu.cpp b/Userland/Utilities/lscpu.cpp index a8f69df42b..89af32f9c4 100644 --- a/Userland/Utilities/lscpu.cpp +++ b/Userland/Utilities/lscpu.cpp @@ -14,8 +14,8 @@ static void print_cpu_info(JsonObject const& value) { outln("CPU {}:", value.get("processor").as_u32()); - outln("\tVendor ID: {}", value.get("cpuid").as_string()); - outln("\tModel: {}", value.get("brand").as_string()); + outln("\tVendor ID: {}", value.get("vendor_id").as_string()); + outln("\tBrand: {}", value.get("brand").as_string()); outln("\tFamily: {}", value.get("family").as_u32()); outln("\tModel: {}", value.get("model").as_u32()); outln("\tStepping: {}", value.get("stepping").as_u32());