We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a880bfc commit 26921d6Copy full SHA for 26921d6
arch/linux_x86_uio/dma_buffer_inc.c
@@ -863,7 +863,11 @@ DMABuffer_free
863
}
864
865
if(munlock(buffer->map, buffer->length) != 0)
866
- { ERROR_EXIT( errno, exit, "Buffer unlocking failed!\n" ); }
+ {
867
+ // report, but continue with release procedure even if unlock fails
868
+ //ERROR_EXIT( errno, exit, "Buffer unlocking failed!\n" );
869
+ ERROR( errno, "Buffer unlocking failed!\n" );}
870
+ }
871
872
buffer->map = MAP_FAILED;
873
persistant = PDA_DELETE;
0 commit comments