mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:44:45 +01:00
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>
This commit is contained in:
parent
ec68680411
commit
5e51224d2a
2 changed files with 6 additions and 6 deletions
|
|
@ -75,9 +75,9 @@ unsigned int sign_CIFS_PDUs = 1;
|
|||
/*
|
||||
* Global transaction id (XID) information
|
||||
*/
|
||||
unsigned int GlobalCurrentXid; /* protected by GlobalMid_Sem */
|
||||
unsigned int GlobalTotalActiveXid; /* prot by GlobalMid_Sem */
|
||||
unsigned int GlobalMaxActiveXid; /* prot by GlobalMid_Sem */
|
||||
unsigned int GlobalCurrentXid; /* protected by GlobalMid_Lock */
|
||||
unsigned int GlobalTotalActiveXid; /* prot by GlobalMid_Lock */
|
||||
unsigned int GlobalMaxActiveXid; /* prot by GlobalMid_Lock */
|
||||
spinlock_t GlobalMid_Lock; /* protects above & list operations on midQ entries */
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue