From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1423063AbcBQNlb (ORCPT ); Wed, 17 Feb 2016 08:41:31 -0500 Received: from mail.kernel.org ([198.145.29.136]:39495 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1422804AbcBQNla (ORCPT ); Wed, 17 Feb 2016 08:41:30 -0500 Date: Wed, 17 Feb 2016 10:41:24 -0300 From: Arnaldo Carvalho de Melo To: Namhyung Kim Cc: Ingo Molnar , Peter Zijlstra , Jiri Olsa , LKML , David Ahern , Andi Kleen , Stephane Eranian , Wang Nan Subject: Re: [PATCH v6 01/25] perf hists browser: Fix percentage update on key press Message-ID: <20160217134124.GA15386@kernel.org> References: <1455631723-17345-1-git-send-email-namhyung@kernel.org> <1455631723-17345-2-git-send-email-namhyung@kernel.org> <20160216200608.GJ17690@kernel.org> <20160216205323.GK17690@kernel.org> <20160216233908.GA10141@sejong> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160216233908.GA10141@sejong> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Wed, Feb 17, 2016 at 08:39:08AM +0900, Namhyung Kim escreveu: > On Tue, Feb 16, 2016 at 05:53:23PM -0300, Arnaldo Carvalho de Melo wrote: > > So we this in this cset: > > Fixes: 0f58474ec835 ("perf hists: Update hists' total period when adding entries") > > And it needs to go to stable@kernel.org # v4.4+ > > [acme@ssdandy linux]$ git describe 0f58474ec835f6fc80af2cde2c7ed5495cd212ba > > v4.4-5893-g0f58474ec835 > > Please double check this, I'll be OOO in a moment. > I think it's not needed to CC the stable this time. AFAIK this patch > didn't go to the mainline yet. It's only in the tip tree. > I think you need to use git name-rev instead of git describe. Thanks for double checking it and pointing me to 'git name-rev' and 'branch/tag --contains', I'll be using those commands from now on, probably will add it to my 'fixes' script to add the relevant 'Cc: stable@kernel.org # v4.x+' line :-) - Arnaldo > $ git name-rev --tags 0f58474ec835f6fc80af2cde2c7ed5495cd212ba > 0f58474ec835f6fc80af2cde2c7ed5495cd212ba undefined > > $ git branch -r --contains 0f58474ec835f6fc80af2cde2c7ed5495cd212ba > acme/perf/core > > $ git tag --contains 0f58474ec835f6fc80af2cde2c7ed5495cd212ba > (nothing) > > $ git remote -v > acme git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git (fetch) > acme git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git (push) > origin git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git (fetch) > origin git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git (push) > ... > > > Thanks, > Namhyung