When you guys go on these "make needlessly global code static" kicks you should maybe consider that even functions that aren't currently used by any other area of the tree might be useful for module writers.
Instead of just checking which functions are currently used by other parts of the kernel perhaps you should think about what makes a logical API and stick to that, even if not all of the functions are currently used. In the case of net/core/datagram.c, why make skb_copy_datagram private but leave skb_copy_datagram_iovec global? If the latter is a useful public function why not the former? In particular vmware used skb_copy_datagram. So 2.6.11 broke vmware for no good reason. <[EMAIL PROTECTED]> [NET]: misc cleanups The patch below contains the following cleanups: - make needlessly global code static - remove the following unused global functions: - datagram.c: skb_copy_datagram - iovec.c: memcpy_tokerneliovec - remove the following unneeded EXPORT_SYMBOL's: - datagram.c: skb_copy_datagram - dev.c: ing_filter - iovec.c: memcpy_tokerneliovec - netpoll.c: netpoll_send_skb - rtnetlink.c: rtnetlink_dump_ifinfo - sock.c: sock_alloc_send_pskb Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Signed-off-by: David S. Miller <[EMAIL PROTECTED]> -- greg - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/