Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions binder/binder_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "binder_alloc.h"
#include "binder_trace.h"
#include "compat_version.h"
#include "deps.h"

struct list_lru binder_alloc_lru;

Expand Down
3 changes: 3 additions & 0 deletions binder/deps.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// SPDX-License-Identifier: GPL-2.0

#include <linux/ipc_namespace.h>
#include <linux/mm.h>

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your fix :-)

Is there a reason why you need to include linux/mm.h..? Wouldn't it be sufficient to only add the function prototype below..?


struct ipc_namespace* get_init_ipc_ns_ptr(void);
void zap_page_range_single(struct vm_area_struct *vma, unsigned long address,
unsigned long size, struct zap_details *details);
Comment on lines 1 to +8