[10/28] uprobes.h: move declarations to uprobes_types.h
Commit Message
By providing declarations in a lean header, we can reduce header
dependencies.
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
---
arch/arm64/kernel/signal.c | 1 +
include/linux/mm_types.h | 2 +-
include/linux/uprobes.h | 10 +---------
include/linux/uprobes_types.h | 25 +++++++++++++++++++++++++
kernel/entry/common.c | 1 +
kernel/trace/bpf_trace.c | 1 +
mm/memory.c | 1 +
7 files changed, 31 insertions(+), 10 deletions(-)
create mode 100644 include/linux/uprobes_types.h
Comments
Hi Max,
kernel test robot noticed the following build errors:
[auto build test ERROR on next-20240131]
[cannot apply to mkp-scsi/for-next jejb-scsi/for-next axboe-block/for-next linus/master v6.8-rc2 v6.8-rc1 v6.7 v6.8-rc2]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Max-Kellermann/include-add-missing-includes/20240131-231042
base: next-20240131
patch link: https://lore.kernel.org/r/20240131145008.1345531-11-max.kellermann%40ionos.com
patch subject: [PATCH 10/28] uprobes.h: move declarations to uprobes_types.h
config: csky-allnoconfig (https://download.01.org/0day-ci/archive/20240203/202402030843.CUng9PM7-lkp@intel.com/config)
compiler: csky-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240203/202402030843.CUng9PM7-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202402030843.CUng9PM7-lkp@intel.com/
All errors (new ones prefixed by >>):
arch/csky/kernel/signal.c: In function 'do_notify_resume':
>> arch/csky/kernel/signal.c:259:17: error: implicit declaration of function 'uprobe_notify_resume'; did you mean 'do_notify_resume'? [-Werror=implicit-function-declaration]
259 | uprobe_notify_resume(regs);
| ^~~~~~~~~~~~~~~~~~~~
| do_notify_resume
cc1: some warnings being treated as errors
vim +259 arch/csky/kernel/signal.c
e9564df753fd54 Guo Ren 2018-09-05 250
e9564df753fd54 Guo Ren 2018-09-05 251 /*
bf241682936293 Guo Ren 2019-04-01 252 * notification of userspace execution resumption
bf241682936293 Guo Ren 2019-04-01 253 * - triggered by the _TIF_WORK_MASK flags
e9564df753fd54 Guo Ren 2018-09-05 254 */
bf241682936293 Guo Ren 2019-04-01 255 asmlinkage void do_notify_resume(struct pt_regs *regs,
bf241682936293 Guo Ren 2019-04-01 256 unsigned long thread_info_flags)
e9564df753fd54 Guo Ren 2018-09-05 257 {
8f6bb793b2be82 Guo Ren 2020-04-02 258 if (thread_info_flags & _TIF_UPROBE)
8f6bb793b2be82 Guo Ren 2020-04-02 @259 uprobe_notify_resume(regs);
@@ -14,6 +14,7 @@
#include <linux/freezer.h>
#include <linux/stddef.h>
#include <linux/uaccess.h>
+#include <linux/uprobes.h>
#include <linux/sizes.h>
#include <linux/string.h>
#include <linux/resume_user_mode.h>
@@ -12,7 +12,7 @@
#include <linux/maple_tree_types.h>
#include <linux/rwsem_types.h>
#include <linux/cpumask.h>
-#include <linux/uprobes.h>
+#include <linux/uprobes_types.h>
#include <linux/rcupdate.h>
#include <linux/page-flags-layout.h>
#include <linux/workqueue_types.h>
@@ -11,6 +11,7 @@
* Copyright (C) 2011-2012 Red Hat, Inc., Peter Zijlstra
*/
+#include <linux/uprobes_types.h>
#include <linux/errno.h>
#include <linux/types.h>
@@ -94,12 +95,6 @@ enum rp_check {
RP_CHECK_RET,
};
-struct xol_area;
-
-struct uprobes_state {
- struct xol_area *xol_area;
-};
-
extern void __init uprobes_init(void);
extern int set_swbp(struct arch_uprobe *aup, struct mm_struct *mm, unsigned long vaddr);
extern int set_orig_insn(struct arch_uprobe *aup, struct mm_struct *mm, unsigned long vaddr);
@@ -137,9 +132,6 @@ extern bool arch_uprobe_ignore(struct arch_uprobe *aup, struct pt_regs *regs);
extern void arch_uprobe_copy_ixol(struct page *page, unsigned long vaddr,
void *src, unsigned long len);
#else /* !CONFIG_UPROBES */
-struct uprobes_state {
-};
-
static inline void uprobes_init(void)
{
}
new file mode 100644
@@ -0,0 +1,25 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+#ifndef _LINUX_UPROBES_TYPES_H
+#define _LINUX_UPROBES_TYPES_H
+/*
+ * User-space Probes (UProbes)
+ *
+ * Copyright (C) IBM Corporation, 2008-2012
+ * Authors:
+ * Srikar Dronamraju
+ * Jim Keniston
+ * Copyright (C) 2011-2012 Red Hat, Inc., Peter Zijlstra
+ */
+
+#ifdef CONFIG_UPROBES
+
+struct xol_area;
+
+struct uprobes_state {
+ struct xol_area *xol_area;
+};
+#else /* !CONFIG_UPROBES */
+struct uprobes_state {
+};
+#endif /* !CONFIG_UPROBES */
+#endif /* _LINUX_UPROBES_TYPES_H */
@@ -9,6 +9,7 @@
#include <linux/livepatch.h>
#include <linux/audit.h>
#include <linux/tick.h>
+#include <linux/uprobes.h>
#include "common.h"
@@ -11,6 +11,7 @@
#include <linux/btf.h>
#include <linux/filter.h>
#include <linux/uaccess.h>
+#include <linux/uprobes.h>
#include <linux/ctype.h>
#include <linux/kprobes.h>
#include <linux/spinlock.h>
@@ -70,6 +70,7 @@
#include <linux/string.h>
#include <linux/memory-tiers.h>
#include <linux/debugfs.h>
+#include <linux/uprobes.h>
#include <linux/userfaultfd_k.h>
#include <linux/dax.h>
#include <linux/oom.h>