浏览代码

netpoll: Remove unused EXPORT_SYMBOLs of netpoll_poll and netpoll_poll_dev

Unused symbols waste space.

Commit 0e34e93177fb
"(netpoll: add generic support for bridge and bonding devices)"
added the symbol more than a year ago with the promise of "future use".

Because it is so far unused, remove it for now.
It can be easily readded if or when it actually needs to be used.

cc: WANG Cong <amwang@redhat.com>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Joe Perches 14 年之前
父节点
当前提交
234b921dbc
共有 2 个文件被更改,包括 2 次插入6 次删除
  1. 0 2
      include/linux/netpoll.h
  2. 2 4
      net/core/netpoll.c

+ 0 - 2
include/linux/netpoll.h

@@ -40,8 +40,6 @@ struct netpoll_info {
 	struct netpoll *netpoll;
 	struct netpoll *netpoll;
 };
 };
 
 
-void netpoll_poll_dev(struct net_device *dev);
-void netpoll_poll(struct netpoll *np);
 void netpoll_send_udp(struct netpoll *np, const char *msg, int len);
 void netpoll_send_udp(struct netpoll *np, const char *msg, int len);
 void netpoll_print_options(struct netpoll *np);
 void netpoll_print_options(struct netpoll *np);
 int netpoll_parse_options(struct netpoll *np, char *opt);
 int netpoll_parse_options(struct netpoll *np, char *opt);

+ 2 - 4
net/core/netpoll.c

@@ -177,7 +177,7 @@ static void service_arp_queue(struct netpoll_info *npi)
 	}
 	}
 }
 }
 
 
-void netpoll_poll_dev(struct net_device *dev)
+static void netpoll_poll_dev(struct net_device *dev)
 {
 {
 	const struct net_device_ops *ops;
 	const struct net_device_ops *ops;
 
 
@@ -208,13 +208,11 @@ void netpoll_poll_dev(struct net_device *dev)
 
 
 	zap_completion_queue();
 	zap_completion_queue();
 }
 }
-EXPORT_SYMBOL(netpoll_poll_dev);
 
 
-void netpoll_poll(struct netpoll *np)
+static void netpoll_poll(struct netpoll *np)
 {
 {
 	netpoll_poll_dev(np->dev);
 	netpoll_poll_dev(np->dev);
 }
 }
-EXPORT_SYMBOL(netpoll_poll);
 
 
 static void refill_skbs(void)
 static void refill_skbs(void)
 {
 {