== Series Details == Series: locking/lockdep, drm: apply new lockdep assert in drm_auth.c URL : https://patchwork.freedesktop.org/series/93304/ State : warning == Summary == $ dim checkpatch origin/drm-tip 60bc4f495a48 locking/lockdep: Provide lockdep_assert{, _once}() helpers -:30: WARNING:SINGLE_STATEMENT_DO_WHILE_MACRO: Single statement macros should not use a do {} while (0) loop #30: FILE: include/linux/lockdep.h:309: +#define lockdep_assert(cond) \ + do { WARN_ON(debug_locks && !(cond)); } while (0) -:37: WARNING:SINGLE_STATEMENT_DO_WHILE_MACRO: Single statement macros should not use a do {} while (0) loop #37: FILE: include/linux/lockdep.h:312: +#define lockdep_assert_once(cond) \ + do { WARN_ON_ONCE(debug_locks && !(cond)); } while (0) -:81: CHECK:FROM_SIGN_OFF_MISMATCH: From:/Signed-off-by: email comments mismatch: 'From: Peter Zijlstra <peterz@xxxxxxxxxxxxx>' != 'Signed-off-by: Peter Zijlstra (Intel) <peterz@xxxxxxxxxxxxx>' total: 0 errors, 2 warnings, 1 checks, 58 lines checked e5ac42473801 drm: add lockdep assert to drm_is_current_master_locked