1 // SPDX-License-Identifier: GPL-2.0
10 int arch__fix_module_text_start(u64
*start
, const char *name
)
15 snprintf(path
, PATH_MAX
, "module/%.*s/sections/.text",
16 (int)strlen(name
) - 2, name
+ 1);
17 if (sysfs__read_ull(path
, (unsigned long long *)start
) < 0) {
18 pr_debug2("Using module %s start:%#lx\n", path
, m_start
);