#include #include #include #include #ifndef MLOCK_ONFAULT #define MLOCK_ONFAULT 1 #endif #ifndef MCL_ONFAULT #define MCL_ONFAULT (MCL_FUTURE << 1) #endif static int mlock2_(void *start, size_t len, int flags) { #ifdef __NR_mlock2 return syscall(__NR_mlock2, start, len, flags); #else errno = ENOSYS; return -1; #endif } static FILE *seek_to_smaps_entry(unsigned long addr) { FILE *file; char *line = NULL; size_t size = 0; unsigned long start, end; char perms[5]; unsigned long offset; char dev[32]; unsigned long inode; char path[BUFSIZ]; file = fopen("/proc/self/smaps", "r"); if (!file) { perror("fopen smaps"); _exit(1); } while (getline(&line, &size, file) > 0) { if (sscanf(line, "%lx-%lx %s %lx %s %lu %s\n", &start, &end, perms, &offset, dev, &inode, path) < 6) goto next; if (start <= addr && addr < end) goto out; next: free(line); line = NULL; size = 0; } fclose(file); file = NULL; out: free(line); return file; } 4998f78b0c8'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-12-11 10:17:39 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-11 10:17:39 -0800
commit2e4333c14de06a333783d6812cf3c4998f78b0c8 (patch)
tree368428514d70f34f2261c7f954f241f886d6bb51 /sound/aoa/Kconfig
parent045169816b31b10faed984b01c390db1b32ee4c1 (diff)
parentba735155b9647b6167fd50276ca0fbfbce4e836c (diff)
Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
Pull MIPS fixes from Ralf Baechle: "Two more MIPS fixes for 4.9: - RTC: Return -ENODEV so an external RTC will be tried - Fix mask of GPE frequency These two have been tested on Imagination's automated test system and also both received positive reviews on the linux-mips mailing list" * 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus: MIPS: Lantiq: Fix mask of GPE frequency MIPS: Return -ENODEV from weak implementation of rtc_mips_set_time
Diffstat (limited to 'sound/aoa/Kconfig')