<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" text="#000000">
When playing a certain game (Vagrant Stories) in the pcsx
Playstation emulator, i get the reproducible error message<br>
<br>
<i>File radeon_dma.c function r200_radeonReleaseDmaRegions line 371</i><i><br>
</i><i>Leaking dma buffer object!</i><br>
<br>
in the terminal/console.<br>
<br>
The piece of code is:<br>
<br>
/* move waiting bos to free list.<br>
wait list provides gpu time to handle data before reuse */<br>
foreach_s(dma_bo, temp, &rmesa->dma.wait) {<br>
if (dma_bo->expire_counter == time) {<br>
WARN_ONCE("Leaking dma buffer object!\n");<br>
radeon_bo_unref(dma_bo->bo);<br>
remove_from_list(dma_bo);<br>
free(dma_bo);<br>
continue;<br>
}<br>
<br>
in file src/mesa/drivers/dri/r200/radeon_dma.c. That's mesa 10.1.6
from git, kernel 3.18.9 on a Mac mini G4.<br>
<br>
Any suggestions ? Is this a serious bug or just a little annoyance ?
The game continues without problems after the error message.<br>
</body>
</html>