mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
net/mlx5_core: Fix a bug in alloc_token
In alloc_token(), the token '1' would be allocated twice consecutively. Signed-off-by: Achiad Shochat <achiad@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com> Signed-off-by: Eli Cohen <eli@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
21db507439
commit
4cbdd27c9c
@ -125,7 +125,10 @@ static u8 alloc_token(struct mlx5_cmd *cmd)
|
||||
u8 token;
|
||||
|
||||
spin_lock(&cmd->token_lock);
|
||||
token = cmd->token++ % 255 + 1;
|
||||
cmd->token++;
|
||||
if (cmd->token == 0)
|
||||
cmd->token++;
|
||||
token = cmd->token;
|
||||
spin_unlock(&cmd->token_lock);
|
||||
|
||||
return token;
|
||||
|
Loading…
Reference in New Issue
Block a user