[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAJwJo6Y0AYs-WuXuLxNQbaaiU2SPZjjUZEf6oUOpSNk4EKREVg@mail.gmail.com>
Date: Fri, 16 Oct 2015 11:52:09 +0300
From: Dmitry Safonov <0x7f454c46@...il.com>
To: Steven Rostedt <rostedt@...dmis.org>
Cc: mingo@...hat.com, Jonathan Corbet <corbet@....net>,
linux-doc@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/5] ftrace: remove redundant strsep in mod_callback
2015-10-14 3:48 GMT+03:00 Steven Rostedt <rostedt@...dmis.org>:
>> - ret = ftrace_match_module_records(hash, func, mod);
>> - if (!ret)
>> - ret = -EINVAL;
>> + ret = ftrace_match_module_records(hash, func, param);
>> + if (ret == 0)
>
> Small nit, personally, I prefer the if (!ret) version.
>
> For me "== 0" is for counters and strcmp. I may change this to be
> consistent with the rest of the code.
>
> -- Steve
Ok, I thought "== 0" will be more readable near comparison "< 0",
but anyway, (!ret) is good.
>
>> + return -EINVAL;
>> if (ret < 0)
>> return ret;
>>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists