summaryrefslogtreecommitdiff
path: root/drivers/staging/fsl_qbman/fsl_usdpaa.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/fsl_qbman/fsl_usdpaa.c')
-rw-r--r--drivers/staging/fsl_qbman/fsl_usdpaa.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/staging/fsl_qbman/fsl_usdpaa.c b/drivers/staging/fsl_qbman/fsl_usdpaa.c
index 55223cd..0c54657 100644
--- a/drivers/staging/fsl_qbman/fsl_usdpaa.c
+++ b/drivers/staging/fsl_qbman/fsl_usdpaa.c
@@ -20,6 +20,7 @@
#include <linux/memblock.h>
#include <linux/slab.h>
#include <linux/mman.h>
+#include <mm/mmu_decl.h>
/* Physical address range of the memory reservation, exported for mm/mem.c */
static u64 phys_start;
@@ -1117,6 +1118,7 @@ static long ioctl_dma_unmap(struct ctx *ctx, void __user *arg)
struct mem_fragment *current_frag;
size_t sz;
unsigned long base;
+ unsigned long vaddr;
down_write(&current->mm->mmap_sem);
vma = find_vma(current->mm, (unsigned long)arg);
@@ -1150,9 +1152,19 @@ map_match:
}
current_frag = map->root_frag;
+ vaddr = (unsigned long) map->virt_addr;
for (i = 0; i < map->frag_count; i++) {
DPA_ASSERT(current_frag->refs > 0);
--current_frag->refs;
+ /*
+ * Make sure we invalidate the TLB entry for
+ * this fragment, otherwise a remap of a different
+ * page to this vaddr would give acces to an
+ * incorrect piece of memory
+ */
+ cleartlbcam(vaddr, mfspr(SPRN_PID));
+
+ vaddr += current_frag->len;
current_frag = list_entry(current_frag->list.prev,
struct mem_fragment, list);
}