[Intel-xe] [PATCH V7 3/6] drm/xe: Add job timeout engine property to sysfs

Niranjana Vishwanathapura niranjana.vishwanathapura at intel.com
Wed Jul 26 06:06:37 UTC 2023


On Tue, Jul 25, 2023 at 05:20:00PM +0530, Tejas Upadhyay wrote:
>The time after which a job is removed from the scheduler.
>Add sysfs entry to provide user defined job timeout to
>scheduler.
>
>The job timeout can be adjusted per-engine class using,
>
>/sys/class/drm/cardX/device/tileN/gtN/engines/ccs/job_timeout_ms
>
>V5:
>  - Rebase to use engine class interface instead of hw engine
>V4:
>  - Rebase to per class engine props interface
>V3:
>  - Rebase
>  - Update commit message to reflect tile update
>V2:
>  - Use sysfs_create_files as part of this patch
>
>Signed-off-by: Tejas Upadhyay <tejas.upadhyay at intel.com>
>---
> drivers/gpu/drm/xe/xe_engine_class_sysfs.c | 42 ++++++++++++++++++++++
> 1 file changed, 42 insertions(+)
>
>diff --git a/drivers/gpu/drm/xe/xe_engine_class_sysfs.c b/drivers/gpu/drm/xe/xe_engine_class_sysfs.c
>index d9c7315b7f8b..9a2b69a1e5d1 100644
>--- a/drivers/gpu/drm/xe/xe_engine_class_sysfs.c
>+++ b/drivers/gpu/drm/xe/xe_engine_class_sysfs.c
>@@ -39,6 +39,37 @@ kobj_xe_engine(struct kobject *parent, char *name)
> 	return keclass;
> }
>
>+static ssize_t job_timeout_store(struct kobject *kobj,
>+				 struct kobj_attribute *attr,
>+				 const char *buf, size_t count)
>+{
>+	struct xe_engine_class_intf *eclass = kobj_to_eclass(kobj);
>+	u32 timeout;
>+	int err;
>+
>+	err = kstrtou32(buf, 0, &timeout);
>+	if (err)
>+		return err;
>+
>+	if (timeout > jiffies_to_usecs(MAX_SCHEDULE_TIMEOUT))
>+		return -EINVAL;
>+

Why add this check here if it is removed by the last patch in the series?
Same applies for next 2 patches.

Niranjana

>+	WRITE_ONCE(eclass->sched_props.job_timeout_ms, timeout);
>+
>+	return count;
>+}
>+
>+static ssize_t job_timeout_show(struct kobject *kobj,
>+				struct kobj_attribute *attr, char *buf)
>+{
>+	struct xe_engine_class_intf *eclass = kobj_to_eclass(kobj);
>+
>+	return sprintf(buf, "%u\n", eclass->sched_props.job_timeout_ms);
>+}
>+
>+static struct kobj_attribute job_timeout_attr =
>+__ATTR(job_timeout_ms, 0644, job_timeout_show, job_timeout_store);
>+
> static ssize_t job_timeout_default(struct kobject *kobj,
> 				   struct kobj_attribute *attr, char *buf)
> {
>@@ -80,6 +111,11 @@ static const struct attribute *defaults[] = {
> 	NULL
> };
>
>+static const struct attribute *files[] = {
>+	&job_timeout_attr.attr,
>+	NULL
>+};
>+
> static int xe_add_engine_class_defaults(struct kobject *parent)
> {
> 	struct kobject *kobj;
>@@ -188,6 +224,12 @@ int xe_engine_class_sysfs_init(struct xe_gt *gt)
> 			return err;
> 		}
>
>+		err = sysfs_create_files(&keclass->base, files);
>+		if (err) {
>+			kobject_put(kobj);
>+			return err;
>+		}
> 	}
>+
> 	return err;
> }
>-- 
>2.25.1
>


More information about the Intel-xe mailing list