aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@kernel.org>2020-09-04 11:54:52 -0700
committerPaul E. McKenney <paulmck@kernel.org>2020-09-04 11:54:52 -0700
commit6fe208f63a79f4f726f3be2b78ea3dd40487b657 (patch)
tree1b826243b70f09e101081d5ea6dd59aa37fe25a9 /include
parentMerge branch 'strictgp.2020.08.24a' into HEAD (diff)
parentsmp: Make symbol 'csd_bug_count' static (diff)
downloadlinux-dev-6fe208f63a79f4f726f3be2b78ea3dd40487b657.tar.xz
linux-dev-6fe208f63a79f4f726f3be2b78ea3dd40487b657.zip
Merge branch 'csd.2020.09.04a' into HEAD
csd.2020.09.04a: CPU smp_call_function() torture tests.
Diffstat (limited to 'include')
-rw-r--r--include/linux/smp.h3
-rw-r--r--include/linux/smp_types.h3
2 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/smp.h b/include/linux/smp.h
index 80d557ef8a11..9f13966d3d92 100644
--- a/include/linux/smp.h
+++ b/include/linux/smp.h
@@ -26,6 +26,9 @@ struct __call_single_data {
struct {
struct llist_node llist;
unsigned int flags;
+#ifdef CONFIG_64BIT
+ u16 src, dst;
+#endif
};
};
smp_call_func_t func;
diff --git a/include/linux/smp_types.h b/include/linux/smp_types.h
index 364b3ae3e41d..2e8461af8df6 100644
--- a/include/linux/smp_types.h
+++ b/include/linux/smp_types.h
@@ -61,6 +61,9 @@ struct __call_single_node {
unsigned int u_flags;
atomic_t a_flags;
};
+#ifdef CONFIG_64BIT
+ u16 src, dst;
+#endif
};
#endif /* __LINUX_SMP_TYPES_H */