pc-bios/s390-ccw/net: Split up net_load() into init, load and release parts
commit0c18822953011ec0a3038c8a5eca1803b72a213e
authorThomas Huth <thuth@redhat.com>
Tue, 17 Apr 2018 05:36:10 +0000 (17 07:36 +0200)
committerThomas Huth <thuth@redhat.com>
Wed, 2 May 2018 09:27:14 +0000 (2 11:27 +0200)
treed184968a60f345343c40edbe14494bfe8682a172
parent622b39178057289a1c8c1b5148f513e658e90ea1
pc-bios/s390-ccw/net: Split up net_load() into init, load and release parts

When we want to support pxelinux-style network booting later, we've got
to do several TFTP transfers - and we do not want to apply for a new IP
address via DHCP each time. So split up net_load into three parts:

1. net_init(), which initializes virtio-net, gets an IP address via DHCP
   and prints out the related information.

2. The tftp_load call is now moved directly into the main() function

3. A new net_release() function which should tear down the network stack
   before we are done in the firmware.

This will make it easier to extend the code in the next patches.

Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
pc-bios/s390-ccw/netmain.c