Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 813abbba authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller
Browse files

xen-netback: make ops structs const



All tables of function pointers should be const to make hacks
more difficult. Compile tested only.

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Acked-by: default avatarIan Campbell <ian.campbell@citrix.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3464645a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -223,7 +223,7 @@ static void xenvif_get_strings(struct net_device *dev, u32 stringset, u8 * data)
	}
}

static struct ethtool_ops xenvif_ethtool_ops = {
static const struct ethtool_ops xenvif_ethtool_ops = {
	.get_link	= ethtool_op_get_link,

	.get_sset_count = xenvif_get_sset_count,
@@ -231,7 +231,7 @@ static struct ethtool_ops xenvif_ethtool_ops = {
	.get_strings = xenvif_get_strings,
};

static struct net_device_ops xenvif_netdev_ops = {
static const struct net_device_ops xenvif_netdev_ops = {
	.ndo_start_xmit	= xenvif_start_xmit,
	.ndo_get_stats	= xenvif_get_stats,
	.ndo_open	= xenvif_open,