summaryrefslogtreecommitdiffstats
path: root/drivers/staging/exfat/exfat.h
diff options
context:
space:
mode:
authorBrendan Higgins <brendanhiggins@google.com>2019-12-04 15:45:22 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-12-10 10:56:55 +0100
commit1af73a25e6e7d9f2f1e2a14259cc9ffce6d8f6d4 (patch)
treeff809172af21a066214476909fc3c073a080b9d9 /drivers/staging/exfat/exfat.h
parent2740bd3351cd5a4351f458aabaa1c9b77de3867b (diff)
downloadlinux-stable-1af73a25e6e7d9f2f1e2a14259cc9ffce6d8f6d4.tar.gz
linux-stable-1af73a25e6e7d9f2f1e2a14259cc9ffce6d8f6d4.tar.bz2
linux-stable-1af73a25e6e7d9f2f1e2a14259cc9ffce6d8f6d4.zip
staging: exfat: fix multiple definition error of `rename_file'
`rename_file' was exported but not properly namespaced causing a multiple definition error because `rename_file' is already defined in fs/hostfs/hostfs_user.c: ld: drivers/staging/exfat/exfat_core.o: in function `rename_file': drivers/staging/exfat/exfat_core.c:2327: multiple definition of `rename_file'; fs/hostfs/hostfs_user.o:fs/hostfs/hostfs_user.c:350: first defined here make: *** [Makefile:1077: vmlinux] Error 1 This error can be reproduced on ARCH=um by selecting: CONFIG_EXFAT_FS=y CONFIG_HOSTFS=y Add a namespace prefix exfat_* to fix this error. Reported-by: Brendan Higgins <brendanhiggins@google.com> Signed-off-by: Brendan Higgins <brendanhiggins@google.com> Cc: stable <stable@vger.kernel.org> Cc: Valdis Kletnieks <valdis.kletnieks@vt.edu> Tested-by: David Gow <davidgow@google.com> Reviewed-by: David Gow <davidgow@google.com> Link: https://lore.kernel.org/r/20191204234522.42855-1-brendanhiggins@google.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/exfat/exfat.h')
-rw-r--r--drivers/staging/exfat/exfat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/exfat/exfat.h b/drivers/staging/exfat/exfat.h
index 2aac1e000977..51c665a924b7 100644
--- a/drivers/staging/exfat/exfat.h
+++ b/drivers/staging/exfat/exfat.h
@@ -805,8 +805,8 @@ s32 create_dir(struct inode *inode, struct chain_t *p_dir,
s32 create_file(struct inode *inode, struct chain_t *p_dir,
struct uni_name_t *p_uniname, u8 mode, struct file_id_t *fid);
void remove_file(struct inode *inode, struct chain_t *p_dir, s32 entry);
-s32 rename_file(struct inode *inode, struct chain_t *p_dir, s32 old_entry,
- struct uni_name_t *p_uniname, struct file_id_t *fid);
+s32 exfat_rename_file(struct inode *inode, struct chain_t *p_dir, s32 old_entry,
+ struct uni_name_t *p_uniname, struct file_id_t *fid);
s32 move_file(struct inode *inode, struct chain_t *p_olddir, s32 oldentry,
struct chain_t *p_newdir, struct uni_name_t *p_uniname,
struct file_id_t *fid);