staging: exfat: Rename variable 'Attr' to 'attr'
Fix checkpatch warning: Avoid CamelCase Change all occurrences of identifier "Attr" to "attr" Signed-off-by: Pragat Pandya <pragat.pandya@gmail.com> Link: https://lore.kernel.org/r/20200210183558.11836-16-pragat.pandya@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cc3edc28b9
commit
a474b9021e
|
@ -265,7 +265,7 @@ struct dir_entry_t {
|
|||
/* used only for FAT12/16/32, not used for exFAT */
|
||||
char short_name[DOS_NAME_LENGTH + 2];
|
||||
|
||||
u32 Attr;
|
||||
u32 attr;
|
||||
u64 Size;
|
||||
u32 NumSubdirs;
|
||||
struct date_time_t CreateTimestamp;
|
||||
|
|
|
@ -1449,7 +1449,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
|
|||
if (is_dir) {
|
||||
if ((fid->dir.dir == p_fs->root_dir) &&
|
||||
(fid->entry == -1)) {
|
||||
info->Attr = ATTR_SUBDIR;
|
||||
info->attr = ATTR_SUBDIR;
|
||||
memset((char *)&info->CreateTimestamp, 0,
|
||||
sizeof(struct date_time_t));
|
||||
memset((char *)&info->ModifyTimestamp, 0,
|
||||
|
@ -1494,7 +1494,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
|
|||
ep2 = ep + 1;
|
||||
|
||||
/* set FILE_INFO structure using the acquired struct dentry_t */
|
||||
info->Attr = exfat_get_entry_attr(ep);
|
||||
info->attr = exfat_get_entry_attr(ep);
|
||||
|
||||
exfat_get_entry_time(ep, &tm, TM_CREATE);
|
||||
info->CreateTimestamp.year = tm.year;
|
||||
|
@ -1594,7 +1594,7 @@ static int ffsWriteStat(struct inode *inode, struct dir_entry_t *info)
|
|||
}
|
||||
ep2 = ep + 1;
|
||||
|
||||
exfat_set_entry_attr(ep, info->Attr);
|
||||
exfat_set_entry_attr(ep, info->attr);
|
||||
|
||||
/* set FILE_INFO structure using the acquired struct dentry_t */
|
||||
tm.sec = info->CreateTimestamp.second;
|
||||
|
@ -1911,7 +1911,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
|
|||
continue;
|
||||
|
||||
exfat_buf_lock(sb, sector);
|
||||
dir_entry->Attr = exfat_get_entry_attr(ep);
|
||||
dir_entry->attr = exfat_get_entry_attr(ep);
|
||||
|
||||
exfat_get_entry_time(ep, &tm, TM_CREATE);
|
||||
dir_entry->CreateTimestamp.year = tm.year;
|
||||
|
@ -2129,7 +2129,7 @@ get_new:
|
|||
}
|
||||
|
||||
if (!dir_emit(ctx, de.name, strlen(de.name), inum,
|
||||
(de.Attr & ATTR_SUBDIR) ? DT_DIR : DT_REG))
|
||||
(de.attr & ATTR_SUBDIR) ? DT_DIR : DT_REG))
|
||||
goto out;
|
||||
|
||||
ctx->pos = cpos;
|
||||
|
@ -3138,25 +3138,25 @@ static int exfat_fill_inode(struct inode *inode, struct file_id_t *fid)
|
|||
INC_IVERSION(inode);
|
||||
inode->i_generation = prandom_u32();
|
||||
|
||||
if (info.Attr & ATTR_SUBDIR) { /* directory */
|
||||
if (info.attr & ATTR_SUBDIR) { /* directory */
|
||||
inode->i_generation &= ~1;
|
||||
inode->i_mode = exfat_make_mode(sbi, info.Attr, 0777);
|
||||
inode->i_mode = exfat_make_mode(sbi, info.attr, 0777);
|
||||
inode->i_op = &exfat_dir_inode_operations;
|
||||
inode->i_fop = &exfat_dir_operations;
|
||||
|
||||
i_size_write(inode, info.Size);
|
||||
EXFAT_I(inode)->mmu_private = i_size_read(inode);
|
||||
set_nlink(inode, info.NumSubdirs);
|
||||
} else if (info.Attr & ATTR_SYMLINK) { /* symbolic link */
|
||||
} else if (info.attr & ATTR_SYMLINK) { /* symbolic link */
|
||||
inode->i_generation |= 1;
|
||||
inode->i_mode = exfat_make_mode(sbi, info.Attr, 0777);
|
||||
inode->i_mode = exfat_make_mode(sbi, info.attr, 0777);
|
||||
inode->i_op = &exfat_symlink_inode_operations;
|
||||
|
||||
i_size_write(inode, info.Size);
|
||||
EXFAT_I(inode)->mmu_private = i_size_read(inode);
|
||||
} else { /* regular file */
|
||||
inode->i_generation |= 1;
|
||||
inode->i_mode = exfat_make_mode(sbi, info.Attr, 0777);
|
||||
inode->i_mode = exfat_make_mode(sbi, info.attr, 0777);
|
||||
inode->i_op = &exfat_file_inode_operations;
|
||||
inode->i_fop = &exfat_file_operations;
|
||||
inode->i_mapping->a_ops = &exfat_aops;
|
||||
|
@ -3165,7 +3165,7 @@ static int exfat_fill_inode(struct inode *inode, struct file_id_t *fid)
|
|||
i_size_write(inode, info.Size);
|
||||
EXFAT_I(inode)->mmu_private = i_size_read(inode);
|
||||
}
|
||||
exfat_save_attr(inode, info.Attr);
|
||||
exfat_save_attr(inode, info.attr);
|
||||
|
||||
inode->i_blocks = ((i_size_read(inode) + (p_fs->cluster_size - 1))
|
||||
& ~((loff_t)p_fs->cluster_size - 1)) >> 9;
|
||||
|
@ -3238,7 +3238,7 @@ static int exfat_write_inode(struct inode *inode, struct writeback_control *wbc)
|
|||
if (inode->i_ino == EXFAT_ROOT_INO)
|
||||
return 0;
|
||||
|
||||
info.Attr = exfat_make_attr(inode);
|
||||
info.attr = exfat_make_attr(inode);
|
||||
info.Size = i_size_read(inode);
|
||||
|
||||
exfat_time_unix2fat(&inode->i_mtime, &info.ModifyTimestamp);
|
||||
|
|
Loading…
Reference in New Issue