datapath: fix drvinfo strings set in drivers
authorJiri Pirko <jiri@resnulli.us>
Fri, 15 Mar 2013 00:36:37 +0000 (17:36 -0700)
committerJesse Gross <jesse@nicira.com>
Fri, 15 Mar 2013 00:36:37 +0000 (17:36 -0700)
Use strlcpy where possible to ensure the string is \0 terminated.
Use always sizeof(string) instead of 32, ETHTOOL_BUSINFO_LEN
and custom defines.
Use snprintf instead of sprint.
Remove unnecessary inits of ->fw_version
Remove unnecessary inits of drvinfo struct.

Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Jesse Gross <jesse@nicira.com>
datapath/vport-internal_dev.c

index a5f2d75..78f1a52 100644 (file)
@@ -115,7 +115,7 @@ static int internal_dev_stop(struct net_device *netdev)
 static void internal_dev_getinfo(struct net_device *netdev,
                                 struct ethtool_drvinfo *info)
 {
-       strcpy(info->driver, "openvswitch");
+       strlcpy(info->driver, "openvswitch", sizeof(info->driver));
 }
 
 static const struct ethtool_ops internal_dev_ethtool_ops = {