Quoting Matt Roper (2018-02-01 19:53:12) > +/** > + * drm_file_get_cgroup - obtain cgroup for drm_file's owning process > + * @file_priv: DRM file > + * > + * Obtains the cgroup from a specific hierarchy that the drm_file's owning > + * process belongs to. The cgroup may be used to set driver-specific > + * policy (priority, vram usage, etc.). > + */ > +static inline struct cgroup * > +drm_file_get_cgroup(struct drm_file *file_priv) > +{ > + return cgroup_for_driver_process(file_priv->pid); Just a word of warning file_priv->pid isn't a true indicator of the attached process's pid. E.g. DRI3 passes the struct drm_file over a UNIX socket, so pid is Xorg but the actual process is the GL client. Not sure if we can detect the transfer over the socket, but one suggestion has been to update file->pid based on who creates a context. -Chris _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx