]> git.baikalelectronics.ru Git - kernel.git/commit
gve: Fix an error handling path in 'gve_probe()'
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Thu, 1 Jul 2021 20:18:24 +0000 (22:18 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 1 Jul 2021 22:45:01 +0000 (15:45 -0700)
commit66a4a60d8072d61408d2f7929eb8f9f889653e68
tree3aa3b394c9a631650770f21fa827ae14bd0bb10a
parent046a977ad0a9d487b8fab4c08f889457186aa98e
gve: Fix an error handling path in 'gve_probe()'

If the 'register_netdev() call fails, we must release the resources
allocated by the previous 'gve_init_priv()' call, as already done in the
remove function.

Add a new label and the missing 'gve_teardown_priv_resources()' in the
error handling path.

Fixes: 0fb435173bd4 ("gve: Add basic driver framework for Compute Engine Virtual NIC")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Catherine Sullivan <csully@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/google/gve/gve_main.c