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=-2.6 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_MUTT 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 7AD2FC04AAC for ; Mon, 20 May 2019 21:48:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4E5642177B for ; Mon, 20 May 2019 21:48:04 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=erdfelt.com header.i=@erdfelt.com header.b="p0aHVATG" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726574AbfETVsD (ORCPT ); Mon, 20 May 2019 17:48:03 -0400 Received: from out.bound.email ([141.193.244.10]:42377 "EHLO out.bound.email" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725776AbfETVsD (ORCPT ); Mon, 20 May 2019 17:48:03 -0400 Received: from mail.sventech.com (localhost [127.0.0.1]) by out.bound.email (Postfix) with ESMTP id 2CF5D8A0E7F; Mon, 20 May 2019 14:48:02 -0700 (PDT) Received: by mail.sventech.com (Postfix, from userid 1000) id 12C181600410; Mon, 20 May 2019 14:48:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=erdfelt.com; s=default; t=1558388882; bh=hXSuV/KWcIjYiQTMffAlTRJmVWRSIOLEh2gjHl+ssZs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=p0aHVATGEq3IMupDFMnxubXV08UoTZ2ZOH6DC+mM1OoXKOpaFd+V9XZW8um1kNjAn iauu4bo/sJUjqvgNGA1xQva7T31Fv+1WceN5PUg3sxcN7MvkvHHBieXRF+jx6+8RK4 TpTcd0/SXFC9a4g5bJ3gqk1oEw3v17B3QOmDyxqg= Date: Mon, 20 May 2019 14:48:02 -0700 From: Johannes Erdfelt To: Josh Poimboeuf Cc: Joe Lawrence , Jessica Yu , Jiri Kosina , Miroslav Benes , Steven Rostedt , Ingo Molnar , live-patching@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: Oops caused by race between livepatch and ftrace Message-ID: <20190520214801.GD1646@sventech.com> References: <20190520194915.GB1646@sventech.com> <90f78070-95ec-ce49-1641-19d061abecf4@redhat.com> <20190520210905.GC1646@sventech.com> <20190520211931.vokbqxkx5kb6k2bz@treble> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190520211931.vokbqxkx5kb6k2bz@treble> User-Agent: Mutt/1.11.4 (2019-03-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, May 20, 2019, Josh Poimboeuf wrote: > I think you must have been looking at an old version. > > [(v5.2-rc1)] ~/git/linux $ grep jeyu MAINTAINERS > M: Jessica Yu Operator error on my part. I was looking at a different directory with an old branch checked out. Sorry! > Can you try this patch (completely untested)? It seems to be working fine for me. No crashes in a loop for a few minutes, when it would usually only take a couple of tries to reproduce the issue for me. I'll see if I can better reproduce the race from the ftrace side since every crash I have seen for this issue has been in apply_relocate_add on the livepatch side. JE