projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3464645
)
xen-netback: make ops structs const
author
stephen hemminger
<
[email protected]
>
Wed, 4 Jan 2012 11:56:58 +0000
(11:56 +0000)
committer
David S. Miller
<
[email protected]
>
Thu, 5 Jan 2012 18:23:00 +0000
(13:23 -0500)
All tables of function pointers should be const to make hacks
more difficult. Compile tested only.
Signed-off-by: Stephen Hemminger <
[email protected]
>
Acked-by: Ian Campbell <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/xen-netback/interface.c
patch
|
blob
|
history
diff --git
a/drivers/net/xen-netback/interface.c
b/drivers/net/xen-netback/interface.c
index 0b5c18feb3038284316ba4dd76cc37d7a36cc727..b7d41f8c338a8372cea8bfe6649386c6a0d8b090 100644
(file)
--- a/
drivers/net/xen-netback/interface.c
+++ b/
drivers/net/xen-netback/interface.c
@@
-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,