Message ID | 20200213151852.309100561@linuxfoundation.org |
---|---|
State | Superseded |
Headers | show
Return-Path: <SRS0=Wx/U=4B=vger.kernel.org=stable-owner@kernel.org> 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=-6.8 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_GIT 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 2C4B7C3B189 for <stable@archiver.kernel.org>; Thu, 13 Feb 2020 16:08:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 00BF220656 for <stable@archiver.kernel.org>; Thu, 13 Feb 2020 16:08:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581610107; bh=R4qi8/bgh7+4Guu0GaXMWgMf20w69Ml8MImhr3b/5J0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=IomDnM2/Lbwy37ltPav9D4Q3vBLVskeNqNzqPh8Wnyh37bKfeoTxn4qVkXAjd15WT Gpi8G1FdSwG/EPNt0BexZNw5gaPcyT3RKDmmwnX/oIFnUm6SnQ4Zr2fyW96b6H269T 8RGZi4LeF0zAZ9khWdA/G8wxUi5tb+lSEDIxF/S8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387411AbgBMQIY (ORCPT <rfc822;stable@archiver.kernel.org>); Thu, 13 Feb 2020 11:08:24 -0500 Received: from mail.kernel.org ([198.145.29.99]:33412 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728252AbgBMPXG (ORCPT <rfc822;stable@vger.kernel.org>); Thu, 13 Feb 2020 10:23:06 -0500 Received: from localhost (unknown [104.132.1.104]) (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 B68D82469A; Thu, 13 Feb 2020 15:23:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581607385; bh=R4qi8/bgh7+4Guu0GaXMWgMf20w69Ml8MImhr3b/5J0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rMeAIwTBUbgWBHAJhTFEWyd4BR2AwLxb/eMvNRisDhxRThl21fr2dC+JTq1wu4SRC xSCRgpc7pWzUiY0lBY4iyrQMLp5NFvI68kUqcvOp9faUckeNzxwOrfsOa6uwdqlqGm MrdGYMrXQIDJ4BWyJogRgRgVqNupS0mx9lrJNI7o= From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, stable@vger.kernel.org, Konstantin Khlebnikov <khlebnikov@yandex-team.ru>, Thomas Gleixner <tglx@linutronix.de> Subject: [PATCH 4.4 77/91] clocksource: Prevent double add_timer_on() for watchdog_timer Date: Thu, 13 Feb 2020 07:20:34 -0800 Message-Id: <20200213151852.309100561@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200213151821.384445454@linuxfoundation.org> References: <20200213151821.384445454@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: <stable.vger.kernel.org> X-Mailing-List: stable@vger.kernel.org |
Series |
None
|
expand
|
--- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c @@ -272,8 +272,15 @@ static void clocksource_watchdog(unsigne next_cpu = cpumask_next(raw_smp_processor_id(), cpu_online_mask); if (next_cpu >= nr_cpu_ids) next_cpu = cpumask_first(cpu_online_mask); - watchdog_timer.expires += WATCHDOG_INTERVAL; - add_timer_on(&watchdog_timer, next_cpu); + + /* + * Arm timer if not already pending: could race with concurrent + * pair clocksource_stop_watchdog() clocksource_start_watchdog(). + */ + if (!timer_pending(&watchdog_timer)) { + watchdog_timer.expires += WATCHDOG_INTERVAL; + add_timer_on(&watchdog_timer, next_cpu); + } out: spin_unlock(&watchdog_lock); }