Lines Matching refs:job
62 struct drm_tegra_job *job = pushbuf->job; in drm_tegra_pushbuf_begin() local
69 size = ALIGN(words * 4, job->page_size); in drm_tegra_pushbuf_begin()
92 command = drm_tegra_job_add_command(pushbuf->job, in drm_tegra_pushbuf_end()
111 command = drm_tegra_job_add_command(pushbuf->job, in drm_tegra_pushbuf_wait()
130 struct drm_tegra_job *job = pushbuf->job; in drm_tegra_pushbuf_relocate() local
133 size = (job->num_buffers + 1) * sizeof(*buffer); in drm_tegra_pushbuf_relocate()
135 buffers = realloc(job->buffers, size); in drm_tegra_pushbuf_relocate()
139 buffer = &buffers[job->num_buffers]; in drm_tegra_pushbuf_relocate()
151 job->buffers = buffers; in drm_tegra_pushbuf_relocate()
152 job->num_buffers++; in drm_tegra_pushbuf_relocate()
162 struct drm_tegra_job *job = pushbuf->job; in drm_tegra_pushbuf_sync() local
164 job->syncpt.increments += count; in drm_tegra_pushbuf_sync()
165 job->syncpt.id = syncpt->id; in drm_tegra_pushbuf_sync()
175 struct drm_tegra_channel *channel = pushbuf->job->channel; in drm_tegra_pushbuf_sync_cond()