OSDN Git Service

staging: gasket: fix gasket_free_coherent_memory metadata frees
authorNick Ewalt <nicholasewalt@google.com>
Mon, 17 Sep 2018 12:39:02 +0000 (05:39 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Sep 2018 11:22:01 +0000 (13:22 +0200)
Free gasket_coherent_page_entries metadata memory, update data
structures accordingly.

Signed-off-by: Nick Ewalt <nicholasewalt@google.com>
Signed-off-by: Todd Poynor <toddpoynor@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gasket/gasket_page_table.c

index 33d9804..c1ce8f9 100644 (file)
@@ -1353,6 +1353,11 @@ int gasket_free_coherent_memory(struct gasket_dev *gasket_dev, u64 size,
                gasket_dev->coherent_buffer.virt_base = NULL;
                gasket_dev->coherent_buffer.phys_base = 0;
        }
+
+       kfree(gasket_dev->page_table[index]->coherent_pages);
+       gasket_dev->page_table[index]->coherent_pages = NULL;
+       gasket_dev->page_table[index]->num_coherent_pages = 0;
+
        return 0;
 }