mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Zhengyejian (Zetta)" <zhengyejian1@huawei.com>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: <rostedt@goodmis.org>, <mingo@redhat.com>,
	<linux-kernel@vger.kernel.org>, <tom.zanussi@linux.intel.com>,
	<trix@redhat.com>, <stable@vger.kernel.org>,
	<zhangjinhao2@huawei.com>
Subject: Re: [PATCH] tracing/histograms: Simplify create_hist_fields()
Date: Thu, 30 Jun 2022 17:21:14 +0800	[thread overview]
Message-ID: <0a05d98f-96f6-ffee-87bf-ba9e0231bde4@huawei.com> (raw)
In-Reply-To: <Yr1DtC4Gvg00SVfr@kroah.com>

On 2022/6/30 14:33, Greg KH wrote:
> On Thu, Jun 30, 2022 at 09:31:52AM +0800, Zheng Yejian wrote:
>> When I look into implements of create_hist_fields(), I think there can be
>> following two simplifications:
>>    1. If something wrong happened in parse_var_defs(), free_var_defs() would
>>       have been called in it, so no need goto free again after calling it;
>>    2. After calling create_key_fields(), regardless of the value of 'ret', it
>>       then always runs into 'out: ', so the judge of 'ret' is redundant.
>>
>> No functional changes.
>>
>> Signed-off-by: Zheng Yejian <zhengyejian1@huawei.com>
>> ---
>>   kernel/trace/trace_events_hist.c | 5 ++---
>>   1 file changed, 2 insertions(+), 3 deletions(-)
>>
>> diff --git a/kernel/trace/trace_events_hist.c b/kernel/trace/trace_events_hist.c
>> index 2784951e0fc8..832c4ccf41ab 100644
>> --- a/kernel/trace/trace_events_hist.c
>> +++ b/kernel/trace/trace_events_hist.c
>> @@ -4454,7 +4454,7 @@ static int create_hist_fields(struct hist_trigger_data *hist_data,
>>   
>>   	ret = parse_var_defs(hist_data);
>>   	if (ret)
>> -		goto out;
>> +		return ret;
>>   
>>   	ret = create_val_fields(hist_data, file);
>>   	if (ret)
>> @@ -4465,8 +4465,7 @@ static int create_hist_fields(struct hist_trigger_data *hist_data,
>>   		goto out;
>>   
>>   	ret = create_key_fields(hist_data, file);
>> -	if (ret)
>> -		goto out;
>> +
>>    out:
>>   	free_var_defs(hist_data);
>>   
>> -- 
>> 2.32.0
>>
> 
> <formletter>
> 
> This is not the correct way to submit patches for inclusion in the
> stable kernel tree.  Please read:

This patch is a cleanup, no need to include in stable kernel tree.
I accidentally copied the patch to stable mailbox, sorry for that :(

>      https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
> for how to do this properly.
> 
> </formletter>

  reply	other threads:[~2022-06-30  9:21 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-30  1:31 Zheng Yejian
2022-06-30  2:24 ` Tom Rix
2022-06-30  6:33 ` Greg KH
2022-06-30  9:21   ` Zhengyejian (Zetta) [this message]
2022-07-12 17:49 ` Steven Rostedt
2022-07-13 10:32   ` Zheng Yejian
2022-07-12 17:52 ` Steven Rostedt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0a05d98f-96f6-ffee-87bf-ba9e0231bde4@huawei.com \
    --to=zhengyejian1@huawei.com \
    --cc=Yr1DtC4Gvg00SVfr@kroah.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=rostedt@goodmis.org \
    --cc=stable@vger.kernel.org \
    --cc=tom.zanussi@linux.intel.com \
    --cc=trix@redhat.com \
    --cc=zhangjinhao2@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®