Use kvfree instead of kfree because the array is allocated with kvmalloc.

Signed-off-by: Mikulas Patocka <[email protected]>
Cc: [email protected]      # v4.12+

---
 drivers/md/dm-integrity.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6/drivers/md/dm-integrity.c
===================================================================
--- linux-2.6.orig/drivers/md/dm-integrity.c    2018-04-18 00:31:11.000000000 
+0200
+++ linux-2.6/drivers/md/dm-integrity.c 2018-04-18 00:31:11.000000000 +0200
@@ -2440,7 +2440,7 @@ static void dm_integrity_free_journal_sc
        unsigned i;
        for (i = 0; i < ic->journal_sections; i++)
                kvfree(sl[i]);
-       kfree(sl);
+       kvfree(sl);
 }
 
 static struct scatterlist **dm_integrity_alloc_journal_scatterlist(struct 
dm_integrity_c *ic, struct page_list *pl)

--
dm-devel mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/dm-devel

Reply via email to