The Android binder driver will be turned into a module. Since it uses get_files_struct() we need to export this function.
Signed-off-by: Christian Brauner <[email protected]> Cc: Todd Kjos <[email protected]> Cc: Robert Love <[email protected]> Cc: Ben Hutching <[email protected]> Cc: Martijn Coenen <[email protected]> Cc: Arve Hjønnevåg <[email protected]> --- fs/file.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/file.c b/fs/file.c index b1ffa7acff69..430d74642e00 100644 --- a/fs/file.c +++ b/fs/file.c @@ -409,6 +409,7 @@ struct files_struct *get_files_struct(struct task_struct *task) return files; } +EXPORT_SYMBOL(get_files_struct); void put_files_struct(struct files_struct *files) { -- 2.17.1

