All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdkfd: Align unique_id format to match amdgpu
@ 2023-09-14 17:09 Kent Russell
  2023-09-14 17:24 ` Felix Kuehling
  0 siblings, 1 reply; 3+ messages in thread
From: Kent Russell @ 2023-09-14 17:09 UTC (permalink / raw)
  To: amd-gfx; +Cc: Kent Russell

unique_id is printed as %016llx in amdgpu, but %llu in KFD. Call the
sysfs_show_gen_prop function directly and use the %016llx format, to
align with amdgpu. Don't need to add a new macro since this is a one-off.

Signed-off-by: Kent Russell <kent.russell@amd.com>
---
 drivers/gpu/drm/amd/amdkfd/kfd_topology.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_topology.c b/drivers/gpu/drm/amd/amdkfd/kfd_topology.c
index c8c75ff7cea8..4dac29cdab20 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_topology.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_topology.c
@@ -538,7 +538,7 @@ static ssize_t node_show(struct kobject *kobj, struct attribute *attr,
 				      dev->node_props.debug_prop);
 		sysfs_show_32bit_prop(buffer, offs, "sdma_fw_version",
 				      dev->gpu->kfd->sdma_fw_version);
-		sysfs_show_64bit_prop(buffer, offs, "unique_id",
+		sysfs_show_gen_prop(buffer, offs, "%s %016llx\n", "unique_id",
 				      dev->gpu->adev->unique_id);
 		sysfs_show_32bit_prop(buffer, offs, "num_xcc",
 				      NUM_XCC(dev->gpu->xcc_mask));
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-09-14 17:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-14 17:09 [PATCH] drm/amdkfd: Align unique_id format to match amdgpu Kent Russell
2023-09-14 17:24 ` Felix Kuehling
2023-09-14 17:36   ` Russell, Kent

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.