mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
igb: Remove goto
The goto is a bit confusing as it changes the control flow only if L4 protocol is not recognized. It is also different from e1000e, and noisy when comparing e1000e and igb. Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> Reviewed-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
d5241351bd
commit
a09cc21e80
1 changed files with 1 additions and 1 deletions
|
@ -1297,7 +1297,7 @@ igb_build_rx_metadata(IGBCore *core,
|
|||
break;
|
||||
|
||||
default:
|
||||
goto func_exit;
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
trace_e1000e_rx_metadata_l4_cso_disabled();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue