From: Rahul Lakkireddy <rahul.lakkire...@chelsio.com> Date: Thu, 12 Oct 2017 13:54:37 +0530
> This series of patches add support to collect hardware debug logs > via ethtool --get-dump facility. There is a lot of global namespace pollution added by these changes. A lot of the global symbols you add in this new code have very poorly namespaced names like "collect_mem_info()" If the driver is built statically into the kernel this will pollute the global namespace and conflict with any symbols elsewhere in the kernel that have the same name. So please use a proper "cxgb4_" or similar prefix for any non-static symbols in the driver. Thank you.