net: Fix hotplug with pci_add
authorAmit Shah <amit.shah@redhat.com>
Tue, 8 Jun 2010 15:43:58 +0000 (21:13 +0530)
committerMichael S. Tsirkin <mst@redhat.com>
Wed, 9 Jun 2010 09:58:55 +0000 (12:58 +0300)
commitc77a3526aae5170df3be54149b630cd3247a2e1c
tree5d4b1a7c353857bcb22ac48e5e640bd4dfc8c16d
parent6e85af9b5b8f05fc18fe9f60326de675065d18df
net: Fix hotplug with pci_add

The correct model type wasn't getting added when hotplugging nics with
pci_add.

Testcase: start VM with default nic type. In the qemu_monitor:

(qemu) pci_add auto nic model=virtio

This results in a nic hot-plug of the same nic type as the default.

This was broken in 5294e2c774f120e10b44652ac143abda356f44eb

Also changes the behaviour where no .init is defined for a
net_client_type. Previously, 0 was returned, which indicated the init
was successful and that 0 was the index into the nd_tables[] array.
Return -1, indicating unsuccessful init, in such a case.

Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
net.c