diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-17 21:16:47 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-17 21:16:47 -0700 |
commit | a8f155855842f04273666192d3767fa9b94aaa58 (patch) | |
tree | 396180e8db3ac132195feca3f531defaf7d6d3ff /arch/alpha/lib/udelay.c | |
parent | 8e64a7331702b7888ccf84b2b9ff46ab8e167c7f (diff) | |
parent | 28c553d0aa0acf02e18f9e008661491a4b996595 (diff) |
Merge branch 'akpm' (patches from Andrew)
Merge misc fixes from ANdrew Morton:
"8 fixes"
* emailed patches from Andrew Morton <akpm@linux-foundation.org>:
revert "mm: make sure all file VMAs have ->vm_ops set"
MAINTAINERS: update LTP mailing list
userfaultfd: add missing mmput() in error path
lib/string_helpers.c: fix infinite loop in string_get_size()
alpha: lib: export __delay
alpha: io: define ioremap_uc
kasan: fix last shadow judgement in memory_is_poisoned_16()
zram: fix possible use after free in zcomp_create()
Diffstat (limited to 'arch/alpha/lib/udelay.c')
-rw-r--r-- | arch/alpha/lib/udelay.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/alpha/lib/udelay.c b/arch/alpha/lib/udelay.c index 69d52aa37bae2..f2d81ff38aa64 100644 --- a/arch/alpha/lib/udelay.c +++ b/arch/alpha/lib/udelay.c @@ -30,6 +30,7 @@ __delay(int loops) " bgt %0,1b" : "=&r" (tmp), "=r" (loops) : "1"(loops)); } +EXPORT_SYMBOL(__delay); #ifdef CONFIG_SMP #define LPJ cpu_data[smp_processor_id()].loops_per_jiffy |