We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d1887e commit 9433f3dCopy full SHA for 9433f3d
1 file changed
drivers/gpu/drm/asahi/alloc.rs
@@ -870,8 +870,11 @@ impl HeapAllocator {
870
new_top
871
);
872
873
- self.mm
874
- .with_inner(|inner| inner.backing_objects.try_push((obj, mapping, gpu_ptr)))?;
+ self.mm.with_inner(|inner| {
+ inner
875
+ .backing_objects
876
+ .push((obj, mapping, gpu_ptr), GFP_KERNEL)
877
+ })?;
878
879
self.top = new_top;
880
0 commit comments