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=-6.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=no 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 5ACB3C433E2 for ; Thu, 3 Sep 2020 20:16:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 37934206C0 for ; Thu, 3 Sep 2020 20:16:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1599164218; bh=+0jm6rZJrbAcWwW0UViffpwaFAsI9EvGj27NR5fdisg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=l0hiqFddCA91zWnjVfmx4WSuZDUtvfgIt7UMgn8DNtVsUOcHrwrkHe1kyj8Z2zHIe Ml7rWjIqdGGe9DYS7GOFm4RnxYP0dE7bPhzNUp+O/5zEA4j5FAFv9gGrLMWSIp03xu TD2luxXFc9tX9BZVcrtJL5EOnh7cCJaSHA4XfKYk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729107AbgICUQ5 (ORCPT ); Thu, 3 Sep 2020 16:16:57 -0400 Received: from mail.kernel.org ([198.145.29.99]:58842 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728678AbgICUQz (ORCPT ); Thu, 3 Sep 2020 16:16:55 -0400 Received: from quaco.ghostprotocols.net (unknown [179.97.37.151]) (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 34E5F206C0; Thu, 3 Sep 2020 20:16:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1599164215; bh=+0jm6rZJrbAcWwW0UViffpwaFAsI9EvGj27NR5fdisg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ffsbCyXrGWhwLSinjOTHdBOEUZwmaUsY1nCOlg92BtrvhoH8ev4Hb7s2LlRL3aRTr /3hJ56wkHpzqiRNovbbVtghNF08MlrHp/hxhvlZr+RcYdY7G2IDJu/3OGxAJ2stBzU NlspxHNzLWprwUt0oDzpoDi46zfL26E21ZL8ipCg= Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 5DD2C40D3D; Thu, 3 Sep 2020 17:16:53 -0300 (-03) Date: Thu, 3 Sep 2020 17:16:53 -0300 From: Arnaldo Carvalho de Melo To: Alexey Budankov Cc: Adrian Hunter , Jiri Olsa , Andi Kleen , Namhyung Kim , linux-kernel@vger.kernel.org Subject: Re: [PATCH V2 2/6] perf tools: Handle read errors from ctl_fd Message-ID: <20200903201653.GM3495158@kernel.org> References: <20200901093758.32293-1-adrian.hunter@intel.com> <20200901093758.32293-3-adrian.hunter@intel.com> <3172471f-7343-6efb-e549-ba7d95d7dfb3@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3172471f-7343-6efb-e549-ba7d95d7dfb3@linux.intel.com> X-Url: http://acmel.wordpress.com Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Wed, Sep 02, 2020 at 07:11:14PM +0300, Alexey Budankov escreveu: > > On 01.09.2020 12:37, Adrian Hunter wrote: > > Handle read errors from ctl_fd such as EINTR, EAGAIN and EWOULDBLOCK. > > > > Signed-off-by: Adrian Hunter > > --- > > tools/perf/util/evlist.c | 16 +++++++++++----- > > 1 file changed, 11 insertions(+), 5 deletions(-) > > Acked-by: Alexei Budankov Thanks, applied. - Arnaldo