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=-5.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham 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 B0729CA9EC7 for ; Sat, 2 Nov 2019 17:14:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 84BBB21897 for ; Sat, 2 Nov 2019 17:14:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572714885; bh=mITftCT5qGrbmxUaon/9MADVCZD1CrR4DCot6IaEj0k=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=oklevB8zW7lsKouZt8EFI76ux1lhHiCBbv0zL2O3pYFe56yxvJUhhFR8B0I6Vgkag xLFgaKgyZE7cszpZ43/yMGmjpJCZj9L4VCyFUvThm+tUPaB1ETRdyGzep7M5R+jch8 gPljJk+9Oo+g1fLQpO2qCLxpigjJzMY5Flu118Ts= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727134AbfKBROf (ORCPT ); Sat, 2 Nov 2019 13:14:35 -0400 Received: from mail.kernel.org ([198.145.29.99]:59504 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726454AbfKBROf (ORCPT ); Sat, 2 Nov 2019 13:14:35 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 3865C21855; Sat, 2 Nov 2019 17:14:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572714874; bh=mITftCT5qGrbmxUaon/9MADVCZD1CrR4DCot6IaEj0k=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Ibg9tPhQg9ZsdiwryentqBVvKFVfEe7e5fVU2efnUopru7epgu4+sRc5quO8O2mM7 X+1VEADJo0q7jOdpg7h0mbH+7J/LObVvrvdkKb2H25m36ClaKBDWtrNLI5VemQ/Ghm ppm3qmXSMuB6uRrNOPkbyfusqb8JioC0YmM5I+7o= Date: Sat, 2 Nov 2019 18:14:31 +0100 From: Greg Kroah-Hartman To: Alexander Shishkin Cc: linux-kernel@vger.kernel.org, Andy Shevchenko Subject: Re: [GIT PULL 2/7] intel_th: msu: Fix an uninitialized mutex Message-ID: <20191102171431.GB484428@kroah.com> References: <20191028070651.9770-1-alexander.shishkin@linux.intel.com> <20191028070651.9770-3-alexander.shishkin@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191028070651.9770-3-alexander.shishkin@linux.intel.com> User-Agent: Mutt/1.12.2 (2019-09-21) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 28, 2019 at 09:06:46AM +0200, Alexander Shishkin wrote: > Commit 615c164da0eb ("intel_th: msu: Introduce buffer interface") added a > mutex that it forgot to initialize, resulting in a lockdep splat. > > Fix that by initializing the mutex statically. > > Signed-off-by: Alexander Shishkin > Reviewed-by: Andy Shevchenko > --- > drivers/hwtracing/intel_th/msu.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Again, no fixes or stable?