mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
cifs: minor comment cleanup
[ Upstream commit 0b549c4f594167d7ef056393c6a06ac77f5690ff ] minor comment cleanup and trivial camelCase removal Reviewed-by: Bharath SM <bharathsm@microsoft.com> Signed-off-by: Steve French <stfrench@microsoft.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8358f46bef
commit
36f8070c9b
@@ -647,10 +647,10 @@ static int cifs_entry_is_dot(struct cifs_dirent *de, bool is_unicode)
|
||||
static int is_dir_changed(struct file *file)
|
||||
{
|
||||
struct inode *inode = file_inode(file);
|
||||
struct cifsInodeInfo *cifsInfo = CIFS_I(inode);
|
||||
struct cifsInodeInfo *cifs_inode_info = CIFS_I(inode);
|
||||
|
||||
if (cifsInfo->time == 0)
|
||||
return 1; /* directory was changed, perhaps due to unlink */
|
||||
if (cifs_inode_info->time == 0)
|
||||
return 1; /* directory was changed, e.g. unlink or new file */
|
||||
else
|
||||
return 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user