Commit ddc3c087 authored by Michal Wajdeczko's avatar Michal Wajdeczko Committed by Lucas De Marchi
Browse files

drm/xe: Use kstrdup while creating snapshot



There is no need to copy string step by step, use existing helper.

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://lore.kernel.org/r/20240112160652.893-1-michal.wajdeczko@intel.com


Signed-off-by: default avatarMichal Wajdeczko <michal.wajdeczko@intel.com>
parent 1c7531f5
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -749,7 +749,6 @@ struct xe_hw_engine_snapshot *
xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe)
{
	struct xe_hw_engine_snapshot *snapshot;
	int len;

	if (!xe_hw_engine_is_valid(hwe))
		return NULL;
@@ -759,11 +758,7 @@ xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe)
	if (!snapshot)
		return NULL;

	len = strlen(hwe->name) + 1;
	snapshot->name = kzalloc(len, GFP_ATOMIC);
	if (snapshot->name)
		strscpy(snapshot->name, hwe->name, len);

	snapshot->name = kstrdup(hwe->name, GFP_ATOMIC);
	snapshot->class = hwe->class;
	snapshot->logical_instance = hwe->logical_instance;
	snapshot->forcewake.domain = hwe->domain;