aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author鑫华 <jixianghua@xfusion.com>2023-06-06 23:34:56 +0800
committerSteve French <stfrench@microsoft.com>2023-06-11 20:52:48 -0500
commita5998a9ec3c03297a5b7f3df5c1979cd469a0da3 (patch)
tree662237365aa6f278d10dfcaba77af3955b291c4a
parent858fd168a95c5b9669aac8db6c14a9aeab446375 (diff)
downloadlinux-a5998a9ec3c03297a5b7f3df5c1979cd469a0da3.tar.gz
smb: remove obsolete comment
Because do_gettimeofday has been removed and replaced by ktime_get_real_ts64, So just remove the comment as it's not needed now. Signed-off-by: 鑫华 <jixianghua@xfusion.com> Signed-off-by: Steve French <stfrench@microsoft.com>
-rw-r--r--fs/smb/client/transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smb/client/transport.c b/fs/smb/client/transport.c
index 24bdd5f4d3bcc7..0474d0bba0a2e8 100644
--- a/fs/smb/client/transport.c
+++ b/fs/smb/client/transport.c
@@ -55,7 +55,7 @@ alloc_mid(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
temp->pid = current->pid;
temp->command = cpu_to_le16(smb_buffer->Command);
cifs_dbg(FYI, "For smb_command %d\n", smb_buffer->Command);
- /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
+ /* easier to use jiffies */
/* when mid allocated can be before when sent */
temp->when_alloc = jiffies;
temp->server = server;