diff options
author | ChenXiaoSong <chenxiaosong@kylinos.cn> | 2024-08-20 16:33:15 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2024-08-22 22:44:19 +0200 |
commit | 5e51224d2afbda57f33f47485871ee5532145e18 (patch) | |
tree | c4760a8db9203d65bfe5af7041cd6f47135d03de /fs/smb/client/cifsglob.h | |
parent | smb: client: ignore unhandled reparse tags (diff) | |
download | linux-5e51224d2afbda57f33f47485871ee5532145e18.tar.xz linux-5e51224d2afbda57f33f47485871ee5532145e18.zip |
smb/client: fix typo: GlobalMid_Sem -> GlobalMid_Lock
The comments have typos, fix that to not confuse readers.
Signed-off-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
Reviewed-by: Namjae Jeon <linkinjeon@kernel.org
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/smb/client/cifsglob.h')
-rw-r--r-- | fs/smb/client/cifsglob.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/smb/client/cifsglob.h b/fs/smb/client/cifsglob.h index 5c9b3e6cd95f..7ebe80a25d04 100644 --- a/fs/smb/client/cifsglob.h +++ b/fs/smb/client/cifsglob.h @@ -2017,9 +2017,9 @@ extern spinlock_t cifs_tcp_ses_lock; /* * Global transaction id (XID) information */ -extern unsigned int GlobalCurrentXid; /* protected by GlobalMid_Sem */ -extern unsigned int GlobalTotalActiveXid; /* prot by GlobalMid_Sem */ -extern unsigned int GlobalMaxActiveXid; /* prot by GlobalMid_Sem */ +extern unsigned int GlobalCurrentXid; /* protected by GlobalMid_Lock */ +extern unsigned int GlobalTotalActiveXid; /* prot by GlobalMid_Lock */ +extern unsigned int GlobalMaxActiveXid; /* prot by GlobalMid_Lock */ extern spinlock_t GlobalMid_Lock; /* protects above & list operations on midQ entries */ /* |