cregit-Linux how code gets into the kernel

Release 4.17 drivers/gpu/drm/scheduler/sched_fence.c

/*
 * Copyright 2015 Advanced Micro Devices, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 */

#include <linux/kthread.h>
#include <linux/wait.h>
#include <linux/sched.h>
#include <drm/drmP.h>
#include <drm/gpu_scheduler.h>


static struct kmem_cache *sched_fence_slab;


static int __init drm_sched_fence_slab_init(void) { sched_fence_slab = kmem_cache_create( "drm_sched_fence", sizeof(struct drm_sched_fence), 0, SLAB_HWCACHE_ALIGN, NULL); if (!sched_fence_slab) return -ENOMEM; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Christian König3587.50%133.33%
Lucas Stach512.50%266.67%
Total40100.00%3100.00%


static void __exit drm_sched_fence_slab_fini(void) { rcu_barrier(); kmem_cache_destroy(sched_fence_slab); }

Contributors

PersonTokensPropCommitsCommitProp
Christian König1482.35%133.33%
Lucas Stach317.65%266.67%
Total17100.00%3100.00%


void drm_sched_fence_scheduled(struct drm_sched_fence *fence) { int ret = dma_fence_signal(&fence->scheduled); if (!ret) DMA_FENCE_TRACE(&fence->scheduled, "signaled from irq context\n"); else DMA_FENCE_TRACE(&fence->scheduled, "was already signaled\n"); }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou3982.98%125.00%
Christian König36.38%125.00%
Chris Wilson36.38%125.00%
Lucas Stach24.26%125.00%
Total47100.00%4100.00%


void drm_sched_fence_finished(struct drm_sched_fence *fence) { int ret = dma_fence_signal(&fence->finished); if (!ret) DMA_FENCE_TRACE(&fence->finished, "signaled from irq context\n"); else DMA_FENCE_TRACE(&fence->finished, "was already signaled\n"); }

Contributors

PersonTokensPropCommitsCommitProp
Christian König4289.36%250.00%
Chris Wilson36.38%125.00%
Lucas Stach24.26%125.00%
Total47100.00%4100.00%


static const char *drm_sched_fence_get_driver_name(struct dma_fence *fence) { return "drm_sched"; }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou1381.25%133.33%
Lucas Stach212.50%133.33%
Chris Wilson16.25%133.33%
Total16100.00%3100.00%


static const char *drm_sched_fence_get_timeline_name(struct dma_fence *f) { struct drm_sched_fence *fence = to_drm_sched_fence(f); return (const char *)fence->sched->name; }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou3085.71%125.00%
Lucas Stach38.57%125.00%
Christian König12.86%125.00%
Chris Wilson12.86%125.00%
Total35100.00%4100.00%


static bool drm_sched_fence_enable_signaling(struct dma_fence *f) { return true; }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou1178.57%125.00%
Lucas Stach17.14%125.00%
Christian König17.14%125.00%
Chris Wilson17.14%125.00%
Total14100.00%4100.00%

/** * amd_sched_fence_free - free up the fence memory * * @rcu: RCU callback head * * Free up the fence memory after the RCU grace period. */
static void drm_sched_fence_free(struct rcu_head *rcu) { struct dma_fence *f = container_of(rcu, struct dma_fence, rcu); struct drm_sched_fence *fence = to_drm_sched_fence(f); dma_fence_put(fence->parent); kmem_cache_free(sched_fence_slab, fence); }

Contributors

PersonTokensPropCommitsCommitProp
Chunming Zhou2958.00%240.00%
Christian König1530.00%120.00%
Lucas Stach36.00%120.00%
Chris Wilson36.00%120.00%
Total50100.00%5100.00%

/** * amd_sched_fence_release_scheduled - callback that fence can be freed * * @fence: fence * * This function is called when the reference count becomes zero. * It just RCU schedules freeing up the fence. */
static void drm_sched_fence_release_scheduled(struct dma_fence *f) { struct drm_sched_fence *fence = to_drm_sched_fence(f); call_rcu(&fence->finished.rcu, drm_sched_fence_free); }

Contributors

PersonTokensPropCommitsCommitProp
Christian König2884.85%250.00%
Lucas Stach412.12%125.00%
Chris Wilson13.03%125.00%
Total33100.00%4100.00%

/** * amd_sched_fence_release_finished - drop extra reference * * @f: fence * * Drop the extra reference from the scheduled fence to the base fence. */
static void drm_sched_fence_release_finished(struct dma_fence *f) { struct drm_sched_fence *fence = to_drm_sched_fence(f); dma_fence_put(&fence->scheduled); }

Contributors

PersonTokensPropCommitsCommitProp
Christian König2482.76%133.33%
Lucas Stach310.34%133.33%
Chris Wilson26.90%133.33%
Total29100.00%3100.00%

const struct dma_fence_ops drm_sched_fence_ops_scheduled = { .get_driver_name = drm_sched_fence_get_driver_name, .get_timeline_name = drm_sched_fence_get_timeline_name, .enable_signaling = drm_sched_fence_enable_signaling, .signaled = NULL, .wait = dma_fence_default_wait, .release = drm_sched_fence_release_scheduled, }; const struct dma_fence_ops drm_sched_fence_ops_finished = { .get_driver_name = drm_sched_fence_get_driver_name, .get_timeline_name = drm_sched_fence_get_timeline_name, .enable_signaling = drm_sched_fence_enable_signaling, .signaled = NULL, .wait = dma_fence_default_wait, .release = drm_sched_fence_release_finished, };
struct drm_sched_fence *to_drm_sched_fence(struct dma_fence *f) { if (f->ops == &drm_sched_fence_ops_scheduled) return container_of(f, struct drm_sched_fence, scheduled); if (f->ops == &drm_sched_fence_ops_finished) return container_of(f, struct drm_sched_fence, finished); return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Lucas Stach55100.00%1100.00%
Total55100.00%1100.00%

EXPORT_SYMBOL(to_drm_sched_fence);
struct drm_sched_fence *drm_sched_fence_create(struct drm_sched_entity *entity, void *owner) { struct drm_sched_fence *fence = NULL; unsigned seq; fence = kmem_cache_zalloc(sched_fence_slab, GFP_KERNEL); if (fence == NULL) return NULL; fence->owner = owner; fence->sched = entity->sched; spin_lock_init(&fence->lock); seq = atomic_inc_return(&entity->fence_seq); dma_fence_init(&fence->scheduled, &drm_sched_fence_ops_scheduled, &fence->lock, entity->fence_context, seq); dma_fence_init(&fence->finished, &drm_sched_fence_ops_finished, &fence->lock, entity->fence_context + 1, seq); return fence; }

Contributors

PersonTokensPropCommitsCommitProp
Lucas Stach125100.00%1100.00%
Total125100.00%1100.00%

module_init(drm_sched_fence_slab_init); module_exit(drm_sched_fence_slab_fini); MODULE_DESCRIPTION("DRM GPU scheduler"); MODULE_LICENSE("GPL and additional rights");

Overall Contributors

PersonTokensPropCommitsCommitProp
Lucas Stach24538.77%215.38%
Christian König20131.80%646.15%
Chunming Zhou16526.11%323.08%
Chris Wilson193.01%17.69%
Grazvydas Ignotas20.32%17.69%
Total632100.00%13100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.