Lines Matching defs:gpusvm__
353 * @gpusvm__: Pointer to the GPU SVM structure.
357 #define drm_gpusvm_notifier_lock(gpusvm__) \
358 down_read(&(gpusvm__)->notifier_lock)
362 * @gpusvm__: Pointer to the GPU SVM structure.
366 #define drm_gpusvm_notifier_unlock(gpusvm__) \
367 up_read(&(gpusvm__)->notifier_lock)
514 * @gpusvm__: Pointer to the GPU SVM notifier
520 #define drm_gpusvm_for_each_notifier(notifier__, gpusvm__, start__, end__) \
521 for ((notifier__) = drm_gpusvm_notifier_find((gpusvm__), (start__), (end__)); \
529 * @gpusvm__: Pointer to the GPU SVM notifier
536 #define drm_gpusvm_for_each_notifier_safe(notifier__, next__, gpusvm__, start__, end__) \
537 for ((notifier__) = drm_gpusvm_notifier_find((gpusvm__), (start__), (end__)), \