IPMCTL User Guide
HomePMDKNDCTLBlog
Version 1.x
Version 1.x
  • IPMCTL User Guide
  • Installing IPMCTL
    • Installing IPMCTL packages on Linux
    • Building and Installing IPMCTL from Source on Linux
    • Installing IPMCTL on Microsoft Windows using the MSI Installer
    • Building and Installing IPMCTL on Microsoft Windows from Source
  • Basic Usage
  • Module Discovery
    • Show System Capabilities
    • Show Socket
    • Show Topology
    • Show Memory Resources
    • Show Device
  • Provisioning
    • Concepts
    • Create Memory Allocation Goal
    • Provision App Direct
    • Provision Memory Mode
    • Provision Mixed Mode
    • Show Memory Allocation Goal
    • Dump Memory Allocation Settings
    • Load Memory Allocation Goal
    • Delete Memory Allocation Goal
  • Security
    • Enable Device Security
    • Change Device Passphrase
    • Change Device Security
    • Erase Device Data
  • Instrumentation
    • Show Sensor
    • Change Sensor Settings
    • Show Device Performance
  • Debug
    • Run Diagnostic
    • Show Error Log
    • Dump Debug Log
    • Show ACPI Tables
    • Show Device Platform Configuration Data
    • Delete Device Platform Configuration Data
    • Inject Error
  • Support and Maintenance
    • Show Events
    • Version and Firmware
Powered by GitBook
On this page
  • Targets
  • Examples
  • Return Data

Was this helpful?

  1. Module Discovery

Show Socket

Shows basic information about the physical processors in the host server.

ipmctl show [OPTIONS] -socket [TARGETS]

Targets

  • -socket (SocketIDs): Restricts output to the DIMMs installed on specific sockets by supplying the socket target and one or more comma-separated socket identifiers. The default is to display all sockets.

Examples

Display information about all the processors.

$ ipmctl show -socket

 SocketID | MappedMemoryLimit | TotalMappedMemory
==================================================
 0x0000   | 4608.0 GiB        | 851.0 GiB
 0x0001   | 4608.0 GiB        | 850.5 GiB

List all properties for socket 1.

 ipmctl show -socket 1

 SocketID | MappedMemoryLimit | TotalMappedMemory
==================================================
 0x0001   | 4608.0 GiB        | 850.5 GiB

Retrieve specific properties for each processor.

$ ipmctl show -d MappedMemoryLimit -socket

---SocketID=0x0000---
   MappedMemoryLimit=4608.0 GiB
---SocketID=0x0001---
   MappedMemoryLimit=4608.0 GiB

Return Data

  • The MappedMemoryLimit is the maximum amount of memory that is allowed to be mapped into the system physical address space for this processor based on its SKU.

  • TotalMappedMemory is the total amount of memory that is currently mapped into the system physical address space for this processor.

PreviousShow System CapabilitiesNextShow Topology

Last updated 5 years ago

Was this helpful?