gve: Fix error return code in gve_alloc_qpls()
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.
Fixes: f5cedc84a3
("gve: Add transmit and receive support")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ad7b134f65
commit
877cb240f6
|
@ -625,8 +625,10 @@ static int gve_alloc_qpls(struct gve_priv *priv)
|
|||
sizeof(unsigned long) * BITS_PER_BYTE;
|
||||
priv->qpl_cfg.qpl_id_map = kvzalloc(BITS_TO_LONGS(num_qpls) *
|
||||
sizeof(unsigned long), GFP_KERNEL);
|
||||
if (!priv->qpl_cfg.qpl_id_map)
|
||||
if (!priv->qpl_cfg.qpl_id_map) {
|
||||
err = -ENOMEM;
|
||||
goto free_qpls;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue