aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2018-09-02 00:01:28 -0400
committerThomas Gleixner <tglx@linutronix.de>2018-09-02 05:24:41 -0400
commitff924c5a1ec7548825cc2d07980b03be4224ffac (patch)
tree47ab63752ad828515a4ce500c4677a54bd9d9c53 /drivers/gpu/drm/amd/amdgpu
parente78e5a91456fcecaa2efbb3706572fe043766f4d (diff)
x86/pti: Fix section mismatch warning/error
Fix the section mismatch warning in arch/x86/mm/pti.c: WARNING: vmlinux.o(.text+0x6972a): Section mismatch in reference from the function pti_clone_pgtable() to the function .init.text:pti_user_pagetable_walk_pte() The function pti_clone_pgtable() references the function __init pti_user_pagetable_walk_pte(). This is often because pti_clone_pgtable lacks a __init annotation or the annotation of pti_user_pagetable_walk_pte is wrong. FATAL: modpost: Section mismatches detected. Fixes: 85900ea51577 ("x86/pti: Map the vsyscall page if needed") Reported-by: kbuild test robot <lkp@intel.com> Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Andy Lutomirski <luto@kernel.org> Link: https://lkml.kernel.org/r/43a6d6a3-d69d-5eda-da09-0b1c88215a2a@infradead.org
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu')
0 files changed, 0 insertions, 0 deletions
whitespace cleanup' href='/cgit/cgit.cgi/litmus-rt-budgetable-locks.git/.git/commit/include/linux/atmlec.h?h=update_litmus_2019&id=1c9d3e72a7164c590437f2ab6c2c4f6da91f1703'>1c9d3e72a716
1da177e4c3f4



1c9d3e72a716

1da177e4c3f4




1c9d3e72a716















1da177e4c3f4




1c9d3e72a716










1da177e4c3f4
1c9d3e72a716
1da177e4c3f4
1c9d3e72a716















9adfbfb61130

1c9d3e72a716






1da177e4c3f4


1c9d3e72a716


1da177e4c3f4

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98