• wm4's avatar
    lavu: fix memory leaks by using a mutex instead of atomics · fbd6c97f
    wm4 authored
    
    
    The buffer pool has to atomically add and remove entries from the linked
    list of available buffers. This was done by removing the entire list
    with a CAS operation, working on it, and then setting it back again
    (using a retry-loop in case another thread was doing the same thing).
    
    This could effectively cause memory leaks: while a thread was working on
    the buffer list, other threads would allocate new buffers, increasing
    the pool's total size. There was no real leak, but since these extra
    buffers were not needed, but not free'd either (except when the buffer
    pool was destroyed), this had the same effects as a real leak. For some
    reason, growth was exponential, and could easily kill the process due
    to OOM in real-world uses.
    
    Fix this by using a mutex to protect the list operations. The fancy
    way atomics remove the whole list to work on it is not needed anymore,
    which also avoids the situation which was causing the leak.
    
    Signed-off-by: default avatarAnton Khirnov <anton@khirnov.net>
    fbd6c97f