From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1C0F8C33C9E for ; Wed, 29 Jan 2020 02:10:04 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id EB6C22073A for ; Wed, 29 Jan 2020 02:10:03 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org EB6C22073A Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=emeril.freedesktop.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=intel-gfx-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 655E36E194; Wed, 29 Jan 2020 02:10:02 +0000 (UTC) Received: from emeril.freedesktop.org (emeril.freedesktop.org [131.252.210.167]) by gabe.freedesktop.org (Postfix) with ESMTP id ACA2F6E192; Wed, 29 Jan 2020 02:10:00 +0000 (UTC) Received: from emeril.freedesktop.org (localhost [127.0.0.1]) by emeril.freedesktop.org (Postfix) with ESMTP id A4665A00C7; Wed, 29 Jan 2020 02:10:00 +0000 (UTC) MIME-Version: 1.0 From: Patchwork To: "Chris Wilson" Date: Wed, 29 Jan 2020 02:10:00 -0000 Message-ID: <158026380064.5461.4517783305538042382@emeril.freedesktop.org> X-Patchwork-Hint: ignore References: <20200128204318.4182039-1-chris@chris-wilson.co.uk> In-Reply-To: <20200128204318.4182039-1-chris@chris-wilson.co.uk> Subject: [Intel-gfx] =?utf-8?b?4pyXIEZpLkNJLkNIRUNLUEFUQ0g6IHdhcm5pbmcg?= =?utf-8?q?for_series_starting_with_=5B1/5=5D_drm/i915/execlist=3A_Mark_up?= =?utf-8?q?_racy_read_of_execlists-=3Epending=5B0=5D?= X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: intel-gfx@lists.freedesktop.org Cc: intel-gfx@lists.freedesktop.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" == Series Details == Series: series starting with [1/5] drm/i915/execlist: Mark up racy read of execlists->pending[0] URL : https://patchwork.freedesktop.org/series/72690/ State : warning == Summary == $ dim checkpatch origin/drm-tip 82aa4207ae44 drm/i915/execlist: Mark up racy read of execlists->pending[0] e92382208498 drm/i915/gt: Hook up CS_MASTER_ERROR_INTERRUPT 52306730ac69 drm/i915/gt: Yield the timeslice if caught waiting on a user semaphore -:146: CHECK:BRACES: Blank lines aren't necessary after an open brace '{' #146: FILE: drivers/gpu/drm/i915/gt/intel_lrc.c:1703: +{ + total: 0 errors, 0 warnings, 1 checks, 156 lines checked 90d22f43a723 drm/i915/gt: Rename lrc.c to execlists_submission.c -:40: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #40: rename from drivers/gpu/drm/i915/gt/intel_lrc.c total: 0 errors, 1 warnings, 0 checks, 20 lines checked b5b64099ef97 drm/i915/gt: Split logical ring context manipulation into intel_lrc.c -:57: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #57: new file mode 100644 -:756: CHECK:MULTIPLE_ASSIGNMENTS: multiple assignments should be avoided #756: FILE: drivers/gpu/drm/i915/gt/intel_engine_workaround_bb.c:304: + batch = batch_ptr = kmap_atomic(page); -:2673: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'count' - possible side-effects? #2673: FILE: drivers/gpu/drm/i915/gt/intel_lrc.c:132: +#define LRI(count, flags) ((flags) << 6 | (count) | BUILD_BUG_ON_ZERO(count >= BIT(6))) -:2675: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'x' - possible side-effects? #2675: FILE: drivers/gpu/drm/i915/gt/intel_lrc.c:134: +#define REG(x) (((x) >> 2) | BUILD_BUG_ON_ZERO(x >= 0x200)) -:2676: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #2676: FILE: drivers/gpu/drm/i915/gt/intel_lrc.c:135: +#define REG16(x) \ + (((x) >> 9) | BIT(7) | BUILD_BUG_ON_ZERO(x >= 0x10000)), \ + (((x) >> 2) & 0x7f) -:2676: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'x' - possible side-effects? #2676: FILE: drivers/gpu/drm/i915/gt/intel_lrc.c:135: +#define REG16(x) \ + (((x) >> 9) | BIT(7) | BUILD_BUG_ON_ZERO(x >= 0x10000)), \ + (((x) >> 2) & 0x7f) -:2679: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #2679: FILE: drivers/gpu/drm/i915/gt/intel_lrc.c:138: +#define END(x) 0, (x) total: 2 errors, 1 warnings, 4 checks, 4001 lines checked _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx