iommu/iova: Add locking to Flush-Queues
authorJoerg Roedel <jroedel@suse.de>
Thu, 10 Aug 2017 14:31:17 +0000 (16:31 +0200)
committerJoerg Roedel <jroedel@suse.de>
Tue, 15 Aug 2017 16:23:52 +0000 (18:23 +0200)
The lock is taken from the same CPU most of the time. But
having it allows to flush the queue also from another CPU if
necessary.

This will be used by a timer to regularily flush any pending
IOVAs from the Flush-Queues.

Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/iova.c
include/linux/iova.h

index 47b144e417ad6d1d5192e7349d5eaa32e4df2728..749d39533e0b6b0792e3ccd7f0ea4af6fd651f20 100644 (file)
@@ -91,6 +91,8 @@ int init_iova_flush_queue(struct iova_domain *iovad,
                fq = per_cpu_ptr(iovad->fq, cpu);
                fq->head = 0;
                fq->tail = 0;
+
+               spin_lock_init(&fq->lock);
        }
 
        return 0;
@@ -471,6 +473,7 @@ EXPORT_SYMBOL_GPL(free_iova_fast);
 
 static inline bool fq_full(struct iova_fq *fq)
 {
+       assert_spin_locked(&fq->lock);
        return (((fq->tail + 1) % IOVA_FQ_SIZE) == fq->head);
 }
 
@@ -478,6 +481,8 @@ static inline unsigned fq_ring_add(struct iova_fq *fq)
 {
        unsigned idx = fq->tail;
 
+       assert_spin_locked(&fq->lock);
+
        fq->tail = (idx + 1) % IOVA_FQ_SIZE;
 
        return idx;
@@ -488,6 +493,8 @@ static void fq_ring_free(struct iova_domain *iovad, struct iova_fq *fq)
        u64 counter = atomic64_read(&iovad->fq_flush_finish_cnt);
        unsigned idx;
 
+       assert_spin_locked(&fq->lock);
+
        fq_ring_for_each(idx, fq) {
 
                if (fq->entries[idx].counter >= counter)
@@ -537,8 +544,11 @@ void queue_iova(struct iova_domain *iovad,
                unsigned long data)
 {
        struct iova_fq *fq = get_cpu_ptr(iovad->fq);
+       unsigned long flags;
        unsigned idx;
 
+       spin_lock_irqsave(&fq->lock, flags);
+
        /*
         * First remove all entries from the flush queue that have already been
         * flushed out on another CPU. This makes the fq_full() check below less
@@ -558,6 +568,7 @@ void queue_iova(struct iova_domain *iovad,
        fq->entries[idx].data     = data;
        fq->entries[idx].counter  = atomic64_read(&iovad->fq_flush_start_cnt);
 
+       spin_unlock_irqrestore(&fq->lock, flags);
        put_cpu_ptr(iovad->fq);
 }
 EXPORT_SYMBOL_GPL(queue_iova);
index 985b8008999ec777f502aa1124d047fb89391601..913a690cd4b068822f95382dea2051f51c247280 100644 (file)
@@ -60,6 +60,7 @@ struct iova_fq_entry {
 struct iova_fq {
        struct iova_fq_entry entries[IOVA_FQ_SIZE];
        unsigned head, tail;
+       spinlock_t lock;
 };
 
 /* holds all the iova translations for a domain */