Skip to content

Commit 0b549c4

Browse files
committed
cifs: minor comment cleanup
minor comment cleanup and trivial camelCase removal Reviewed-by: Bharath SM <[email protected]> Signed-off-by: Steve French <[email protected]>
1 parent d8392c2 commit 0b549c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fs/smb/client/readdir.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -645,10 +645,10 @@ static int cifs_entry_is_dot(struct cifs_dirent *de, bool is_unicode)
645645
static int is_dir_changed(struct file *file)
646646
{
647647
struct inode *inode = file_inode(file);
648-
struct cifsInodeInfo *cifsInfo = CIFS_I(inode);
648+
struct cifsInodeInfo *cifs_inode_info = CIFS_I(inode);
649649

650-
if (cifsInfo->time == 0)
651-
return 1; /* directory was changed, perhaps due to unlink */
650+
if (cifs_inode_info->time == 0)
651+
return 1; /* directory was changed, e.g. unlink or new file */
652652
else
653653
return 0;
654654

0 commit comments

Comments
 (0)