Received: by 10.213.65.68 with SMTP id h4csp761879imn; Fri, 6 Apr 2018 08:28:09 -0700 (PDT) X-Google-Smtp-Source: AIpwx48ARPY3dcK5QsTQWN8V4F9HlWuve4wMRXJ+2cOhAeGXjVtt2owcEZPPseRpXrl9rknS8dKx X-Received: by 2002:a17:902:32a2:: with SMTP id z31-v6mr28563115plb.41.1523028489092; Fri, 06 Apr 2018 08:28:09 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1523028489; cv=none; d=google.com; s=arc-20160816; b=ebhm+pEm5Wr4x7JJRiSRGF6D+T/m3/eTPBXv6KRoHvcuUgb/Hqoy8mWhUi3fSATR5/ 5l29hJYkTCWgFFgr0blwQNuhCRE8YZCy7fwbhUIUeSCwW1MRcSg4mjc5afKgfGKhZJIg nDpuba4VVd64pX5GOI36b2OzDQoEQdpyzlHfDC4Pt6MaQxB6/UIs7DAOEbZmSru7f71i rGhAlJLOHBm4zJmcAkfLVb33a0a/iSOg/hA84rL3X0Xc5eaUSdQeaP+KP9ajANds5FiM BOk7LyO5sNB4ZvAikvlMeXGpj9YLFdE3ovjXw1rbrqDRT8xSnKuAjNuLl9Mx0yl64yb8 d3Zw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=tQxTueVnXwTqk3HPhf/OMcN3ZmjaVg6fvdGrwfWffdI=; b=dgndhG1d7DJ0Fke0kx4MdV4cxRjKlLGKoHpyt8PXRHH6G6BATer3pdRkCRoEcPrRq0 TlyZ6akFjoP/dE7HEuJDjgvSh9be8w5rt2IhqQt+6ky+ZpJ9Yq0YFsjFN0CVVg9pHe8a CHiGRyc16Tb1GieCeA2RJqX69PQKqU63TR1ua8PdvZLoX/BGbzfFRv196wafW+AEfR7U 95lkJ9X19gkG2ImD3uQT5ycsqaRZwEIOpJm7Qs6uwv6MzcMuGL7whYB1/UYKW4dTkJ7S fjF4wV3MJsiHikF6Cya0/Abc+pPDXV6Arne7rl4JfUlXZSNa+sIBQ9EP5JbQY4Otqd2n k8/w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id u3-v6si8656953plb.593.2018.04.06.08.27.55; Fri, 06 Apr 2018 08:28:09 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753212AbeDFP0o (ORCPT + 99 others); Fri, 6 Apr 2018 11:26:44 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:54466 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753982AbeDFN0c (ORCPT ); Fri, 6 Apr 2018 09:26:32 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 10FBADE4; Fri, 6 Apr 2018 13:26:31 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Linus Torvalds , Thomas Gleixner , Alexander Shishkin , Andy Lutomirski , Arnaldo Carvalho de Melo , Frederic Weisbecker , Jiri Olsa , Peter Zijlstra , Stephane Eranian , Vince Weaver , Ingo Molnar Subject: [PATCH 3.18 40/93] perf/hwbp: Simplify the perf-hwbp code, fix documentation Date: Fri, 6 Apr 2018 15:23:09 +0200 Message-Id: <20180406084226.698673519@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180406084224.918716300@linuxfoundation.org> References: <20180406084224.918716300@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 3.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Linus Torvalds commit f67b15037a7a50c57f72e69a6d59941ad90a0f0f upstream. Annoyingly, modify_user_hw_breakpoint() unnecessarily complicates the modification of a breakpoint - simplify it and remove the pointless local variables. Also update the stale Docbook while at it. Signed-off-by: Linus Torvalds Acked-by: Thomas Gleixner Cc: Cc: Alexander Shishkin Cc: Andy Lutomirski Cc: Arnaldo Carvalho de Melo Cc: Frederic Weisbecker Cc: Jiri Olsa Cc: Peter Zijlstra Cc: Stephane Eranian Cc: Vince Weaver Signed-off-by: Ingo Molnar Signed-off-by: Greg Kroah-Hartman --- kernel/events/hw_breakpoint.c | 30 +++++++----------------------- 1 file changed, 7 insertions(+), 23 deletions(-) --- a/kernel/events/hw_breakpoint.c +++ b/kernel/events/hw_breakpoint.c @@ -427,16 +427,9 @@ EXPORT_SYMBOL_GPL(register_user_hw_break * modify_user_hw_breakpoint - modify a user-space hardware breakpoint * @bp: the breakpoint structure to modify * @attr: new breakpoint attributes - * @triggered: callback to trigger when we hit the breakpoint - * @tsk: pointer to 'task_struct' of the process to which the address belongs */ int modify_user_hw_breakpoint(struct perf_event *bp, struct perf_event_attr *attr) { - u64 old_addr = bp->attr.bp_addr; - u64 old_len = bp->attr.bp_len; - int old_type = bp->attr.bp_type; - int err = 0; - /* * modify_user_hw_breakpoint can be invoked with IRQs disabled and hence it * will not be possible to raise IPIs that invoke __perf_event_disable. @@ -451,27 +444,18 @@ int modify_user_hw_breakpoint(struct per bp->attr.bp_addr = attr->bp_addr; bp->attr.bp_type = attr->bp_type; bp->attr.bp_len = attr->bp_len; + bp->attr.disabled = 1; - if (attr->disabled) - goto end; - - err = validate_hw_breakpoint(bp); - if (!err) - perf_event_enable(bp); + if (!attr->disabled) { + int err = validate_hw_breakpoint(bp); - if (err) { - bp->attr.bp_addr = old_addr; - bp->attr.bp_type = old_type; - bp->attr.bp_len = old_len; - if (!bp->attr.disabled) - perf_event_enable(bp); + if (err) + return err; - return err; + perf_event_enable(bp); + bp->attr.disabled = 0; } -end: - bp->attr.disabled = attr->disabled; - return 0; } EXPORT_SYMBOL_GPL(modify_user_hw_breakpoint);