aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
diff options
context:
space:
mode:
authorPan Bian <bianpan2016@163.com>2018-11-21 21:07:12 -0500
committerJuergen Gross <jgross@suse.com>2018-11-29 11:53:33 -0500
commit975ef94a0284648fb0137bd5e949b18cef604e33 (patch)
treed1bb5234946209787b26a8d750572d7dcaffdec0 /drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
parent123664101aa2156d05251704fc63f9bcbf77741a (diff)
pvcalls-front: fixes incorrect error handling
kfree() is incorrectly used to release the pages allocated by __get_free_page() and __get_free_pages(). Use the matching deallocators i.e., free_page() and free_pages(), respectively. Signed-off-by: Pan Bian <bianpan2016@163.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c')
0 files changed, 0 insertions, 0 deletions
a269434d2fb4
6e837fb15241

f48b7399840b
a269434d2fb4
f48b7399840b
6e837fb15241

























dd8dbf2e6880
6e837fb15241
6e837fb15241

65c3f0a2d0f7
6e837fb15241

ed5215a21460
6e837fb15241




65c3f0a2d0f7

6e837fb15241






2bf49690325b
b782e0a68d17




6e837fb15241


65c3f0a2d0f7
67012e8209df


























d4131ded4d4c
6e837fb15241
















ed5215a21460
6e837fb15241



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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152