mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 01:20:52 +07:00
gve: fix the wrong AdminQ buffer overflow check
[ Upstream commit 63a9192b8fa1ea55efeba1f18fad52bb24d9bf12 ]
The 'tail' pointer is also free-running count, so it needs to be masked
as 'adminq_prod_cnt' does, to become an index value of AdminQ buffer.
Fixes: 5cdad90de6
("gve: Batch AQ commands for creating and destroying queues.")
Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
Reviewed-by: Catherine Sullivan <csully@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
4be831f3de
commit
8053b0b490
@ -182,7 +182,8 @@ static int gve_adminq_issue_cmd(struct gve_priv *priv,
|
||||
tail = ioread32be(&priv->reg_bar0->adminq_event_counter);
|
||||
|
||||
// Check if next command will overflow the buffer.
|
||||
if (((priv->adminq_prod_cnt + 1) & priv->adminq_mask) == tail) {
|
||||
if (((priv->adminq_prod_cnt + 1) & priv->adminq_mask) ==
|
||||
(tail & priv->adminq_mask)) {
|
||||
int err;
|
||||
|
||||
// Flush existing commands to make room.
|
||||
@ -192,7 +193,8 @@ static int gve_adminq_issue_cmd(struct gve_priv *priv,
|
||||
|
||||
// Retry.
|
||||
tail = ioread32be(&priv->reg_bar0->adminq_event_counter);
|
||||
if (((priv->adminq_prod_cnt + 1) & priv->adminq_mask) == tail) {
|
||||
if (((priv->adminq_prod_cnt + 1) & priv->adminq_mask) ==
|
||||
(tail & priv->adminq_mask)) {
|
||||
// This should never happen. We just flushed the
|
||||
// command queue so there should be enough space.
|
||||
return -ENOMEM;
|
||||
|
Loading…
Reference in New Issue
Block a user