Commit 9c61e789 authored by Christian König's avatar Christian König

dma-buf: some dma_fence_chain improvements

The callback and the irq work are never used at the same
time. Putting them into an union saves us 24 bytes and
makes the structure only 120 bytes in size.
Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210611120301.10595-2-christian.koenig@amd.com
parent ade0e676
...@@ -137,6 +137,7 @@ static void dma_fence_chain_cb(struct dma_fence *f, struct dma_fence_cb *cb) ...@@ -137,6 +137,7 @@ static void dma_fence_chain_cb(struct dma_fence *f, struct dma_fence_cb *cb)
struct dma_fence_chain *chain; struct dma_fence_chain *chain;
chain = container_of(cb, typeof(*chain), cb); chain = container_of(cb, typeof(*chain), cb);
init_irq_work(&chain->work, dma_fence_chain_irq_work);
irq_work_queue(&chain->work); irq_work_queue(&chain->work);
dma_fence_put(f); dma_fence_put(f);
} }
...@@ -239,7 +240,6 @@ void dma_fence_chain_init(struct dma_fence_chain *chain, ...@@ -239,7 +240,6 @@ void dma_fence_chain_init(struct dma_fence_chain *chain,
rcu_assign_pointer(chain->prev, prev); rcu_assign_pointer(chain->prev, prev);
chain->fence = fence; chain->fence = fence;
chain->prev_seqno = 0; chain->prev_seqno = 0;
init_irq_work(&chain->work, dma_fence_chain_irq_work);
/* Try to reuse the context of the previous chain node. */ /* Try to reuse the context of the previous chain node. */
if (prev_chain && __dma_fence_is_later(seqno, prev->seqno, prev->ops)) { if (prev_chain && __dma_fence_is_later(seqno, prev->seqno, prev->ops)) {
......
...@@ -16,21 +16,36 @@ ...@@ -16,21 +16,36 @@
/** /**
* struct dma_fence_chain - fence to represent an node of a fence chain * struct dma_fence_chain - fence to represent an node of a fence chain
* @base: fence base class * @base: fence base class
* @lock: spinlock for fence handling
* @prev: previous fence of the chain * @prev: previous fence of the chain
* @prev_seqno: original previous seqno before garbage collection * @prev_seqno: original previous seqno before garbage collection
* @fence: encapsulated fence * @fence: encapsulated fence
* @cb: callback structure for signaling * @lock: spinlock for fence handling
* @work: irq work item for signaling
*/ */
struct dma_fence_chain { struct dma_fence_chain {
struct dma_fence base; struct dma_fence base;
spinlock_t lock;
struct dma_fence __rcu *prev; struct dma_fence __rcu *prev;
u64 prev_seqno; u64 prev_seqno;
struct dma_fence *fence; struct dma_fence *fence;
struct dma_fence_cb cb; union {
struct irq_work work; /**
* @cb: callback for signaling
*
* This is used to add the callback for signaling the
* complection of the fence chain. Never used at the same time
* as the irq work.
*/
struct dma_fence_cb cb;
/**
* @work: irq work item for signaling
*
* Irq work structure to allow us to add the callback without
* running into lock inversion. Never used at the same time as
* the callback.
*/
struct irq_work work;
};
spinlock_t lock;
}; };
extern const struct dma_fence_ops dma_fence_chain_ops; extern const struct dma_fence_ops dma_fence_chain_ops;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment