summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/crash_dump.h4
-rw-r--r--include/linux/smp.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/crash_dump.h b/include/linux/crash_dump.h
index 3e4ba9d753c8..f774c5eb9e3c 100644
--- a/include/linux/crash_dump.h
+++ b/include/linux/crash_dump.h
@@ -26,6 +26,10 @@ extern int remap_oldmem_pfn_range(struct vm_area_struct *vma,
26 26
27extern ssize_t copy_oldmem_page(unsigned long, char *, size_t, 27extern ssize_t copy_oldmem_page(unsigned long, char *, size_t,
28 unsigned long, int); 28 unsigned long, int);
29extern ssize_t copy_oldmem_page_encrypted(unsigned long pfn, char *buf,
30 size_t csize, unsigned long offset,
31 int userbuf);
32
29void vmcore_cleanup(void); 33void vmcore_cleanup(void);
30 34
31/* Architecture code defines this if there are other possible ELF 35/* Architecture code defines this if there are other possible ELF
diff --git a/include/linux/smp.h b/include/linux/smp.h
index 9fb239e12b82..a56f08ff3097 100644
--- a/include/linux/smp.h
+++ b/include/linux/smp.h
@@ -53,6 +53,10 @@ void on_each_cpu_cond(bool (*cond_func)(int cpu, void *info),
53 smp_call_func_t func, void *info, bool wait, 53 smp_call_func_t func, void *info, bool wait,
54 gfp_t gfp_flags); 54 gfp_t gfp_flags);
55 55
56void on_each_cpu_cond_mask(bool (*cond_func)(int cpu, void *info),
57 smp_call_func_t func, void *info, bool wait,
58 gfp_t gfp_flags, const struct cpumask *mask);
59
56int smp_call_function_single_async(int cpu, call_single_data_t *csd); 60int smp_call_function_single_async(int cpu, call_single_data_t *csd);
57 61
58#ifdef CONFIG_SMP 62#ifdef CONFIG_SMP