perf tools: Remove is_kmodule_extension function
Because it's no longer needed. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-bb84vlg76t78q8y8fdeed2qn@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:

committed by
Arnaldo Carvalho de Melo

parent
e746b3ea0d
commit
907fb509f0
@@ -165,17 +165,6 @@ bool is_supported_compression(const char *ext)
|
||||
return false;
|
||||
}
|
||||
|
||||
bool is_kmodule_extension(const char *ext)
|
||||
{
|
||||
if (strncmp(ext, "ko", 2))
|
||||
return false;
|
||||
|
||||
if (ext[2] == '\0' || (ext[2] == '.' && is_supported_compression(ext+3)))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool is_kernel_module(const char *pathname)
|
||||
{
|
||||
struct kmod_path m;
|
||||
|
Reference in New Issue
Block a user