Commit 99a4b135 authored by Valdis Kletnieks's avatar Valdis Kletnieks Committed by Greg Kroah-Hartman

staging: exfat: Clean up the namespace pollution part 7

Global functions called 'buf*' are a linkage editor disaster waiting to
happen.  Rename our buf_* functions to exfat_buf_*
Signed-off-by: default avatarValdis Kletnieks <Valdis.Kletnieks@vt.edu>
Link: https://lore.kernel.org/r/20191112211238.156490-12-Valdis.Kletnieks@vt.eduSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e5a490e0
...@@ -737,21 +737,21 @@ void nls_cstring_to_uniname(struct super_block *sb, ...@@ -737,21 +737,21 @@ void nls_cstring_to_uniname(struct super_block *sb,
bool *p_lossy); bool *p_lossy);
/* buffer cache management */ /* buffer cache management */
void buf_init(struct super_block *sb); void exfat_buf_init(struct super_block *sb);
void buf_shutdown(struct super_block *sb); void exfat_buf_shutdown(struct super_block *sb);
int FAT_read(struct super_block *sb, u32 loc, u32 *content); int FAT_read(struct super_block *sb, u32 loc, u32 *content);
s32 FAT_write(struct super_block *sb, u32 loc, u32 content); s32 FAT_write(struct super_block *sb, u32 loc, u32 content);
u8 *FAT_getblk(struct super_block *sb, sector_t sec); u8 *FAT_getblk(struct super_block *sb, sector_t sec);
void FAT_modify(struct super_block *sb, sector_t sec); void FAT_modify(struct super_block *sb, sector_t sec);
void FAT_release_all(struct super_block *sb); void FAT_release_all(struct super_block *sb);
void FAT_sync(struct super_block *sb); void FAT_sync(struct super_block *sb);
u8 *buf_getblk(struct super_block *sb, sector_t sec); u8 *exfat_buf_getblk(struct super_block *sb, sector_t sec);
void buf_modify(struct super_block *sb, sector_t sec); void exfat_buf_modify(struct super_block *sb, sector_t sec);
void buf_lock(struct super_block *sb, sector_t sec); void exfat_buf_lock(struct super_block *sb, sector_t sec);
void buf_unlock(struct super_block *sb, sector_t sec); void exfat_buf_unlock(struct super_block *sb, sector_t sec);
void buf_release(struct super_block *sb, sector_t sec); void exfat_buf_release(struct super_block *sb, sector_t sec);
void buf_release_all(struct super_block *sb); void exfat_buf_release_all(struct super_block *sb);
void buf_sync(struct super_block *sb); void exfat_buf_sync(struct super_block *sb);
/* fs management functions */ /* fs management functions */
void fs_set_vol_flags(struct super_block *sb, u32 new_flag); void fs_set_vol_flags(struct super_block *sb, u32 new_flag);
......
...@@ -128,7 +128,7 @@ static void buf_cache_remove_hash(struct buf_cache_t *bp) ...@@ -128,7 +128,7 @@ static void buf_cache_remove_hash(struct buf_cache_t *bp)
(bp->hash_next)->hash_prev = bp->hash_prev; (bp->hash_next)->hash_prev = bp->hash_prev;
} }
void buf_init(struct super_block *sb) void exfat_buf_init(struct super_block *sb)
{ {
struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info); struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info);
...@@ -189,7 +189,7 @@ void buf_init(struct super_block *sb) ...@@ -189,7 +189,7 @@ void buf_init(struct super_block *sb)
buf_cache_insert_hash(sb, &p_fs->buf_cache_array[i]); buf_cache_insert_hash(sb, &p_fs->buf_cache_array[i]);
} }
void buf_shutdown(struct super_block *sb) void exfat_buf_shutdown(struct super_block *sb)
{ {
} }
...@@ -392,7 +392,7 @@ static struct buf_cache_t *buf_cache_get(struct super_block *sb, sector_t sec) ...@@ -392,7 +392,7 @@ static struct buf_cache_t *buf_cache_get(struct super_block *sb, sector_t sec)
return bp; return bp;
} }
static u8 *__buf_getblk(struct super_block *sb, sector_t sec) static u8 *__exfat_buf_getblk(struct super_block *sb, sector_t sec)
{ {
struct buf_cache_t *bp; struct buf_cache_t *bp;
struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info); struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info);
...@@ -427,18 +427,18 @@ static u8 *__buf_getblk(struct super_block *sb, sector_t sec) ...@@ -427,18 +427,18 @@ static u8 *__buf_getblk(struct super_block *sb, sector_t sec)
return bp->buf_bh->b_data; return bp->buf_bh->b_data;
} }
u8 *buf_getblk(struct super_block *sb, sector_t sec) u8 *exfat_buf_getblk(struct super_block *sb, sector_t sec)
{ {
u8 *buf; u8 *buf;
mutex_lock(&b_mutex); mutex_lock(&b_mutex);
buf = __buf_getblk(sb, sec); buf = __exfat_buf_getblk(sb, sec);
mutex_unlock(&b_mutex); mutex_unlock(&b_mutex);
return buf; return buf;
} }
void buf_modify(struct super_block *sb, sector_t sec) void exfat_buf_modify(struct super_block *sb, sector_t sec)
{ {
struct buf_cache_t *bp; struct buf_cache_t *bp;
...@@ -454,7 +454,7 @@ void buf_modify(struct super_block *sb, sector_t sec) ...@@ -454,7 +454,7 @@ void buf_modify(struct super_block *sb, sector_t sec)
mutex_unlock(&b_mutex); mutex_unlock(&b_mutex);
} }
void buf_lock(struct super_block *sb, sector_t sec) void exfat_buf_lock(struct super_block *sb, sector_t sec)
{ {
struct buf_cache_t *bp; struct buf_cache_t *bp;
...@@ -470,7 +470,7 @@ void buf_lock(struct super_block *sb, sector_t sec) ...@@ -470,7 +470,7 @@ void buf_lock(struct super_block *sb, sector_t sec)
mutex_unlock(&b_mutex); mutex_unlock(&b_mutex);
} }
void buf_unlock(struct super_block *sb, sector_t sec) void exfat_buf_unlock(struct super_block *sb, sector_t sec)
{ {
struct buf_cache_t *bp; struct buf_cache_t *bp;
...@@ -486,7 +486,7 @@ void buf_unlock(struct super_block *sb, sector_t sec) ...@@ -486,7 +486,7 @@ void buf_unlock(struct super_block *sb, sector_t sec)
mutex_unlock(&b_mutex); mutex_unlock(&b_mutex);
} }
void buf_release(struct super_block *sb, sector_t sec) void exfat_buf_release(struct super_block *sb, sector_t sec)
{ {
struct buf_cache_t *bp; struct buf_cache_t *bp;
struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info); struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info);
...@@ -510,7 +510,7 @@ void buf_release(struct super_block *sb, sector_t sec) ...@@ -510,7 +510,7 @@ void buf_release(struct super_block *sb, sector_t sec)
mutex_unlock(&b_mutex); mutex_unlock(&b_mutex);
} }
void buf_release_all(struct super_block *sb) void exfat_buf_release_all(struct super_block *sb)
{ {
struct buf_cache_t *bp; struct buf_cache_t *bp;
struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info); struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info);
...@@ -535,7 +535,7 @@ void buf_release_all(struct super_block *sb) ...@@ -535,7 +535,7 @@ void buf_release_all(struct super_block *sb)
mutex_unlock(&b_mutex); mutex_unlock(&b_mutex);
} }
void buf_sync(struct super_block *sb) void exfat_buf_sync(struct super_block *sb)
{ {
struct buf_cache_t *bp; struct buf_cache_t *bp;
struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info); struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info);
......
...@@ -352,7 +352,7 @@ static void exfat_free_cluster(struct super_block *sb, struct chain_t *p_chain, ...@@ -352,7 +352,7 @@ static void exfat_free_cluster(struct super_block *sb, struct chain_t *p_chain,
if (do_relse) { if (do_relse) {
sector = START_SECTOR(clu); sector = START_SECTOR(clu);
for (i = 0; i < p_fs->sectors_per_clu; i++) for (i = 0; i < p_fs->sectors_per_clu; i++)
buf_release(sb, sector + i); exfat_buf_release(sb, sector + i);
} }
if (clr_alloc_bitmap(sb, clu - 2) != 0) if (clr_alloc_bitmap(sb, clu - 2) != 0)
...@@ -369,7 +369,7 @@ static void exfat_free_cluster(struct super_block *sb, struct chain_t *p_chain, ...@@ -369,7 +369,7 @@ static void exfat_free_cluster(struct super_block *sb, struct chain_t *p_chain,
if (do_relse) { if (do_relse) {
sector = START_SECTOR(clu); sector = START_SECTOR(clu);
for (i = 0; i < p_fs->sectors_per_clu; i++) for (i = 0; i < p_fs->sectors_per_clu; i++)
buf_release(sb, sector + i); exfat_buf_release(sb, sector + i);
} }
if (clr_alloc_bitmap(sb, clu - 2) != 0) if (clr_alloc_bitmap(sb, clu - 2) != 0)
...@@ -1032,10 +1032,10 @@ static s32 exfat_init_dir_entry(struct super_block *sb, struct chain_t *p_dir, ...@@ -1032,10 +1032,10 @@ static s32 exfat_init_dir_entry(struct super_block *sb, struct chain_t *p_dir,
return -ENOENT; return -ENOENT;
init_file_entry(file_ep, type); init_file_entry(file_ep, type);
buf_modify(sb, sector); exfat_buf_modify(sb, sector);
init_strm_entry(strm_ep, flags, start_clu, size); init_strm_entry(strm_ep, flags, start_clu, size);
buf_modify(sb, sector); exfat_buf_modify(sb, sector);
return 0; return 0;
} }
...@@ -1058,7 +1058,7 @@ static s32 exfat_init_ext_entry(struct super_block *sb, struct chain_t *p_dir, ...@@ -1058,7 +1058,7 @@ static s32 exfat_init_ext_entry(struct super_block *sb, struct chain_t *p_dir,
return -ENOENT; return -ENOENT;
file_ep->num_ext = (u8)(num_entries - 1); file_ep->num_ext = (u8)(num_entries - 1);
buf_modify(sb, sector); exfat_buf_modify(sb, sector);
strm_ep = (struct strm_dentry_t *)get_entry_in_dir(sb, p_dir, entry + 1, strm_ep = (struct strm_dentry_t *)get_entry_in_dir(sb, p_dir, entry + 1,
&sector); &sector);
...@@ -1067,7 +1067,7 @@ static s32 exfat_init_ext_entry(struct super_block *sb, struct chain_t *p_dir, ...@@ -1067,7 +1067,7 @@ static s32 exfat_init_ext_entry(struct super_block *sb, struct chain_t *p_dir,
strm_ep->name_len = p_uniname->name_len; strm_ep->name_len = p_uniname->name_len;
SET16_A(strm_ep->name_hash, p_uniname->name_hash); SET16_A(strm_ep->name_hash, p_uniname->name_hash);
buf_modify(sb, sector); exfat_buf_modify(sb, sector);
for (i = 2; i < num_entries; i++) { for (i = 2; i < num_entries; i++) {
name_ep = (struct name_dentry_t *)get_entry_in_dir(sb, p_dir, name_ep = (struct name_dentry_t *)get_entry_in_dir(sb, p_dir,
...@@ -1077,7 +1077,7 @@ static s32 exfat_init_ext_entry(struct super_block *sb, struct chain_t *p_dir, ...@@ -1077,7 +1077,7 @@ static s32 exfat_init_ext_entry(struct super_block *sb, struct chain_t *p_dir,
return -ENOENT; return -ENOENT;
init_name_entry(name_ep, uniname); init_name_entry(name_ep, uniname);
buf_modify(sb, sector); exfat_buf_modify(sb, sector);
uniname += 15; uniname += 15;
} }
...@@ -1100,7 +1100,7 @@ static void exfat_delete_dir_entry(struct super_block *sb, struct chain_t *p_dir ...@@ -1100,7 +1100,7 @@ static void exfat_delete_dir_entry(struct super_block *sb, struct chain_t *p_dir
return; return;
p_fs->fs_func->set_entry_type(ep, TYPE_DELETED); p_fs->fs_func->set_entry_type(ep, TYPE_DELETED);
buf_modify(sb, sector); exfat_buf_modify(sb, sector);
} }
} }
...@@ -1118,7 +1118,7 @@ void update_dir_checksum(struct super_block *sb, struct chain_t *p_dir, ...@@ -1118,7 +1118,7 @@ void update_dir_checksum(struct super_block *sb, struct chain_t *p_dir,
if (!file_ep) if (!file_ep)
return; return;
buf_lock(sb, sector); exfat_buf_lock(sb, sector);
num_entries = (s32)file_ep->num_ext + 1; num_entries = (s32)file_ep->num_ext + 1;
chksum = calc_checksum_2byte((void *)file_ep, DENTRY_SIZE, 0, chksum = calc_checksum_2byte((void *)file_ep, DENTRY_SIZE, 0,
...@@ -1127,7 +1127,7 @@ void update_dir_checksum(struct super_block *sb, struct chain_t *p_dir, ...@@ -1127,7 +1127,7 @@ void update_dir_checksum(struct super_block *sb, struct chain_t *p_dir,
for (i = 1; i < num_entries; i++) { for (i = 1; i < num_entries; i++) {
ep = get_entry_in_dir(sb, p_dir, entry + i, NULL); ep = get_entry_in_dir(sb, p_dir, entry + i, NULL);
if (!ep) { if (!ep) {
buf_unlock(sb, sector); exfat_buf_unlock(sb, sector);
return; return;
} }
...@@ -1136,8 +1136,8 @@ void update_dir_checksum(struct super_block *sb, struct chain_t *p_dir, ...@@ -1136,8 +1136,8 @@ void update_dir_checksum(struct super_block *sb, struct chain_t *p_dir,
} }
SET16_A(file_ep->checksum, chksum); SET16_A(file_ep->checksum, chksum);
buf_modify(sb, sector); exfat_buf_modify(sb, sector);
buf_unlock(sb, sector); exfat_buf_unlock(sb, sector);
} }
static s32 __write_partial_entries_in_entry_set(struct super_block *sb, static s32 __write_partial_entries_in_entry_set(struct super_block *sb,
...@@ -1161,7 +1161,7 @@ static s32 __write_partial_entries_in_entry_set(struct super_block *sb, ...@@ -1161,7 +1161,7 @@ static s32 __write_partial_entries_in_entry_set(struct super_block *sb,
copy_entries = min_t(s32, copy_entries = min_t(s32,
remaining_byte_in_sector >> DENTRY_SIZE_BITS, remaining_byte_in_sector >> DENTRY_SIZE_BITS,
num_entries); num_entries);
buf = buf_getblk(sb, sec); buf = exfat_buf_getblk(sb, sec);
if (!buf) if (!buf)
goto err_out; goto err_out;
pr_debug("es->buf %p buf_off %u\n", esbuf, buf_off); pr_debug("es->buf %p buf_off %u\n", esbuf, buf_off);
...@@ -1170,7 +1170,7 @@ static s32 __write_partial_entries_in_entry_set(struct super_block *sb, ...@@ -1170,7 +1170,7 @@ static s32 __write_partial_entries_in_entry_set(struct super_block *sb,
(unsigned long long)sec); (unsigned long long)sec);
memcpy(buf + off, esbuf + buf_off, memcpy(buf + off, esbuf + buf_off,
copy_entries << DENTRY_SIZE_BITS); copy_entries << DENTRY_SIZE_BITS);
buf_modify(sb, sec); exfat_buf_modify(sb, sec);
num_entries -= copy_entries; num_entries -= copy_entries;
if (num_entries) { if (num_entries) {
...@@ -1295,7 +1295,7 @@ struct dentry_t *get_entry_in_dir(struct super_block *sb, struct chain_t *p_dir, ...@@ -1295,7 +1295,7 @@ struct dentry_t *get_entry_in_dir(struct super_block *sb, struct chain_t *p_dir,
if (find_location(sb, p_dir, entry, &sec, &off) != 0) if (find_location(sb, p_dir, entry, &sec, &off) != 0)
return NULL; return NULL;
buf = buf_getblk(sb, sec); buf = exfat_buf_getblk(sb, sec);
if (!buf) if (!buf)
return NULL; return NULL;
...@@ -1359,7 +1359,7 @@ struct entry_set_cache_t *get_entry_set_in_dir(struct super_block *sb, ...@@ -1359,7 +1359,7 @@ struct entry_set_cache_t *get_entry_set_in_dir(struct super_block *sb,
sec = byte_offset >> p_bd->sector_size_bits; sec = byte_offset >> p_bd->sector_size_bits;
sec += START_SECTOR(clu); sec += START_SECTOR(clu);
buf = buf_getblk(sb, sec); buf = exfat_buf_getblk(sb, sec);
if (!buf) if (!buf)
goto err_out; goto err_out;
...@@ -1457,7 +1457,7 @@ struct entry_set_cache_t *get_entry_set_in_dir(struct super_block *sb, ...@@ -1457,7 +1457,7 @@ struct entry_set_cache_t *get_entry_set_in_dir(struct super_block *sb,
} else { } else {
sec++; sec++;
} }
buf = buf_getblk(sb, sec); buf = exfat_buf_getblk(sb, sec);
if (!buf) if (!buf)
goto err_out; goto err_out;
off = 0; off = 0;
...@@ -1649,7 +1649,7 @@ static s32 find_empty_entry(struct inode *inode, struct chain_t *p_dir, s32 num_ ...@@ -1649,7 +1649,7 @@ static s32 find_empty_entry(struct inode *inode, struct chain_t *p_dir, s32 num_
return -ENOENT; return -ENOENT;
p_fs->fs_func->set_entry_size(ep, size); p_fs->fs_func->set_entry_size(ep, size);
p_fs->fs_func->set_entry_flag(ep, p_dir->flags); p_fs->fs_func->set_entry_flag(ep, p_dir->flags);
buf_modify(sb, sector); exfat_buf_modify(sb, sector);
update_dir_checksum(sb, &fid->dir, update_dir_checksum(sb, &fid->dir,
fid->entry); fid->entry);
...@@ -2341,17 +2341,17 @@ void remove_file(struct inode *inode, struct chain_t *p_dir, s32 entry) ...@@ -2341,17 +2341,17 @@ void remove_file(struct inode *inode, struct chain_t *p_dir, s32 entry)
if (!ep) if (!ep)
return; return;
buf_lock(sb, sector); exfat_buf_lock(sb, sector);
/* buf_lock() before call count_ext_entries() */ /* exfat_buf_lock() before call count_ext_entries() */
num_entries = fs_func->count_ext_entries(sb, p_dir, entry, ep); num_entries = fs_func->count_ext_entries(sb, p_dir, entry, ep);
if (num_entries < 0) { if (num_entries < 0) {
buf_unlock(sb, sector); exfat_buf_unlock(sb, sector);
return; return;
} }
num_entries++; num_entries++;
buf_unlock(sb, sector); exfat_buf_unlock(sb, sector);
/* (1) update the directory entry */ /* (1) update the directory entry */
fs_func->delete_dir_entry(sb, p_dir, entry, 0, num_entries); fs_func->delete_dir_entry(sb, p_dir, entry, 0, num_entries);
...@@ -2372,13 +2372,13 @@ s32 rename_file(struct inode *inode, struct chain_t *p_dir, s32 oldentry, ...@@ -2372,13 +2372,13 @@ s32 rename_file(struct inode *inode, struct chain_t *p_dir, s32 oldentry,
if (!epold) if (!epold)
return -ENOENT; return -ENOENT;
buf_lock(sb, sector_old); exfat_buf_lock(sb, sector_old);
/* buf_lock() before call count_ext_entries() */ /* exfat_buf_lock() before call count_ext_entries() */
num_old_entries = fs_func->count_ext_entries(sb, p_dir, oldentry, num_old_entries = fs_func->count_ext_entries(sb, p_dir, oldentry,
epold); epold);
if (num_old_entries < 0) { if (num_old_entries < 0) {
buf_unlock(sb, sector_old); exfat_buf_unlock(sb, sector_old);
return -ENOENT; return -ENOENT;
} }
num_old_entries++; num_old_entries++;
...@@ -2386,20 +2386,20 @@ s32 rename_file(struct inode *inode, struct chain_t *p_dir, s32 oldentry, ...@@ -2386,20 +2386,20 @@ s32 rename_file(struct inode *inode, struct chain_t *p_dir, s32 oldentry,
ret = get_num_entries_and_dos_name(sb, p_dir, p_uniname, ret = get_num_entries_and_dos_name(sb, p_dir, p_uniname,
&num_new_entries, &dos_name); &num_new_entries, &dos_name);
if (ret) { if (ret) {
buf_unlock(sb, sector_old); exfat_buf_unlock(sb, sector_old);
return ret; return ret;
} }
if (num_old_entries < num_new_entries) { if (num_old_entries < num_new_entries) {
newentry = find_empty_entry(inode, p_dir, num_new_entries); newentry = find_empty_entry(inode, p_dir, num_new_entries);
if (newentry < 0) { if (newentry < 0) {
buf_unlock(sb, sector_old); exfat_buf_unlock(sb, sector_old);
return -ENOSPC; return -ENOSPC;
} }
epnew = get_entry_in_dir(sb, p_dir, newentry, &sector_new); epnew = get_entry_in_dir(sb, p_dir, newentry, &sector_new);
if (!epnew) { if (!epnew) {
buf_unlock(sb, sector_old); exfat_buf_unlock(sb, sector_old);
return -ENOENT; return -ENOENT;
} }
...@@ -2410,23 +2410,23 @@ s32 rename_file(struct inode *inode, struct chain_t *p_dir, s32 oldentry, ...@@ -2410,23 +2410,23 @@ s32 rename_file(struct inode *inode, struct chain_t *p_dir, s32 oldentry,
ATTR_ARCHIVE); ATTR_ARCHIVE);
fid->attr |= ATTR_ARCHIVE; fid->attr |= ATTR_ARCHIVE;
} }
buf_modify(sb, sector_new); exfat_buf_modify(sb, sector_new);
buf_unlock(sb, sector_old); exfat_buf_unlock(sb, sector_old);
epold = get_entry_in_dir(sb, p_dir, oldentry + 1, epold = get_entry_in_dir(sb, p_dir, oldentry + 1,
&sector_old); &sector_old);
buf_lock(sb, sector_old); exfat_buf_lock(sb, sector_old);
epnew = get_entry_in_dir(sb, p_dir, newentry + 1, epnew = get_entry_in_dir(sb, p_dir, newentry + 1,
&sector_new); &sector_new);
if (!epold || !epnew) { if (!epold || !epnew) {
buf_unlock(sb, sector_old); exfat_buf_unlock(sb, sector_old);
return -ENOENT; return -ENOENT;
} }
memcpy((void *)epnew, (void *)epold, DENTRY_SIZE); memcpy((void *)epnew, (void *)epold, DENTRY_SIZE);
buf_modify(sb, sector_new); exfat_buf_modify(sb, sector_new);
buf_unlock(sb, sector_old); exfat_buf_unlock(sb, sector_old);
ret = fs_func->init_ext_entry(sb, p_dir, newentry, ret = fs_func->init_ext_entry(sb, p_dir, newentry,
num_new_entries, p_uniname, num_new_entries, p_uniname,
...@@ -2444,8 +2444,8 @@ s32 rename_file(struct inode *inode, struct chain_t *p_dir, s32 oldentry, ...@@ -2444,8 +2444,8 @@ s32 rename_file(struct inode *inode, struct chain_t *p_dir, s32 oldentry,
ATTR_ARCHIVE); ATTR_ARCHIVE);
fid->attr |= ATTR_ARCHIVE; fid->attr |= ATTR_ARCHIVE;
} }
buf_modify(sb, sector_old); exfat_buf_modify(sb, sector_old);
buf_unlock(sb, sector_old); exfat_buf_unlock(sb, sector_old);
ret = fs_func->init_ext_entry(sb, p_dir, oldentry, ret = fs_func->init_ext_entry(sb, p_dir, oldentry,
num_new_entries, p_uniname, num_new_entries, p_uniname,
...@@ -2481,13 +2481,13 @@ s32 move_file(struct inode *inode, struct chain_t *p_olddir, s32 oldentry, ...@@ -2481,13 +2481,13 @@ s32 move_file(struct inode *inode, struct chain_t *p_olddir, s32 oldentry,
fs_func->get_entry_clu0(epmov) == p_newdir->dir) fs_func->get_entry_clu0(epmov) == p_newdir->dir)
return -EINVAL; return -EINVAL;
buf_lock(sb, sector_mov); exfat_buf_lock(sb, sector_mov);
/* buf_lock() before call count_ext_entries() */ /* exfat_buf_lock() before call count_ext_entries() */
num_old_entries = fs_func->count_ext_entries(sb, p_olddir, oldentry, num_old_entries = fs_func->count_ext_entries(sb, p_olddir, oldentry,
epmov); epmov);
if (num_old_entries < 0) { if (num_old_entries < 0) {
buf_unlock(sb, sector_mov); exfat_buf_unlock(sb, sector_mov);
return -ENOENT; return -ENOENT;
} }
num_old_entries++; num_old_entries++;
...@@ -2495,19 +2495,19 @@ s32 move_file(struct inode *inode, struct chain_t *p_olddir, s32 oldentry, ...@@ -2495,19 +2495,19 @@ s32 move_file(struct inode *inode, struct chain_t *p_olddir, s32 oldentry,
ret = get_num_entries_and_dos_name(sb, p_newdir, p_uniname, ret = get_num_entries_and_dos_name(sb, p_newdir, p_uniname,
&num_new_entries, &dos_name); &num_new_entries, &dos_name);
if (ret) { if (ret) {
buf_unlock(sb, sector_mov); exfat_buf_unlock(sb, sector_mov);
return ret; return ret;
} }
newentry = find_empty_entry(inode, p_newdir, num_new_entries); newentry = find_empty_entry(inode, p_newdir, num_new_entries);
if (newentry < 0) { if (newentry < 0) {
buf_unlock(sb, sector_mov); exfat_buf_unlock(sb, sector_mov);
return -ENOSPC; return -ENOSPC;
} }
epnew = get_entry_in_dir(sb, p_newdir, newentry, &sector_new); epnew = get_entry_in_dir(sb, p_newdir, newentry, &sector_new);
if (!epnew) { if (!epnew) {
buf_unlock(sb, sector_mov); exfat_buf_unlock(sb, sector_mov);
return -ENOENT; return -ENOENT;
} }
...@@ -2517,22 +2517,22 @@ s32 move_file(struct inode *inode, struct chain_t *p_olddir, s32 oldentry, ...@@ -2517,22 +2517,22 @@ s32 move_file(struct inode *inode, struct chain_t *p_olddir, s32 oldentry,
ATTR_ARCHIVE); ATTR_ARCHIVE);
fid->attr |= ATTR_ARCHIVE; fid->attr |= ATTR_ARCHIVE;
} }
buf_modify(sb, sector_new); exfat_buf_modify(sb, sector_new);
buf_unlock(sb, sector_mov); exfat_buf_unlock(sb, sector_mov);
epmov = get_entry_in_dir(sb, p_olddir, oldentry + 1, epmov = get_entry_in_dir(sb, p_olddir, oldentry + 1,
&sector_mov); &sector_mov);
buf_lock(sb, sector_mov); exfat_buf_lock(sb, sector_mov);
epnew = get_entry_in_dir(sb, p_newdir, newentry + 1, epnew = get_entry_in_dir(sb, p_newdir, newentry + 1,
&sector_new); &sector_new);
if (!epmov || !epnew) { if (!epmov || !epnew) {
buf_unlock(sb, sector_mov); exfat_buf_unlock(sb, sector_mov);
return -ENOENT; return -ENOENT;
} }
memcpy((void *)epnew, (void *)epmov, DENTRY_SIZE); memcpy((void *)epnew, (void *)epmov, DENTRY_SIZE);
buf_modify(sb, sector_new); exfat_buf_modify(sb, sector_new);
buf_unlock(sb, sector_mov); exfat_buf_unlock(sb, sector_mov);
ret = fs_func->init_ext_entry(sb, p_newdir, newentry, num_new_entries, ret = fs_func->init_ext_entry(sb, p_newdir, newentry, num_new_entries,
p_uniname, &dos_name); p_uniname, &dos_name);
......
...@@ -355,7 +355,7 @@ static int ffsMountVol(struct super_block *sb) ...@@ -355,7 +355,7 @@ static int ffsMountVol(struct super_block *sb)
mutex_lock(&z_mutex); mutex_lock(&z_mutex);
buf_init(sb); exfat_buf_init(sb);
mutex_init(&p_fs->v_mutex); mutex_init(&p_fs->v_mutex);
p_fs->dev_ejected = 0; p_fs->dev_ejected = 0;
...@@ -458,7 +458,7 @@ static int ffsUmountVol(struct super_block *sb) ...@@ -458,7 +458,7 @@ static int ffsUmountVol(struct super_block *sb)
free_alloc_bitmap(sb); free_alloc_bitmap(sb);
FAT_release_all(sb); FAT_release_all(sb);
buf_release_all(sb); exfat_buf_release_all(sb);
/* close the block device */ /* close the block device */
exfat_bdev_close(sb); exfat_bdev_close(sb);
...@@ -468,7 +468,7 @@ static int ffsUmountVol(struct super_block *sb) ...@@ -468,7 +468,7 @@ static int ffsUmountVol(struct super_block *sb)
err = -EIO; err = -EIO;
} }
buf_shutdown(sb); exfat_buf_shutdown(sb);
/* release the lock for file system critical section */ /* release the lock for file system critical section */
mutex_unlock(&p_fs->v_mutex); mutex_unlock(&p_fs->v_mutex);
...@@ -1921,7 +1921,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry) ...@@ -1921,7 +1921,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
if ((type != TYPE_FILE) && (type != TYPE_DIR)) if ((type != TYPE_FILE) && (type != TYPE_DIR))
continue; continue;
buf_lock(sb, sector); exfat_buf_lock(sb, sector);
dir_entry->Attr = fs_func->get_entry_attr(ep); dir_entry->Attr = fs_func->get_entry_attr(ep);
fs_func->get_entry_time(ep, &tm, TM_CREATE); fs_func->get_entry_time(ep, &tm, TM_CREATE);
...@@ -1949,7 +1949,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry) ...@@ -1949,7 +1949,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
fs_func->get_uni_name_from_ext_entry(sb, &dir, dentry, fs_func->get_uni_name_from_ext_entry(sb, &dir, dentry,
uni_name.name); uni_name.name);
nls_uniname_to_cstring(sb, dir_entry->Name, &uni_name); nls_uniname_to_cstring(sb, dir_entry->Name, &uni_name);
buf_unlock(sb, sector); exfat_buf_unlock(sb, sector);
ep = get_entry_in_dir(sb, &clu, i + 1, NULL); ep = get_entry_in_dir(sb, &clu, i + 1, NULL);
if (!ep) { if (!ep) {
...@@ -3822,7 +3822,7 @@ static void exfat_debug_kill_sb(struct super_block *sb) ...@@ -3822,7 +3822,7 @@ static void exfat_debug_kill_sb(struct super_block *sb)
*/ */
mutex_lock(&p_fs->v_mutex); mutex_lock(&p_fs->v_mutex);
FAT_release_all(sb); FAT_release_all(sb);
buf_release_all(sb); exfat_buf_release_all(sb);
mutex_unlock(&p_fs->v_mutex); mutex_unlock(&p_fs->v_mutex);
invalidate_bdev(bdev); invalidate_bdev(bdev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment