[SWDEV-532125] Remove_Unused_Definitions (#385)

Signed-off-by: Narlo, Joseph <Joseph.Narlo@amd.com>
Cette révision appartient à :
Narlo, Joseph
2025-05-28 18:49:08 -05:00
révisé par GitHub
Parent 7c29b4eab8
révision b6d638d942
10 fichiers modifiés avec 28 ajouts et 45 suppressions
+3 -3
Voir le fichier
@@ -193,7 +193,7 @@ pub fn amdsmi_get_socket_handles() -> AmdsmiResult<Vec<AmdsmiSocketHandle>> {
///
/// This function will return the error in [`AmdsmiStatusT`] if the underlying `amdsmi_wrapper::amdsmi_get_socket_info` call fails.
pub fn amdsmi_get_socket_info(socket_handle: AmdsmiSocketHandle) -> AmdsmiResult<String> {
let (mut info, len) = define_cstr!(amdsmi_wrapper::AMDSMI_256_LENGTH);
let (mut info, len) = define_cstr!(amdsmi_wrapper::AMDSMI_MAX_STRING_LENGTH);
call_unsafe!(amdsmi_wrapper::amdsmi_get_socket_info(
socket_handle,
len,
@@ -4776,7 +4776,7 @@ pub fn amdsmi_topo_get_p2p_status(
pub fn amdsmi_get_gpu_compute_partition(
processor_handle: AmdsmiProcessorHandle,
) -> AmdsmiResult<String> {
let (mut compute_partition, len) = define_cstr!(amdsmi_wrapper::AMDSMI_256_LENGTH);
let (mut compute_partition, len) = define_cstr!(amdsmi_wrapper::AMDSMI_MAX_STRING_LENGTH);
call_unsafe!(amdsmi_wrapper::amdsmi_get_gpu_compute_partition(
processor_handle,
compute_partition.as_mut_ptr(),
@@ -4884,7 +4884,7 @@ pub fn amdsmi_set_gpu_compute_partition(
pub fn amdsmi_get_gpu_memory_partition(
processor_handle: AmdsmiProcessorHandle,
) -> AmdsmiResult<String> {
let (mut memory_partition, len) = define_cstr!(amdsmi_wrapper::AMDSMI_256_LENGTH);
let (mut memory_partition, len) = define_cstr!(amdsmi_wrapper::AMDSMI_MAX_STRING_LENGTH);
call_unsafe!(amdsmi_wrapper::amdsmi_get_gpu_memory_partition(
processor_handle,
memory_partition.as_mut_ptr(),
-5
Voir le fichier
@@ -102,11 +102,8 @@ where
}
}
pub const AMDSMI_MAX_MM_IP_COUNT: u32 = 8;
pub const AMDSMI_MAX_DATE_LENGTH: u32 = 32;
pub const AMDSMI_MAX_STRING_LENGTH: u32 = 256;
pub const AMDSMI_256_LENGTH: u32 = 256;
pub const AMDSMI_MAX_DEVICES: u32 = 32;
pub const AMDSMI_MAX_NAME: u32 = 32;
pub const AMDSMI_MAX_DRIVER_VERSION_LENGTH: u32 = 80;
pub const AMDSMI_MAX_CONTAINER_TYPE: u32 = 2;
pub const AMDSMI_MAX_CACHE_TYPES: u32 = 10;
@@ -127,7 +124,6 @@ pub const AMDSMI_MAX_NUM_XCC: u32 = 8;
pub const AMDSMI_MAX_NUM_XCP: u32 = 8;
pub const AMDSMI_TIME_FORMAT: &[u8; 20] = b"%02d:%02d:%02d.%03d\0";
pub const AMDSMI_DATE_FORMAT: &[u8; 35] = b"%04d-%02d-%02d:%02d:%02d:%02d.%03d\0";
pub const AMDSMI_LIB_VERSION_YEAR: u32 = 25;
pub const AMDSMI_LIB_VERSION_MAJOR: u32 = 25;
pub const AMDSMI_LIB_VERSION_MINOR: u32 = 4;
pub const AMDSMI_LIB_VERSION_RELEASE: u32 = 2;
@@ -136,7 +132,6 @@ pub const AMDSMI_MAX_FAN_SPEED: u32 = 255;
pub const AMDSMI_NUM_VOLTAGE_CURVE_POINTS: u32 = 3;
pub const AMDSMI_MAX_UTILIZATION_VALUES: u32 = 4;
pub const AMDSMI_MAX_NUM_PM_POLICIES: u32 = 32;
pub const AMDSMI_DEFAULT_VARIANT: i32 = -1;
#[repr(u32)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum AmdsmiInitFlagsT {