search for: bytes_moved

Displaying 10 results from an estimated 10 matches for "bytes_moved".

2020 Feb 18
5
[PATCH 8/8] drm/ttm: do not keep GPU dependent addresses
...??????? } else { ??????????????? list_for_each_entry(vma, &nvbo->vma_list, head) { ??????????????????????? WARN_ON(ttm_bo_wait(bo, false, false)); Regards, Nirmoy > > Regards, > Christian. > >> >> Best regards >> Thomas >> >>> ????? ctx->bytes_moved += bo->num_pages << PAGE_SHIFT; >>> ????? return 0; >>> ? diff --git a/include/drm/ttm/ttm_bo_api.h >>> b/include/drm/ttm/ttm_bo_api.h >>> index b9bc1b00142e..d6f39ee5bf5d 100644 >>> --- a/include/drm/ttm/ttm_bo_api.h >>> +++ b/include...
2020 Feb 18
2
[PATCH 8/8] drm/ttm: do not keep GPU dependent addresses
...??????????????????????? WARN_ON(ttm_bo_wait(bo, false, false)); >> >> Regards, >> >> Nirmoy >> >> >>> Regards, >>> Christian. >>> >>>> Best regards >>>> Thomas >>>> >>>>> ????? ctx->bytes_moved += bo->num_pages << PAGE_SHIFT; >>>>> ????? return 0; >>>>> ? diff --git a/include/drm/ttm/ttm_bo_api.h >>>>> b/include/drm/ttm/ttm_bo_api.h >>>>> index b9bc1b00142e..d6f39ee5bf5d 100644 >>>>> --- a/include/drm/tt...
2020 Feb 18
2
[PATCH 8/8] drm/ttm: do not keep GPU dependent addresses
..., >>>> >>>> Nirmoy >>>> >>>> >>>>> Regards, >>>>> Christian. >>>>> >>>>>> Best regards >>>>>> Thomas >>>>>> >>>>>>> ?????? ctx->bytes_moved += bo->num_pages << PAGE_SHIFT; >>>>>>> ?????? return 0; >>>>>>> ?? diff --git a/include/drm/ttm/ttm_bo_api.h >>>>>>> b/include/drm/ttm/ttm_bo_api.h >>>>>>> index b9bc1b00142e..d6f39ee5bf5d 100644 >&gt...
2020 Feb 18
0
[PATCH 8/8] drm/ttm: do not keep GPU dependent addresses
...?????? WARN_ON(ttm_bo_wait(bo, false, false)); Yeah, I would go down that route. Christian. > > Regards, > > Nirmoy > > >> >> Regards, >> Christian. >> >>> >>> Best regards >>> Thomas >>> >>>> ????? ctx->bytes_moved += bo->num_pages << PAGE_SHIFT; >>>> ????? return 0; >>>> ? diff --git a/include/drm/ttm/ttm_bo_api.h >>>> b/include/drm/ttm/ttm_bo_api.h >>>> index b9bc1b00142e..d6f39ee5bf5d 100644 >>>> --- a/include/drm/ttm/ttm_bo_api.h >&g...
2020 Feb 18
0
[PATCH 8/8] drm/ttm: do not keep GPU dependent addresses
...>vma_list, head) { > ??????????????????????? WARN_ON(ttm_bo_wait(bo, false, false)); > > Regards, > > Nirmoy > > >> >> Regards, >> Christian. >> >>> >>> Best regards >>> Thomas >>> >>>> ????? ctx->bytes_moved += bo->num_pages << PAGE_SHIFT; >>>> ????? return 0; >>>> ? diff --git a/include/drm/ttm/ttm_bo_api.h >>>> b/include/drm/ttm/ttm_bo_api.h >>>> index b9bc1b00142e..d6f39ee5bf5d 100644 >>>> --- a/include/drm/ttm/ttm_bo_api.h >&gt...
2020 Feb 18
0
[PATCH 8/8] drm/ttm: do not keep GPU dependent addresses
...e, false)); >>> >>> Regards, >>> >>> Nirmoy >>> >>> >>>> Regards, >>>> Christian. >>>> >>>>> Best regards >>>>> Thomas >>>>> >>>>>> ?????? ctx->bytes_moved += bo->num_pages << PAGE_SHIFT; >>>>>> ?????? return 0; >>>>>> ?? diff --git a/include/drm/ttm/ttm_bo_api.h >>>>>> b/include/drm/ttm/ttm_bo_api.h >>>>>> index b9bc1b00142e..d6f39ee5bf5d 100644 >>>>>>...
2020 Feb 18
0
[PATCH 8/8] drm/ttm: do not keep GPU dependent addresses
...> > > > > > > Regards, > > > > > > Christian. > > > > > > > > > > > > > Best regards > > > > > > > Thomas > > > > > > > > > > > > > > > ?????? ctx->bytes_moved += bo->num_pages << PAGE_SHIFT; > > > > > > > > ?????? return 0; > > > > > > > > ?? diff --git a/include/drm/ttm/ttm_bo_api.h > > > > > > > > b/include/drm/ttm/ttm_bo_api.h > > > > > > > > ind...
2014 May 14
17
[RFC PATCH v1 00/16] Convert all ttm drivers to use the new reservation interface
This series depends on the previously posted reservation api patches. 2 of them are not yet in for-next-fences branch of git://git.linaro.org/people/sumit.semwal/linux-3.x.git The missing patches are still in my vmwgfx_wip branch at git://people.freedesktop.org/~mlankhorst/linux All ttm drivers are converted to the fence api, fence_lock is removed and rcu is used in its place. qxl is the first
2014 Jul 31
19
[PATCH 01/19] fence: add debugging lines to fence_is_signaled for the callback
fence_is_signaled callback should support being run in atomic context, but not in irq context. Signed-off-by: Maarten Lankhorst <maarten.lankhorst at canonical.com> --- include/linux/fence.h | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/include/linux/fence.h b/include/linux/fence.h index d174585b874b..c1a4519ba2f5 100644 ---
2014 Jul 09
22
[PATCH 00/17] Convert TTM to the new fence interface.
This series applies on top of the driver-core-next branch of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git Before converting ttm to the new fence interface I had to fix some drivers to require a reservation before poking with fence_obj. After flipping the switch RCU becomes available instead, and the extra reservations can be dropped again. :-) I've done at least basic