• Thomas Hellstrom's avatar
    drm/ttm/radeon/nouveau: Kill the bo lock in favour of a bo device fence_lock · 702adba2
    Thomas Hellstrom authored
    The bo lock used only to protect the bo sync object members, and since it
    is a per bo lock, fencing a buffer list will see a lot of locks and unlocks.
    Replace it with a per-device lock that protects the sync object members on
    *all* bos. Reading and setting these members will always be very quick, so
    the risc of heavy lock contention is microscopic. Note that waiting for
    sync objects will always take place outside of this lock.
    
    The bo device fence lock will eventually be replaced with a seqlock /
    rcu mechanism so we can determine that a bo is idle under a
    rcu / read seqlock.
    
    However this change will allow us to batch fencing and unreserving of
    buffers with a minimal amount of locking.
    Signed-off-by: default avatarThomas Hellstrom <thellstrom@vmware.com>
    Reviewed-by: default avatarJerome Glisse <j.glisse@gmail.com>
    Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
    702adba2
nouveau_gem.c 21.1 KB