ofproto: Consistently use netdev's name instead of ofp_phy_port name.
authorBen Pfaff <blp@nicira.com>
Wed, 20 Apr 2011 20:03:45 +0000 (13:03 -0700)
committerBen Pfaff <blp@nicira.com>
Thu, 21 Apr 2011 19:24:24 +0000 (12:24 -0700)
commit1264ec9565831adcc12a80133433034ddfdb6ead
treed28c4e4d9ee18519a6d8b2dc8c940b7ffb94f1cf
parent2cb351e85130f919418216fc59ceecb3e6271ee2
ofproto: Consistently use netdev's name instead of ofp_phy_port name.

There are at least two ways to get an ofport's name: from the netdev using
netdev_get_name() or from the ofp_phy_port's 'name' member.  Some code used
one, some used the other.  This switches all relevant code to use only
netdev_get_name(), because the 'name' member in ofp_phy_port is
fixed-length and thus a long name could be truncated.

This isn't a problem under Linux since the maximum length of a network
device's name under Linux is the same as the field width in ofp_phy_port.
ofproto/ofproto.c