| .. | .. | 
|---|
 | 1 | +// SPDX-License-Identifier: GPL-2.0-or-later  | 
|---|
| 1 | 2 |  /** | 
|---|
| 2 | 3 |   * eCryptfs: Linux filesystem encryption layer | 
|---|
| 3 | 4 |   * | 
|---|
| .. | .. | 
|---|
| 6 | 7 |   * Copyright (C) 2004-2007 International Business Machines Corp. | 
|---|
| 7 | 8 |   *   Author(s): Michael A. Halcrow <mahalcro@us.ibm.com> | 
|---|
| 8 | 9 |   *              Michael C. Thompson <mcthomps@us.ibm.com> | 
|---|
| 9 |  | - *              Tyler Hicks <tyhicks@ou.edu>  | 
|---|
| 10 |  | - *  | 
|---|
| 11 |  | - * This program is free software; you can redistribute it and/or  | 
|---|
| 12 |  | - * modify it under the terms of the GNU General Public License as  | 
|---|
| 13 |  | - * published by the Free Software Foundation; either version 2 of the  | 
|---|
| 14 |  | - * License, or (at your option) any later version.  | 
|---|
| 15 |  | - *  | 
|---|
| 16 |  | - * This program is distributed in the hope that it will be useful, but  | 
|---|
| 17 |  | - * WITHOUT ANY WARRANTY; without even the implied warranty of  | 
|---|
| 18 |  | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  | 
|---|
| 19 |  | - * General Public License for more details.  | 
|---|
| 20 |  | - *  | 
|---|
| 21 |  | - * You should have received a copy of the GNU General Public License  | 
|---|
| 22 |  | - * along with this program; if not, write to the Free Software  | 
|---|
| 23 |  | - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  | 
|---|
| 24 |  | - * 02111-1307, USA.  | 
|---|
 | 10 | + *              Tyler Hicks <code@tyhicks.com>  | 
|---|
| 25 | 11 |   */ | 
|---|
| 26 | 12 |   | 
|---|
| 27 | 13 |  #include <linux/dcache.h> | 
|---|
| .. | .. | 
|---|
| 905 | 891 |  MODULE_DESCRIPTION("eCryptfs"); | 
|---|
| 906 | 892 |   | 
|---|
| 907 | 893 |  MODULE_LICENSE("GPL"); | 
|---|
 | 894 | +MODULE_IMPORT_NS(ANDROID_GKI_VFS_EXPORT_ONLY);  | 
|---|
| 908 | 895 |   | 
|---|
| 909 | 896 |  module_init(ecryptfs_init) | 
|---|
| 910 | 897 |  module_exit(ecryptfs_exit) | 
|---|