We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 658743a commit 90a2d40Copy full SHA for 90a2d40
1 file changed
drivers/gpu/drm/asahi/buffer.rs
@@ -746,12 +746,12 @@ impl slotalloc::SlotItem for BufferSlotInner::ver {
746
type Data = BufferManagerInner::ver;
747
748
fn release(&mut self, data: &mut Self::Data, slot: u32) {
749
- mod_pr_debug!("EventManager: Released slot {}\n", slot);
+ mod_pr_debug!("BufferManager: Released slot {}\n", slot);
750
data.owners[slot as usize] = None;
751
}
752
753
754
-/// Inner data for the event manager, to be protected by the SlotAllocator lock.
+/// Inner data for the buffer manager, to be protected by the SlotAllocator lock.
755
#[versions(AGX)]
756
pub(crate) struct BufferManagerInner {
757
owners: KVec<Option<Buffer::ver>>,
0 commit comments