From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752729AbdK0WZg (ORCPT ); Mon, 27 Nov 2017 17:25:36 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48556 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752380AbdK0WZe (ORCPT ); Mon, 27 Nov 2017 17:25:34 -0500 Date: Mon, 27 Nov 2017 23:25:28 +0100 From: Jiri Olsa To: Peter Zijlstra Cc: Milind Chabbi , Jiri Olsa , Ingo Molnar , Arnaldo Carvalho de Melo , lkml , Namhyung Kim , David Ahern , Andi Kleen , Alexander Shishkin , Michael Ellerman , Hari Bathini , Jin Yao , Kan Liang , Sukadev Bhattiprolu , Oleg Nesterov , Will Deacon Subject: Re: [PATCH 4/6] hw_breakpoint: Factor out __modify_user_hw_breakpoint function Message-ID: <20171127222528.GA14335@krava> References: <20171127162133.21163-1-jolsa@kernel.org> <20171127162133.21163-5-jolsa@kernel.org> <20171127164639.3ymnc6io3eae7n4c@hirez.programming.kicks-ass.net> <20171127170911.GA22026@krava> <20171127171203.tmdvcsnsownieijv@hirez.programming.kicks-ass.net> <20171127172532.GA23094@krava> <20171127173417.eokpkznt65yreoav@hirez.programming.kicks-ass.net> <20171127212003.aauonfkbl45pd7dj@hirez.programming.kicks-ass.net> <20171127220128.kzgywcu5ucudaeyl@hirez.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171127220128.kzgywcu5ucudaeyl@hirez.programming.kicks-ass.net> User-Agent: Mutt/1.9.1 (2017-09-22) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.30]); Mon, 27 Nov 2017 22:25:34 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Nov 27, 2017 at 11:01:28PM +0100, Peter Zijlstra wrote: > On Mon, Nov 27, 2017 at 01:50:30PM -0800, Milind Chabbi wrote: > > The possible checks is infinite > > struct perf_event_attr is very much a finite data type. > > Something as simple as: > > struct perf_event_attr tmp1 = new_attr, tmp2 = event->attr; > > tmp1.bp_type = tmp2.bp_type; > tmp1.bp_addr = tmp2.bp_addr; > tmp1.bp_len = tmp2.bp_len; > > if (memcmp(&tmp1, &tmp2, sizeof(tmp1))) > return -EINVAL; > > would actually do the checks __modify_user_hw_breakpoint() needs to do. I see.. will post new version thanks, jirka