| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* Network filesystem caching backend to use cache files on a premounted |
|---|
| 2 | 3 | * filesystem |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
|---|
| 5 | 6 | * Written by David Howells (dhowells@redhat.com) |
|---|
| 6 | | - * |
|---|
| 7 | | - * This program is free software; you can redistribute it and/or |
|---|
| 8 | | - * modify it under the terms of the GNU General Public Licence |
|---|
| 9 | | - * as published by the Free Software Foundation; either version |
|---|
| 10 | | - * 2 of the Licence, or (at your option) any later version. |
|---|
| 11 | 7 | */ |
|---|
| 12 | 8 | |
|---|
| 13 | 9 | #include <linux/module.h> |
|---|
| .. | .. |
|---|
| 32 | 28 | MODULE_DESCRIPTION("Mounted-filesystem based cache"); |
|---|
| 33 | 29 | MODULE_AUTHOR("Red Hat, Inc."); |
|---|
| 34 | 30 | MODULE_LICENSE("GPL"); |
|---|
| 31 | +MODULE_IMPORT_NS(ANDROID_GKI_VFS_EXPORT_ONLY); |
|---|
| 35 | 32 | |
|---|
| 36 | 33 | struct kmem_cache *cachefiles_object_jar; |
|---|
| 37 | 34 | |
|---|