Skip to content
Snippets Groups Projects
  1. Mar 17, 2020
    • Stefan Hajnoczi's avatar
      lockable: add QemuRecMutex support · ac90871c
      Stefan Hajnoczi authored
      
      The polymorphic locking macros don't support QemuRecMutex yet.  Add it
      so that lock guards can be used with QemuRecMutex.
      
      Convert TCG plugins functions that benefit from these macros.  Manual
      qemu_rec_mutex_lock/unlock() callers are left unmodified in cases where
      clarity would not improve by switching to the macros.
      
      Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      ac90871c
    • Stefan Hajnoczi's avatar
      lockable: add lock guards · 3284c3dd
      Stefan Hajnoczi authored
      
      This patch introduces two lock guard macros that automatically unlock a
      lock object (QemuMutex and others):
      
        void f(void) {
            QEMU_LOCK_GUARD(&mutex);
            if (!may_fail()) {
                return; /* automatically unlocks mutex */
            }
            ...
        }
      
      and:
      
        WITH_QEMU_LOCK_GUARD(&mutex) {
            if (!may_fail()) {
                return; /* automatically unlocks mutex */
            }
        }
        /* automatically unlocks mutex here */
        ...
      
      Convert qemu-timer.c functions that benefit from these macros as an
      example.  Manual qemu_mutex_lock/unlock() callers are left unmodified in
      cases where clarity would not improve by switching to the macros.
      
      Many other QemuMutex users remain in the codebase that might benefit
      from lock guards.  Over time they can be converted, if that is
      desirable.
      
      Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
      [Use QEMU_MAKE_LOCKABLE_NONNULL. - Paolo]
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      3284c3dd
    • Paolo Bonzini's avatar
      lockable: add QEMU_MAKE_LOCKABLE_NONNULL · 8834dcf4
      Paolo Bonzini authored
      
      This will be needed for lock guards, because if the lock is NULL the
      dummy for loop of the lock guard never runs.  This can cause confusion
      and dummy warnings in the compiler, but even if it did not, aborting
      with a NULL pointer dereference is a less surprising behavior.
      
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      8834dcf4
  2. Mar 16, 2020
Loading