Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751524AbdLNKLM (ORCPT ); Thu, 14 Dec 2017 05:11:12 -0500 Received: from mail.kernel.org ([198.145.29.99]:35606 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751013AbdLNKLK (ORCPT ); Thu, 14 Dec 2017 05:11:10 -0500 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 251A4218CA Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=krzk@kernel.org X-Google-Smtp-Source: ACJfBovzGdTXyR1+UxJEqsnav10Ta+OFT9tqg8fbWlAGYg/44ypQ7adAGaGFJxBvwj2BygH0obYI7V44/gZHRNg/+Vc= MIME-Version: 1.0 In-Reply-To: References: From: Krzysztof Kozlowski Date: Thu, 14 Dec 2017 11:11:07 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [BUG] sound/soc/samsung: a possible sleep-in-atomic bugs in s3c_pcm_hw_params To: Jia-Ju Bai Cc: sbkim73@samsung.com, Sylwester Nawrocki , lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz, tiwai@suse.com, alsa-devel@alsa-project.org, Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 830 Lines: 24 On Tue, Dec 12, 2017 at 2:24 AM, Jia-Ju Bai wrote: > According to sound/soc/samsung/pcm.c, the kernel module may sleep under a > spinlock. > The function call path is: > s3c_pcm_hw_params (acquire the spinlock) > clk_get_rate > clk_core_get_rate > clk_prepare_lock > mutex_lock --> may sleep > > I do not find a good way to fix it, so I only report. > This possible bug is found by my static analysis tool (DSAC) and my code > review. Thanks for the report. Your finding looks correct, the code might sleep under spinlock. I do not see easy solution. Maybe the readl(regs + S3C_PCM_CLKCTL) and clk_get_rate() could be moved before spinlock. The second path modifying it - s3c_pcm_set_sysclk() - is not protected by it. The spinlock is not effective around it. Best regards, Krzysztof