cregit-Linux how code gets into the kernel

Release 4.10 tools/perf/arch/s390/util/machine.c

#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include "util.h"
#include "machine.h"
#include "api/fs/fs.h"


int arch__fix_module_text_start(u64 *start, const char *name) { char path[PATH_MAX]; snprintf(path, PATH_MAX, "module/%.*s/sections/.text", (int)strlen(name) - 2, name + 1); if (sysfs__read_ull(path, (unsigned long long *)start) < 0) return -1; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
song shan gongsong shan gong67100.00%1100.00%
Total67100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
song shan gongsong shan gong85100.00%1100.00%
Total85100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.