exfat: remove argument 'sector' from exfat_get_dentry()
No any function uses argument 'sector', remove it. Reviewed-by: Andy.Wu <Andy.Wu@sony.com> Reviewed-by: Aoyama, Wataru <wataru.aoyama@sony.com> Acked-by: Sungjong Seo <sj1557.seo@samsung.com> Signed-off-by: Yuezhang.Mo <Yuezhang.Mo@sony.com> Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
This commit is contained in:
@@ -64,7 +64,6 @@ static int exfat_readdir(struct inode *inode, loff_t *cpos, struct exfat_dir_ent
|
||||
{
|
||||
int i, dentries_per_clu, dentries_per_clu_bits = 0, num_ext;
|
||||
unsigned int type, clu_offset, max_dentries;
|
||||
sector_t sector;
|
||||
struct exfat_chain dir, clu;
|
||||
struct exfat_uni_name uni_name;
|
||||
struct exfat_dentry *ep;
|
||||
@@ -115,7 +114,7 @@ static int exfat_readdir(struct inode *inode, loff_t *cpos, struct exfat_dir_ent
|
||||
i = dentry & (dentries_per_clu - 1);
|
||||
|
||||
for ( ; i < dentries_per_clu; i++, dentry++) {
|
||||
ep = exfat_get_dentry(sb, &clu, i, &bh, §or);
|
||||
ep = exfat_get_dentry(sb, &clu, i, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
|
||||
@@ -156,7 +155,7 @@ static int exfat_readdir(struct inode *inode, loff_t *cpos, struct exfat_dir_ent
|
||||
dir_entry->namebuf.lfnbuf_len);
|
||||
brelse(bh);
|
||||
|
||||
ep = exfat_get_dentry(sb, &clu, i + 1, &bh, NULL);
|
||||
ep = exfat_get_dentry(sb, &clu, i + 1, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
dir_entry->size =
|
||||
@@ -445,7 +444,6 @@ int exfat_init_dir_entry(struct inode *inode, struct exfat_chain *p_dir,
|
||||
struct super_block *sb = inode->i_sb;
|
||||
struct exfat_sb_info *sbi = EXFAT_SB(sb);
|
||||
struct timespec64 ts = current_time(inode);
|
||||
sector_t sector;
|
||||
struct exfat_dentry *ep;
|
||||
struct buffer_head *bh;
|
||||
|
||||
@@ -453,7 +451,7 @@ int exfat_init_dir_entry(struct inode *inode, struct exfat_chain *p_dir,
|
||||
* We cannot use exfat_get_dentry_set here because file ep is not
|
||||
* initialized yet.
|
||||
*/
|
||||
ep = exfat_get_dentry(sb, p_dir, entry, &bh, §or);
|
||||
ep = exfat_get_dentry(sb, p_dir, entry, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
|
||||
@@ -477,7 +475,7 @@ int exfat_init_dir_entry(struct inode *inode, struct exfat_chain *p_dir,
|
||||
exfat_update_bh(bh, IS_DIRSYNC(inode));
|
||||
brelse(bh);
|
||||
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + 1, &bh, §or);
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + 1, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
|
||||
@@ -496,12 +494,11 @@ int exfat_update_dir_chksum(struct inode *inode, struct exfat_chain *p_dir,
|
||||
struct super_block *sb = inode->i_sb;
|
||||
int ret = 0;
|
||||
int i, num_entries;
|
||||
sector_t sector;
|
||||
u16 chksum;
|
||||
struct exfat_dentry *ep, *fep;
|
||||
struct buffer_head *fbh, *bh;
|
||||
|
||||
fep = exfat_get_dentry(sb, p_dir, entry, &fbh, §or);
|
||||
fep = exfat_get_dentry(sb, p_dir, entry, &fbh);
|
||||
if (!fep)
|
||||
return -EIO;
|
||||
|
||||
@@ -509,7 +506,7 @@ int exfat_update_dir_chksum(struct inode *inode, struct exfat_chain *p_dir,
|
||||
chksum = exfat_calc_chksum16(fep, DENTRY_SIZE, 0, CS_DIR_ENTRY);
|
||||
|
||||
for (i = 1; i < num_entries; i++) {
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + i, &bh, NULL);
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + i, &bh);
|
||||
if (!ep) {
|
||||
ret = -EIO;
|
||||
goto release_fbh;
|
||||
@@ -531,13 +528,12 @@ int exfat_init_ext_entry(struct inode *inode, struct exfat_chain *p_dir,
|
||||
{
|
||||
struct super_block *sb = inode->i_sb;
|
||||
int i;
|
||||
sector_t sector;
|
||||
unsigned short *uniname = p_uniname->name;
|
||||
struct exfat_dentry *ep;
|
||||
struct buffer_head *bh;
|
||||
int sync = IS_DIRSYNC(inode);
|
||||
|
||||
ep = exfat_get_dentry(sb, p_dir, entry, &bh, §or);
|
||||
ep = exfat_get_dentry(sb, p_dir, entry, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
|
||||
@@ -545,7 +541,7 @@ int exfat_init_ext_entry(struct inode *inode, struct exfat_chain *p_dir,
|
||||
exfat_update_bh(bh, sync);
|
||||
brelse(bh);
|
||||
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + 1, &bh, §or);
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + 1, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
|
||||
@@ -555,7 +551,7 @@ int exfat_init_ext_entry(struct inode *inode, struct exfat_chain *p_dir,
|
||||
brelse(bh);
|
||||
|
||||
for (i = EXFAT_FIRST_CLUSTER; i < num_entries; i++) {
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + i, &bh, §or);
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + i, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
|
||||
@@ -574,12 +570,11 @@ int exfat_remove_entries(struct inode *inode, struct exfat_chain *p_dir,
|
||||
{
|
||||
struct super_block *sb = inode->i_sb;
|
||||
int i;
|
||||
sector_t sector;
|
||||
struct exfat_dentry *ep;
|
||||
struct buffer_head *bh;
|
||||
|
||||
for (i = order; i < num_entries; i++) {
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + i, &bh, §or);
|
||||
ep = exfat_get_dentry(sb, p_dir, entry + i, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
|
||||
@@ -717,8 +712,7 @@ static int exfat_dir_readahead(struct super_block *sb, sector_t sec)
|
||||
}
|
||||
|
||||
struct exfat_dentry *exfat_get_dentry(struct super_block *sb,
|
||||
struct exfat_chain *p_dir, int entry, struct buffer_head **bh,
|
||||
sector_t *sector)
|
||||
struct exfat_chain *p_dir, int entry, struct buffer_head **bh)
|
||||
{
|
||||
unsigned int dentries_per_page = EXFAT_B_TO_DEN(PAGE_SIZE);
|
||||
int off;
|
||||
@@ -740,8 +734,6 @@ struct exfat_dentry *exfat_get_dentry(struct super_block *sb,
|
||||
if (!*bh)
|
||||
return NULL;
|
||||
|
||||
if (sector)
|
||||
*sector = sec;
|
||||
return (struct exfat_dentry *)((*bh)->b_data + off);
|
||||
}
|
||||
|
||||
@@ -960,7 +952,7 @@ rewind:
|
||||
if (rewind && dentry == end_eidx)
|
||||
goto not_found;
|
||||
|
||||
ep = exfat_get_dentry(sb, &clu, i, &bh, NULL);
|
||||
ep = exfat_get_dentry(sb, &clu, i, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
|
||||
@@ -1145,7 +1137,7 @@ int exfat_count_ext_entries(struct super_block *sb, struct exfat_chain *p_dir,
|
||||
struct buffer_head *bh;
|
||||
|
||||
for (i = 0, entry++; i < ep->dentry.file.num_ext; i++, entry++) {
|
||||
ext_ep = exfat_get_dentry(sb, p_dir, entry, &bh, NULL);
|
||||
ext_ep = exfat_get_dentry(sb, p_dir, entry, &bh);
|
||||
if (!ext_ep)
|
||||
return -EIO;
|
||||
|
||||
@@ -1175,7 +1167,7 @@ int exfat_count_dir_entries(struct super_block *sb, struct exfat_chain *p_dir)
|
||||
|
||||
while (clu.dir != EXFAT_EOF_CLUSTER) {
|
||||
for (i = 0; i < dentries_per_clu; i++) {
|
||||
ep = exfat_get_dentry(sb, &clu, i, &bh, NULL);
|
||||
ep = exfat_get_dentry(sb, &clu, i, &bh);
|
||||
if (!ep)
|
||||
return -EIO;
|
||||
entry_type = exfat_get_entry_type(ep);
|
||||
|
||||
Reference in New Issue
Block a user