Skip to content

Commit

Permalink
qeth: Clarify card type naming for virtual NICs
Browse files Browse the repository at this point in the history
So far, virtual NICs whether attached to a VSWITCH or a guest LAN were always
displayed as guest LANs in the device driver attributes and messages, while
in fact it is a virtual NIC.

Signed-off-by: Stefan Raspl <raspl@linux.vnet.ibm.com>
Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com>
Reviewed-by: Ursula Braun <ursula.braun@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Stefan Raspl authored and David S. Miller committed Nov 19, 2012
1 parent 569743e commit 7096b18
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions drivers/s390/net/qeth_core_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ static inline const char *qeth_get_cardname(struct qeth_card *card)
if (card->info.guestlan) {
switch (card->info.type) {
case QETH_CARD_TYPE_OSD:
return " Guest LAN QDIO";
return " Virtual NIC QDIO";
case QETH_CARD_TYPE_IQD:
return " Guest LAN Hiper";
return " Virtual NIC Hiper";
case QETH_CARD_TYPE_OSM:
return " Guest LAN QDIO - OSM";
return " Virtual NIC QDIO - OSM";
case QETH_CARD_TYPE_OSX:
return " Guest LAN QDIO - OSX";
return " Virtual NIC QDIO - OSX";
default:
return " unknown";
}
Expand Down Expand Up @@ -108,13 +108,13 @@ const char *qeth_get_cardname_short(struct qeth_card *card)
if (card->info.guestlan) {
switch (card->info.type) {
case QETH_CARD_TYPE_OSD:
return "GuestLAN QDIO";
return "Virt.NIC QDIO";
case QETH_CARD_TYPE_IQD:
return "GuestLAN Hiper";
return "Virt.NIC Hiper";
case QETH_CARD_TYPE_OSM:
return "GuestLAN OSM";
return "Virt.NIC OSM";
case QETH_CARD_TYPE_OSX:
return "GuestLAN OSX";
return "Virt.NIC OSX";
default:
return "unknown";
}
Expand Down

0 comments on commit 7096b18

Please sign in to comment.