Commit 0b549c4f authored by Steve French's avatar Steve French

cifs: minor comment cleanup

minor comment cleanup and trivial camelCase removal
Reviewed-by: default avatarBharath SM <bharathsm@microsoft.com>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent d8392c20
...@@ -645,10 +645,10 @@ static int cifs_entry_is_dot(struct cifs_dirent *de, bool is_unicode) ...@@ -645,10 +645,10 @@ static int cifs_entry_is_dot(struct cifs_dirent *de, bool is_unicode)
static int is_dir_changed(struct file *file) static int is_dir_changed(struct file *file)
{ {
struct inode *inode = file_inode(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) if (cifs_inode_info->time == 0)
return 1; /* directory was changed, perhaps due to unlink */ return 1; /* directory was changed, e.g. unlink or new file */
else else
return 0; return 0;
......
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