mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
43 lines
1.5 KiB
Diff
43 lines
1.5 KiB
Diff
|
From 44a8e527e156245eff04ff36f426cb1ba8d23e34 Mon Sep 17 00:00:00 2001
|
||
|
From: Nick Desaulniers <ndesaulniers@google.com>
|
||
|
Date: Fri, 7 Oct 2016 11:51:15 -0700
|
||
|
Subject: [PATCH] ion: blacklist %p kptr_restrict
|
||
|
|
||
|
Bug: 31494725
|
||
|
Change-Id: I10a0c2aae883dfaa6c235c38689a704064557008
|
||
|
---
|
||
|
drivers/staging/android/ion/ion.c | 6 +++---
|
||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c
|
||
|
index a215fd4a5c411..0a5522d308c74 100755
|
||
|
--- a/drivers/staging/android/ion/ion.c
|
||
|
+++ b/drivers/staging/android/ion/ion.c
|
||
|
@@ -803,7 +803,7 @@ static int ion_debug_client_show(struct seq_file *s, void *unused)
|
||
|
struct ion_handle *handle = rb_entry(n, struct ion_handle,
|
||
|
node);
|
||
|
|
||
|
- seq_printf(s, "%16.16s: %16zx : %16d : %12p",
|
||
|
+ seq_printf(s, "%16.16s: %16zx : %16d : %12pK",
|
||
|
handle->buffer->heap->name,
|
||
|
handle->buffer->size,
|
||
|
atomic_read(&handle->ref.refcount),
|
||
|
@@ -1159,7 +1159,7 @@ static void ion_vm_open(struct vm_area_struct *vma)
|
||
|
mutex_lock(&buffer->lock);
|
||
|
list_add(&vma_list->list, &buffer->vmas);
|
||
|
mutex_unlock(&buffer->lock);
|
||
|
- pr_debug("%s: adding %p\n", __func__, vma);
|
||
|
+ pr_debug("%s: adding %pK\n", __func__, vma);
|
||
|
}
|
||
|
|
||
|
static void ion_vm_close(struct vm_area_struct *vma)
|
||
|
@@ -1174,7 +1174,7 @@ static void ion_vm_close(struct vm_area_struct *vma)
|
||
|
continue;
|
||
|
list_del(&vma_list->list);
|
||
|
kfree(vma_list);
|
||
|
- pr_debug("%s: deleting %p\n", __func__, vma);
|
||
|
+ pr_debug("%s: deleting %pK\n", __func__, vma);
|
||
|
break;
|
||
|
}
|
||
|
mutex_unlock(&buffer->lock);
|